blob: 7a91837f5481a3f2adcc841b8578ae9d4fe1b3ec [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 Colecdc188d2015-04-24 16:40:11 -070021.light #ov-flow tr:nth-child(6n + 2),
22.light #ov-flow tr:nth-child(6n + 3),
23.light #ov-flow tr:nth-child(6n + 4) {
24 background-color: #eee;
25}
26.light #ov-flow tr:nth-child(6n + 5),
27.light #ov-flow tr:nth-child(6n + 6),
28.light #ov-flow tr:nth-child(6n + 1) {
29 background-color: #ddd;
30}
31.dark #ov-flow tr:nth-child(6n + 2),
32.dark #ov-flow tr:nth-child(6n + 3),
33.dark #ov-flow tr:nth-child(6n + 4) {
34 background-color: #444;
35}
36.dark #ov-flow tr:nth-child(6n + 5),
37.dark #ov-flow tr:nth-child(6n + 6),
38.dark #ov-flow tr:nth-child(6n + 1) {
39 background-color: #333;
40}
41
42#ov-flow td.selector,
43#ov-flow td.treatment {
44 padding-left: 36px;
Simon Hunt1002cd82015-04-23 14:44:03 -070045}