blob: d2ab63fe13b88f115b345dfdc4afb37b28850066 [file] [log] [blame]
Simon Hunt58894c82016-05-24 15:09:02 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/* ------ for summary-list tables (theme) ------ */
18
19.light div.summary-list tr:nth-child(even) {
20 background-color: #ddd;
21}
22.light div.summary-list tr:nth-child(odd) {
23 background-color: #eee;
24}
25.dark div.summary-list tr:nth-child(even) {
26 background-color: #333;
27}
28.dark div.summary-list tr:nth-child(odd) {
29 background-color: #444;
30}
31
32.light div.summary-list tr.selected {
33 background-color: deepskyblue !important;
34}
35
36.dark div.summary-list tr.selected {
37 background-color: #304860;
38}
39
40/* highlighting */
41.light div.summary-list tr.data-change {
42 background-color: #FDFFDC;
43}
44.dark div.summary-list tr.data-change {
45 background-color: #5A5600;
46}
47
48.light div.summary-list .table-header td {
49 background-color: #bbb;
50}
51.dark div.summary-list .table-header td {
52 background-color: #222;
53 color: #ccc;
54}
55
56.dark div.summary-list td {
57 color: #ccc;
58}
59
60/* Inactive */
61.light .ctrl-btns div g.icon rect,
62.light .ctrl-btns div:hover g.icon rect {
63 fill: #eee;
64}
65.dark .ctrl-btns div g.icon rect,
66.dark .ctrl-btns div:hover g.icon rect {
67 fill: #222;
68}
69
70.light .ctrl-btns div g.icon use {
71 fill: #ddd;
72}
73.dark .ctrl-btns div g.icon use {
74 fill: #333;
75}
76
77/* Active hover */
78.light .ctrl-btns div.active:hover g.icon rect {
79 fill: #800;
80}
81
82.dark .ctrl-btns div.active:hover g.icon rect {
83 fill: #CE5650;
84}
85
86/* Active */
87.light .ctrl-btns div.active g.icon use {
88 fill: #fff;
89}
90.dark .ctrl-btns div.active g.icon use {
91 fill: #eee;
92}
93
94.light .ctrl-btns div.active g.icon rect {
95 fill: #bbb;
96}
97.dark .ctrl-btns div.active g.icon rect {
98 fill: #444;
99}
100
101/* Refresh button specific */
102.light .ctrl-btns div.refresh.active g.icon rect {
103 fill: #964949;
104}
105
106.dark .ctrl-btns div.refresh.active g.icon rect {
107 fill: #9B4641;
108}
109.light .ctrl-btns div.refresh:hover g.icon rect {
110 fill: #964949;
111}
112
113.dark .ctrl-btns div.refresh:hover g.icon rect {
114 fill: #9B4641;
115}
116