mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-25 20:56:43 +00:00
Restrict visited link color to markdown only
This commit is contained in:
parent
1eeabcad67
commit
6234f12654
@ -38,10 +38,6 @@ h5 {
|
|||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: $color-link;
|
color: $color-link;
|
||||||
|
|
||||||
&:visited {
|
|
||||||
color: $color-visited-link;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
|
@ -37,6 +37,9 @@
|
|||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
&:visited {
|
||||||
|
color: $color-visited-link;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
@ -135,3 +138,13 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.markdown-inner {
|
||||||
|
// Util class to remove extra margin in nested markdown content
|
||||||
|
> :first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
> :last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,13 +1,4 @@
|
|||||||
.markdown-inner {
|
.markdown {
|
||||||
// Util class to remove extra margin in nested markdown content
|
|
||||||
> :first-child {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
> :last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// {{< expand "Label" "icon" >}}
|
// {{< expand "Label" "icon" >}}
|
||||||
.book-expand {
|
.book-expand {
|
||||||
margin-top: $padding-16;
|
margin-top: $padding-16;
|
||||||
@ -105,5 +96,6 @@ a.book-btn {
|
|||||||
border-left-color: $color;
|
border-left-color: $color;
|
||||||
background-color: rgba($color, 0.1);
|
background-color: rgba($color, 0.1);
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
{"Target":"book.min.63eb88daa545365405ecdbb21033286a325c60a36cfa6d22d21e7c3bc9286941.css","MediaType":"text/css","Data":{"Integrity":"sha256-Y+uI2qVFNlQF7NuyEDMoajJcYKNs+m0i0h58O8koaUE="}}
|
{"Target":"book.min.284c8fc21ced13c579d9027a9d14893c56b243c6045001180391cebb4cc36ab8.css","MediaType":"text/css","Data":{"Integrity":"sha256-KEyPwhztE8V52QJ6nRSJPFayQ8YEUAEYA5HOu0zDarg="}}
|
Loading…
Reference in New Issue
Block a user