blob: cf6b9afe477be25f78875f35309565544b570194 [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
60#ov-group td.buckets {
61 padding-left: 36px;
62 opacity: 0.65;
63}