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

View File

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