blob: ecbd217548f22a7abdc14e6ac6956bfa78886133 [file] [log] [blame]
Simon Hunt1002cd82015-04-23 14:44:03 -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 -- Flow View -- CSS file
19 */
20
Bri Prebilic Cole3d4d01c2015-04-30 13:48:36 -070021#ov-flow h2 {
22 display: inline-block;
23}
24
25#ov-flow div.ctrl-btns {
26 width: 45px;
27}
28
Bri Prebilic Colecdc188d2015-04-24 16:40:11 -070029.light #ov-flow tr:nth-child(6n + 2),
30.light #ov-flow tr:nth-child(6n + 3),
31.light #ov-flow tr:nth-child(6n + 4) {
32 background-color: #eee;
33}
34.light #ov-flow tr:nth-child(6n + 5),
35.light #ov-flow tr:nth-child(6n + 6),
36.light #ov-flow tr:nth-child(6n + 1) {
37 background-color: #ddd;
38}
39.dark #ov-flow tr:nth-child(6n + 2),
40.dark #ov-flow tr:nth-child(6n + 3),
41.dark #ov-flow tr:nth-child(6n + 4) {
42 background-color: #444;
43}
44.dark #ov-flow tr:nth-child(6n + 5),
45.dark #ov-flow tr:nth-child(6n + 6),
46.dark #ov-flow tr:nth-child(6n + 1) {
47 background-color: #333;
48}
49
50#ov-flow td.selector,
51#ov-flow td.treatment {
52 padding-left: 36px;
Simon Hunt1002cd82015-04-23 14:44:03 -070053}