UX: Support dark themes on user directory

This commit is contained in:
Robin Ward 2015-03-20 14:55:46 -04:00
parent 4d26ef5e29
commit 8041342267
1 changed files with 6 additions and 2 deletions

View File

@ -8,7 +8,7 @@
float: right;
}
.total-rows {
color: darken(scale-color-diff(), 20%);
color: dark-light-diff($primary, $secondary, 50%, -50%);
text-align: right;
}
.spinner {
@ -26,13 +26,17 @@
.number, .time-read {
font-size: 1.4em;
color: darken(scale-color-diff(), 40%);
color: dark-light-diff($primary, $secondary, 50%, -50%);
}
}
tr.me {
td {
background-color: scale-color($highlight, $lightness: 50%);
.username a, .name, .title, .number, .time-read {
color: scale-color($highlight, $lightness: -50%);
}
}
}