Gnome-shell: Fix blacked text color in world clocks #80

This commit is contained in:
EliverLara
2020-04-15 12:52:44 -05:00
parent 603b6266dc
commit 83542edd64
2 changed files with 38 additions and 0 deletions

View File

@@ -1150,6 +1150,29 @@ StScrollBar {
icon-size: 16px;
padding: 8px; }
}
/* World clocks */
.world-clocks-button {
// city label
.world-clocks-city {
color: $fg_color;
font-weight: normal;
}
// timezone time
.world-clocks-time {
font-weight: bold;
color: $fg_color;
font-feature-settings: "lnum";
text-align: right;
}
// timezone offset label
.world-clocks-timezone {
color: darken($fg_color,20%);
font-feature-settings: "tnum";
}
}
// a little unstructured mess:

View File

@@ -1056,6 +1056,21 @@ StScrollBar {
icon-size: 16px;
padding: 8px; }
/* World clocks */
.world-clocks-button .world-clocks-city {
color: #98abb2;
font-weight: normal; }
.world-clocks-button .world-clocks-time {
font-weight: bold;
color: #98abb2;
font-feature-settings: "lnum";
text-align: right; }
.world-clocks-button .world-clocks-timezone {
color: #627a82;
font-feature-settings: "tnum"; }
.system-switch-user-submenu-icon.user-icon {
icon-size: 20px;
padding: 0 2px; }