blob: 3940cc601abc3e199a1af7702e18886c0b396e1a [file] [log] [blame]
Bri Prebilic Coleac829e42015-05-05 13:42:06 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Bri Prebilic Coleac829e42015-05-05 13:42:06 -07003 *
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 -- Port View -- CSS file
19 */
20
21#ov-port h2 {
22 display: inline-block;
23}
24
25#ov-port div.ctrl-btns {
Bri Prebilic Coleac829e42015-05-05 13:42:06 -070026}
27
Bri Prebilic Cole9b1fb9a2015-07-01 13:57:11 -070028.light #ov-port .current-view use {
29 fill: white;
30}
31.dark #ov-port .current-view use {
32 fill: #304860;
33}
34
35.light #ov-port .current-view rect {
36 fill: deepskyblue;
37}
38.dark #ov-port .current-view rect {
39 fill: #eee;
40}
41
42#ov-port td {
Simon Huntbe60dde2016-01-13 12:26:56 -080043 text-align: center;
44}
45#ov-port td.right {
Bri Prebilic Coleac829e42015-05-05 13:42:06 -070046 text-align: right;
Bri Prebilic Cole70aacc42015-07-22 11:28:34 -070047}
48
49#ov-port tr.no-data td {
50 text-align: center;
51}