blob: 015d47596fd3911514768e44e71b325b88a8ee83 [file] [log] [blame]
Bhavesh72ead492018-07-19 16:29:18 +05301/*
2 * Copyright 2018-present Open Networking Foundation
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 (layout) -- CSS file
19 */
20#ov-port .tabular-header {
21 text-align: left;
22}
23
24#ov-port h2 {
25 display: inline-block;
26}
27
28#ov-port div.ctrl-btns {
29}
30
31#ov-port div.summary-list .table-header td {
32 font-weight: bold;
33 font-variant: small-caps;
34 text-transform: uppercase;
35 font-size: 10pt;
36 padding-top: 8px;
37 padding-bottom: 8px;
38 letter-spacing: 0.02em;
39 cursor: pointer;
40 background-color: #e5e5e6;
41 color: #3c3a3a;
42}
43
44#ov-port td {
45 text-align: center;
46}
47
48#ov-port td.delta {
49 text-align: center;
50 font-weight: bold;
51}
52
53#ov-port td.delta:before {
54 content: "+";
55}
56
57#ov-port tr.no-data td {
58 text-align: center;
59}