Merge pull request #4346 from wallabag/add-color-coherence

🎨 Added more coherence with color links for material theme
This commit is contained in:
Nicolas Lœuillet 2020-04-22 12:25:26 +02:00 committed by GitHub
commit b367534991
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

View file

@ -54,7 +54,7 @@
}
a {
border-bottom: 1px dotted #03a9f4;
border-bottom: 1px dotted $blueAccentColor;
text-decoration: none;
}

View file

@ -18,6 +18,10 @@ body {
border-bottom: 1px solid #ddd;
}
a {
color: $blueAccentColor;
}
main,
#content,
.valign-wrapper {

View file

@ -2,4 +2,4 @@
Variables
========================================================================== */
$blueAccentColor: rgba(0, 151, 167, 0.85);
$blueAccentColor: #00acc1;

File diff suppressed because one or more lines are too long