blob: 4f9ea8a654d597bf9139502ebe188a530602b631 [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 Cole3d4d01c2015-04-30 13:48:36 -070021#ov-intent h2 {
22 display: inline-block;
23}
24
25#ov-intent div.ctrl-btns {
26 width: 45px;
27}
28
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070029.light #ov-intent tr:nth-child(6n + 2),
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070030.light #ov-intent tr:nth-child(6n + 3),
31.light #ov-intent tr:nth-child(6n + 4) {
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070032 background-color: #eee;
33}
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070034.light #ov-intent tr:nth-child(6n + 5),
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070035.light #ov-intent tr:nth-child(6n + 6),
36.light #ov-intent tr:nth-child(6n + 1) {
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070037 background-color: #ddd;
38}
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070039.dark #ov-intent tr:nth-child(6n + 2),
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070040.dark #ov-intent tr:nth-child(6n + 3),
41.dark #ov-intent tr:nth-child(6n + 4) {
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070042 background-color: #444;
43}
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070044.dark #ov-intent tr:nth-child(6n + 5),
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070045.dark #ov-intent tr:nth-child(6n + 6),
46.dark #ov-intent tr:nth-child(6n + 1) {
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070047 background-color: #333;
48}
49
50#ov-intent td.resources,
51#ov-intent td.details {
52 padding-left: 36px;
53}