blob: 7fcfee3f2d93899437dcbb0517d65345d53043b4 [file] [log] [blame]
Bri Prebilic Coleac829e42015-05-05 13:42:06 -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 -- Port View -- CSS file
19 */
20
21#ov-port h2 {
22 display: inline-block;
23}
24
25#ov-port div.ctrl-btns {
Bri Prebilic Cole9b1fb9a2015-07-01 13:57:11 -070026 width: 240px;
Bri Prebilic Coleac829e42015-05-05 13:42:06 -070027}
28
Bri Prebilic Cole9b1fb9a2015-07-01 13:57:11 -070029.light #ov-port .current-view use {
30 fill: white;
31}
32.dark #ov-port .current-view use {
33 fill: #304860;
34}
35
36.light #ov-port .current-view rect {
37 fill: deepskyblue;
38}
39.dark #ov-port .current-view rect {
40 fill: #eee;
41}
42
43#ov-port td {
Bri Prebilic Coleac829e42015-05-05 13:42:06 -070044 text-align: right;
Bri Prebilic Cole70aacc42015-07-22 11:28:34 -070045}
46
47#ov-port tr.no-data td {
48 text-align: center;
49}