Paul Greyson | 29cd58f | 2014-11-18 13:14:57 -0800 | [diff] [blame^] | 1 | .theme_dark #topo { |
| 2 | background-color: #20201D; |
| 3 | } |
| 4 | |
| 5 | .theme_dark #topo #map { |
| 6 | stroke: #444; |
| 7 | } |
| 8 | |
| 9 | /* note: device is offline without the 'online' class */ |
| 10 | .theme_dark #topo svg .node.device { |
| 11 | fill: #777; |
| 12 | } |
| 13 | |
| 14 | .theme_dark #topo .host { |
| 15 | fill: #000; |
| 16 | color: white; |
| 17 | } |
| 18 | |
| 19 | |
| 20 | .theme_dark #topo svg .node.device.switch.online { |
| 21 | fill: #000; |
| 22 | } |
| 23 | |
| 24 | .theme_dark #topo svg .node.device.roadm.online { |
| 25 | fill: #03c; |
| 26 | } |
| 27 | |
| 28 | /* note: device is offline without the 'online' class */ |
| 29 | .theme_dark #topo svg .node.device text { |
| 30 | fill: #aaa; |
| 31 | } |
| 32 | |
| 33 | .theme_dark #topo svg .node.device.online { |
| 34 | color: white; |
| 35 | } |
| 36 | .theme_dark #topo svg .node.device.online text { |
| 37 | fill: currentColor; |
| 38 | } |
| 39 | |
| 40 | .theme_dark #topo svg .glyph { |
| 41 | fill: white; |
| 42 | } |
| 43 | |
| 44 | .theme_dark #topo-oibox .onosInst { |
| 45 | color: #444; |
| 46 | background-color: #ccc; |
| 47 | border-color: #aaa; |
| 48 | } |
| 49 | |
| 50 | .theme_dark #topo-oibox .onosInst.online { |
| 51 | color: #113; |
| 52 | background-color: #bbf; |
| 53 | border-color: #555; |
| 54 | } |
| 55 | |
| 56 | .theme_dark #topo-oibox .onosInst .onosTitle { |
| 57 | color: #888; |
| 58 | } |
| 59 | |
| 60 | .theme_dark #topo svg .node.device.fixed.online rect { |
| 61 | stroke: #666; |
| 62 | } |
| 63 | |
| 64 | .theme_dark #topo svg .node.host { |
| 65 | stroke: #000; |
| 66 | } |
| 67 | |
| 68 | .theme_dark #topo-detail .actionBtn { |
| 69 | border-color: #ddf; |
| 70 | color: #99f; |
| 71 | } |
| 72 | |
| 73 | .theme_dark #topo-detail .actionBtn:hover { |
| 74 | border-color: #ddf; |
| 75 | background: #eef; |
| 76 | color: #77d; |
| 77 | } |
| 78 | |
| 79 | .theme_dark #topo svg .link.primary { |
| 80 | stroke: #f11; |
| 81 | } |
| 82 | |
| 83 | .theme_dark #topo svg .link.secondary { |
| 84 | stroke: rgba(255,100,100,0.5); |
| 85 | } |
| 86 | |
| 87 | .theme_dark #topo svg .link.animated { |
| 88 | stroke: #f11; |
| 89 | } |
| 90 | |
| 91 | .theme_dark #topo svg .link.primary.optical { |
| 92 | stroke: #74f; |
| 93 | } |
| 94 | |
| 95 | .theme_dark #topo svg .link.secondary.optical { |
| 96 | stroke: rgba(128,64,255,0.5); |
| 97 | } |
| 98 | |
| 99 | .theme_dark #topo svg .link.animated.optical { |
| 100 | stroke: #74f; |
| 101 | } |
| 102 | |
| 103 | /*.theme_dark #topo .link { |
| 104 | stroke: #666; |
| 105 | } |
| 106 | */ |
| 107 | |