blob: 47ea2aa7acc945d9573707902c5b2c24d3915a82 [file] [log] [blame]
Bri Prebilic Cole96f26472015-03-31 13:07:05 -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 -- Intent View -- CSS file
19 */
20
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070021.light #ov-intent tr:nth-child(6n + 1),
22.light #ov-intent tr:nth-child(6n + 2),
23.light #ov-intent tr:nth-child(6n + 3) {
24 background-color: #eee;
25}
26.light #ov-intent tr:nth-child(6n + 4),
27.light #ov-intent tr:nth-child(6n + 5),
28.light #ov-intent tr:nth-child(6n) {
29 background-color: #ddd;
30}
31.dark #ov-intent tr:nth-child(6n + 1),
32.dark #ov-intent tr:nth-child(6n + 2),
33.dark #ov-intent tr:nth-child(6n + 3) {
34 background-color: #444;
35}
36.dark #ov-intent tr:nth-child(6n + 4),
37.dark #ov-intent tr:nth-child(6n + 5),
38.dark #ov-intent tr:nth-child(6n) {
39 background-color: #333;
40}
41
42#ov-intent td.resources,
43#ov-intent td.details {
44 padding-left: 36px;
45}