blob: 7301b646141fcf18bfcc95c9bc55bdbf9348b315 [file] [log] [blame]
Thomas Vachuska3ece3732015-09-22 23:58:50 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuska3ece3732015-09-22 23:58:50 -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 -- Processor View -- CSS file
19 */
20
21#ov-processor h2 {
22 display: inline-block;
23}
24
25#ov-processor div.ctrl-btns {
26 width: 40px;
27}
28
29.light #ov-processor .current-view use {
30 fill: white;
31}
32.dark #ov-processor .current-view use {
33 fill: #304860;
34}
35
36.light #ov-processor .current-view rect {
37 fill: deepskyblue;
38}
39.dark #ov-processor .current-view rect {
40 fill: #eee;
41}
42
43#ov-processor td.number {
44 text-align: right;
45}
46
Thomas Vachuska3ece3732015-09-22 23:58:50 -070047#ov-processor tr.no-data td {
48 text-align: center;
49}