Committed by
Gerrit Code Review
fix for displaying toolbar icons in dark theme
Change-Id: I129ef33cbf5576f14090502544053bd41154be7d
Showing
2 changed files
with
14 additions
and
3 deletions
... | @@ -23,7 +23,11 @@ | ... | @@ -23,7 +23,11 @@ |
23 | fill: black; | 23 | fill: black; |
24 | } | 24 | } |
25 | 25 | ||
26 | +/* | ||
27 | +* NOTE: Keeping the theme black while we | ||
28 | +* wait for the mockup theme designs to be made | ||
29 | +*/ | ||
26 | .dark svg .glyph, | 30 | .dark svg .glyph, |
27 | .light svg .glyph.overlay { | 31 | .light svg .glyph.overlay { |
28 | - fill: white; | 32 | + fill: black; |
29 | } | 33 | } | ... | ... |
... | @@ -18,8 +18,6 @@ | ... | @@ -18,8 +18,6 @@ |
18 | ONOS GUI -- Button Service (theme) -- CSS file | 18 | ONOS GUI -- Button Service (theme) -- CSS file |
19 | */ | 19 | */ |
20 | 20 | ||
21 | -/* TODO: dark theme */ | ||
22 | - | ||
23 | 21 | ||
24 | /* === SELECTED BUTTONS === */ | 22 | /* === SELECTED BUTTONS === */ |
25 | 23 | ||
... | @@ -77,3 +75,12 @@ | ... | @@ -77,3 +75,12 @@ |
77 | .light .radioButton:hover:not(.selected) svg.embeddedIcon .glyph { | 75 | .light .radioButton:hover:not(.selected) svg.embeddedIcon .glyph { |
78 | fill: #5b99d2; | 76 | fill: #5b99d2; |
79 | } | 77 | } |
78 | + | ||
79 | + | ||
80 | +/* TODO: dark theme */ | ||
81 | +/* Selected toggle / radio button */ | ||
82 | + | ||
83 | +.dark .toggleButton.selected svg.embeddedIcon .icon rect, | ||
84 | +.dark .radioButton.selected svg.embeddedIcon .icon rect { | ||
85 | + fill: #e7e7e7; | ||
86 | +} | ... | ... |
-
Please register or login to post a comment