Merge pull request #979 from sharelatex/jel-content-links

Content pages link colors
This commit is contained in:
Alasdair Smith 2018-10-02 14:07:10 +01:00 committed by GitHub
commit 10571b09f3
4 changed files with 6 additions and 2 deletions

View file

@ -43,7 +43,7 @@
&:hover,
&:focus {
text-decoration: none;
color: @dropdown-link-hover-color;
color: @dropdown-link-hover-color!important;
background-color: @dropdown-link-hover-bg;
.fa {

View file

@ -5,6 +5,9 @@
.content-page {
a:not(.btn) {
color: @link-color-alt;
&:hover {
color: @link-hover-color-alt;
}
}
hr {
border-color: @hr-border-alt;

View file

@ -17,7 +17,7 @@
&:hover {
background-color: transparent!important;
border: 0!important;
color: @link-hover-color!important;
color: @link-hover-color-alt;
}
}
}

View file

@ -52,6 +52,7 @@
@link-color-alt : @ol-green;
@link-active-color : @ol-dark-green;
@link-hover-color : @ol-dark-blue;
@link-hover-color-alt : @ol-dark-green;
@hr-border : @ol-blue-gray-1;
@hr-border-alt : @gray-lighter;