blob: 42f1c31df0e8aed5de5d90cc0c423c477fb8c42d [file] [log] [blame]
Bri Prebilic Coleff3dc672015-05-06 12:59:38 -07001/*
2 * Copyright 2015 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/*
18 ONOS GUI -- Group View -- CSS file
19 */
20
21#ov-group h2 {
22 display: inline-block;
23}
24
25#ov-group div.ctrl-btns {
Bri Prebilic Cole9b1fb9a2015-07-01 13:57:11 -070026 width: 240px;
27}
28
29.light #ov-group .current-view use {
30 fill: white;
31}
32.dark #ov-group .current-view use {
33 fill: #304860;
34}
35
36.light #ov-group .current-view rect {
37 fill: deepskyblue;
38}
39.dark #ov-group .current-view rect {
40 fill: #eee;
Bri Prebilic Coleff3dc672015-05-06 12:59:38 -070041}
42
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070043.light #ov-group tr:nth-child(4n + 1),
44.light #ov-group tr:nth-child(4n + 2) {
Bri Prebilic Coleff3dc672015-05-06 12:59:38 -070045 background-color: #eee;
46}
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070047.light #ov-group tr:nth-child(4n + 3),
48.light #ov-group tr:nth-child(4n) {
Bri Prebilic Coleff3dc672015-05-06 12:59:38 -070049 background-color: #ddd;
50}
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070051.dark #ov-group tr:nth-child(4n + 1),
52.dark #ov-group tr:nth-child(4n + 2) {
Bri Prebilic Coleff3dc672015-05-06 12:59:38 -070053 background-color: #444;
54}
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070055.dark #ov-group tr:nth-child(4n + 3),
56.dark #ov-group tr:nth-child(4n) {
Bri Prebilic Coleff3dc672015-05-06 12:59:38 -070057 background-color: #333;
58}
59
Bri Prebilic Cole0bc4de22015-07-20 17:07:55 -070060/* highlighted color */
61.light #ov-group tr:nth-child(4n + 1).data-change,
62.light #ov-group tr:nth-child(4n + 2).data-change,
63.light #ov-group tr:nth-child(4n + 3).data-change,
64.light #ov-group tr:nth-child(4n).data-change {
65 background-color: #FDFFDC;
66}
67.dark #ov-group tr:nth-child(4n + 1).data-change,
68.dark #ov-group tr:nth-child(4n + 2).data-change,
69.dark #ov-group tr:nth-child(4n + 3).data-change,
70.dark #ov-group tr:nth-child(4n).data-change {
71 background-color: #5A5600;
72}
73
Bri Prebilic Coleff3dc672015-05-06 12:59:38 -070074#ov-group td.buckets {
75 padding-left: 36px;
76 opacity: 0.65;
77}