blob: f16f3c483c1ed581c1cc9bf69d32189ac5954e08 [file] [log] [blame]
prai9d445962018-07-27 13:27:43 +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 -- Processor View (layout) -- CSS file
19 */
Thomas Vachuskaedb437a2020-02-27 14:25:58 -080020#ov-processor .tabular-header {
prai9d445962018-07-27 13:27:43 +053021 text-align: left;
22}
23
24#ov-processor h2 {
25 display: inline-block;
Thomas Vachuskaedb437a2020-02-27 14:25:58 -080026 margin-left: 10px;
prai9d445962018-07-27 13:27:43 +053027}
28
29#ov-processor div.summary-list .table-header td {
30 font-weight: bold;
31 font-variant: small-caps;
32 text-transform: uppercase;
33 font-size: 10pt;
34 padding-top: 8px;
35 padding-bottom: 8px;
36 letter-spacing: 0.02em;
37 cursor: pointer;
38 background-color: #e5e5e6;
39 color: #3c3a3a;
40}
41
42#ov-processor td {
43 text-align: left;
44}
45
46#ov-processor tr.no-data td {
47 text-align: center;
48}
49
50#ov-processor td.priority {
51 text-align: center;
52}
53
54#ov-processor td.number {
55 text-align: right;
56}
57