Fix bug introduced earlier, where navigation arrows would become blue when visited + make the tooltip on nvigation arrows a little clearer
This commit is contained in:
parent
41462e8b2d
commit
600eb02fee
|
@ -328,8 +328,11 @@ h5 {
|
||||||
background-color: #f4f4f4;
|
background-color: #f4f4f4;
|
||||||
}
|
}
|
||||||
.light .menu-bar,
|
.light .menu-bar,
|
||||||
|
.light .menu-bar:visited,
|
||||||
.light .nav-chapters,
|
.light .nav-chapters,
|
||||||
.light .mobile-nav-chapters {
|
.light .nav-chapters:visited,
|
||||||
|
.light .mobile-nav-chapters,
|
||||||
|
.light .mobile-nav-chapters:visited {
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
}
|
}
|
||||||
.light .menu-bar i:hover,
|
.light .menu-bar i:hover,
|
||||||
|
@ -398,8 +401,11 @@ h5 {
|
||||||
background-color: #393939;
|
background-color: #393939;
|
||||||
}
|
}
|
||||||
.coal .menu-bar,
|
.coal .menu-bar,
|
||||||
|
.coal .menu-bar:visited,
|
||||||
.coal .nav-chapters,
|
.coal .nav-chapters,
|
||||||
.coal .mobile-nav-chapters {
|
.coal .nav-chapters:visited,
|
||||||
|
.coal .mobile-nav-chapters,
|
||||||
|
.coal .mobile-nav-chapters:visited {
|
||||||
color: #43484d;
|
color: #43484d;
|
||||||
}
|
}
|
||||||
.coal .menu-bar i:hover,
|
.coal .menu-bar i:hover,
|
||||||
|
@ -468,8 +474,11 @@ h5 {
|
||||||
background-color: #2d334f;
|
background-color: #2d334f;
|
||||||
}
|
}
|
||||||
.navy .menu-bar,
|
.navy .menu-bar,
|
||||||
|
.navy .menu-bar:visited,
|
||||||
.navy .nav-chapters,
|
.navy .nav-chapters,
|
||||||
.navy .mobile-nav-chapters {
|
.navy .nav-chapters:visited,
|
||||||
|
.navy .mobile-nav-chapters,
|
||||||
|
.navy .mobile-nav-chapters:visited {
|
||||||
color: #737480;
|
color: #737480;
|
||||||
}
|
}
|
||||||
.navy .menu-bar i:hover,
|
.navy .menu-bar i:hover,
|
||||||
|
@ -538,8 +547,11 @@ h5 {
|
||||||
background-color: #45373a;
|
background-color: #45373a;
|
||||||
}
|
}
|
||||||
.rust .menu-bar,
|
.rust .menu-bar,
|
||||||
|
.rust .menu-bar:visited,
|
||||||
.rust .nav-chapters,
|
.rust .nav-chapters,
|
||||||
.rust .mobile-nav-chapters {
|
.rust .nav-chapters:visited,
|
||||||
|
.rust .mobile-nav-chapters,
|
||||||
|
.rust .mobile-nav-chapters:visited {
|
||||||
color: #737480;
|
color: #737480;
|
||||||
}
|
}
|
||||||
.rust .menu-bar i:hover,
|
.rust .menu-bar i:hover,
|
||||||
|
|
|
@ -84,13 +84,13 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{#previous}}
|
{{#previous}}
|
||||||
<a href="{{link}}" class="nav-chapters previous" title="←">
|
<a href="{{link}}" class="nav-chapters previous" title="You can navigate through the chapters using the arrow keys">
|
||||||
<i class="fa fa-angle-left"></i>
|
<i class="fa fa-angle-left"></i>
|
||||||
</a>
|
</a>
|
||||||
{{/previous}}
|
{{/previous}}
|
||||||
|
|
||||||
{{#next}}
|
{{#next}}
|
||||||
<a href="{{link}}" class="nav-chapters next" title="→">
|
<a href="{{link}}" class="nav-chapters next" title="You can navigate through the chapters using the arrow keys">
|
||||||
<i class="fa fa-angle-right"></i>
|
<i class="fa fa-angle-right"></i>
|
||||||
</a>
|
</a>
|
||||||
{{/next}}
|
{{/next}}
|
||||||
|
|
|
@ -48,8 +48,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-bar,
|
.menu-bar,
|
||||||
|
.menu-bar:visited,
|
||||||
.nav-chapters,
|
.nav-chapters,
|
||||||
.mobile-nav-chapters {
|
.nav-chapters:visited,
|
||||||
|
.mobile-nav-chapters,
|
||||||
|
.mobile-nav-chapters:visited {
|
||||||
color: $icons
|
color: $icons
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue