commit | f83c3e9c2e15da887ee43bc0f1465e9d707d36bb | [log] [tgz] |
---|---|---|
author | Steven Burrows <sburrows@villa-technologies.com> | Wed Sep 28 14:38:37 2016 -0700 |
committer | Gerrit Code Review <gerrit@onlab.us> | Wed Sep 28 22:06:20 2016 +0000 |
tree | d3f271ea3249a1cd5135363b3c4ab7928fa585f5 | |
parent | 01ddf60a74795b5afca5a08f62c78ddf63c43e52 [diff] |
fix for displaying toolbar icons in dark theme Change-Id: I129ef33cbf5576f14090502544053bd41154be7d
diff --git a/web/gui/src/main/webapp/app/fw/svg/glyph-theme.css b/web/gui/src/main/webapp/app/fw/svg/glyph-theme.css index b6ee518..304ce82 100644 --- a/web/gui/src/main/webapp/app/fw/svg/glyph-theme.css +++ b/web/gui/src/main/webapp/app/fw/svg/glyph-theme.css
@@ -23,7 +23,11 @@ fill: black; } +/* +* NOTE: Keeping the theme black while we +* wait for the mockup theme designs to be made +*/ .dark svg .glyph, .light svg .glyph.overlay { - fill: white; + fill: black; }
diff --git a/web/gui/src/main/webapp/app/fw/widget/button-theme.css b/web/gui/src/main/webapp/app/fw/widget/button-theme.css index b64135a..3f2279e 100644 --- a/web/gui/src/main/webapp/app/fw/widget/button-theme.css +++ b/web/gui/src/main/webapp/app/fw/widget/button-theme.css
@@ -18,8 +18,6 @@ ONOS GUI -- Button Service (theme) -- CSS file */ -/* TODO: dark theme */ - /* === SELECTED BUTTONS === */ @@ -77,3 +75,12 @@ .light .radioButton:hover:not(.selected) svg.embeddedIcon .glyph { fill: #5b99d2; } + + +/* TODO: dark theme */ +/* Selected toggle / radio button */ + +.dark .toggleButton.selected svg.embeddedIcon .icon rect, +.dark .radioButton.selected svg.embeddedIcon .icon rect { + fill: #e7e7e7; +}