mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-22 12:51:09 +02:00
GUI -- Added dark theming for the topology view.
Change-Id: I13c7bbbff65007fed162a4ea80dbf6042ff04c07
This commit is contained in:
parent
0541fb8d47
commit
5ee36e041b
@ -32,7 +32,7 @@
|
||||
}
|
||||
.dark #mast {
|
||||
background-color: #444;
|
||||
box-shadow: 0 2px 8px #777;
|
||||
box-shadow: 0 2px 8px #222;
|
||||
}
|
||||
|
||||
#mast img.logo {
|
||||
|
@ -37,6 +37,13 @@ body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body.light {
|
||||
background-color: white;
|
||||
}
|
||||
body.dark {
|
||||
background-color: #2b2b2b;
|
||||
}
|
||||
|
||||
#view {
|
||||
padding: 6px;
|
||||
width: 100%;
|
||||
|
@ -20,15 +20,24 @@
|
||||
@author Simon Hunt
|
||||
*/
|
||||
|
||||
#ov-topo svg {
|
||||
.light #ov-topo svg {
|
||||
background-color: #fff;
|
||||
/* For Debugging the placement of the SVG layer... */
|
||||
/*border: 1px solid red;*/
|
||||
}
|
||||
.dark #ov-topo svg {
|
||||
background-color: #2b2b2b;
|
||||
}
|
||||
|
||||
#ov-topo svg #topo-map {
|
||||
stroke-width: 2px;
|
||||
/*stroke: #eee;*/
|
||||
stroke: #88b;
|
||||
fill: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.light #ov-topo svg #topo-map {
|
||||
stroke: #eee;
|
||||
/*stroke: #88b;*/
|
||||
}
|
||||
.dark #ov-topo svg #topo-map {
|
||||
stroke: #444;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user