1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-02 12:05:23 +02:00

Implement new refactored color scheme

This commit is contained in:
Harvey Kandola 2018-12-04 17:26:57 +00:00
parent da0861b3fd
commit d7a46ceee6
70 changed files with 934 additions and 521 deletions

View file

@ -34,7 +34,6 @@ a {
cursor: pointer;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
// text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
a:focus,
a:hover {
@ -43,7 +42,6 @@ a {
}
a.admin-link {
// color: $color-gray;
text-decoration: none;
font-weight: bold;
@ -54,7 +52,7 @@ a.admin-link {
}
a.broken-link {
color: $color-red;
color: map-get($red-shades, 600);
text-decoration: line-through;
}
@ -118,7 +116,7 @@ input:-webkit-autofill {
}
.bordered {
border: 1px solid $color-border;
border: 1px solid map-get($gray-shades, 300);
}
.text-truncate {
@ -131,13 +129,13 @@ input:-webkit-autofill {
width: 7px;
}
::-webkit-scrollbar-track {
background: $color-off-white;
background: map-get($gray-shades, 100);
}
::-webkit-scrollbar-thumb {
background: $color-gray-light;
background: map-get($gray-shades, 300);
&:hover {
background: $color-gray;
background: map-get($gray-shades, 600);
}
}