fix(client): night mode for settings page

This commit is contained in:
Valeriy
2019-01-28 02:23:35 +03:00
committed by Stuart Taylor
parent dd41028f5b
commit 058ffeb8dc
5 changed files with 44 additions and 10 deletions

View File

@@ -3,6 +3,10 @@
opacity: 1;
}
.night .toggle-active {
color: #ddd;
}
.toggle-not-active.btn-primary.active {
background-color: #006400;
}
@@ -11,6 +15,18 @@
background-color: #dedede;
color: rgb(0, 49, 0);
}
.toggle-not-active:hover, .toggle-not-active:focus {
.night .toggle-not-active {
background-color: #999;
color: #333;
}
.toggle-not-active:hover,
.toggle-not-active:focus {
background-color: #006400;
}
}
.night .toggle-not-active:hover,
.night .toggle-not-active:focus {
color: #ddd;
}