blob: 7e53e0c8df6a002ac663000f1edf74b594a8adb9 [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 ONOS GUI -- Flow View (layout) -- CSS file
18 */
19
20#ov-flow h2 {
21 display: inline-block;
Thomas Vachuskaedb437a2020-02-27 14:25:58 -080022 margin-left: 10px;
Bhavesh72ead492018-07-19 16:29:18 +053023}
24
25#ov-flow div.ctrl-btns {
26}
27
28#ov-flow td {
29 text-align: center;
30}
31#ov-flow td.right {
32 text-align: right;
33}
Sean Condond3d4ac12020-05-26 09:42:01 +010034
35#ov-flow td.col8pct {
36 width: 8%;
37}
38#ov-flow td.col10pct {
39 width: 10%;
40}
41
42
Bhavesh72ead492018-07-19 16:29:18 +053043#ov-flow td.selector,
44#ov-flow td.treatment {
45 text-align: left;
46 padding-left: 36px;
47}
48
49#ov-flow .tabular-header {
50 text-align: left;
51}
52#ov-flow div.summary-list .table-header td {
53 font-weight: bold;
54 font-variant: small-caps;
55 text-transform: uppercase;
56 font-size: 10pt;
57 padding-top: 8px;
58 padding-bottom: 8px;
59 letter-spacing: 0.02em;
60 cursor: pointer;
61 background-color: #e5e5e6;
62 color: #3c3a3a;
63}
64
65/* More in generic panel.css */
66
67#flow-details-panel.floatpanel {
68 z-index: 0;
69}
70
71
72#flow-details-panel .container {
73 padding: 8px 12px;
74}
75
76#flow-details-panel .close-btn {
77 position: absolute;
78 right: 12px;
79 top: 12px;
80 cursor: pointer;
81}
82
83#flow-details-panel .dev-icon {
84 display: inline-block;
85 padding: 0 6px 0 0;
86 vertical-align: middle;
87}
88
89#flow-details-panel h2 {
90 display: inline-block;
91 margin: 8px 0;
92 font-size: 16pt;
93 font-weight: lighter;
94}
95
96#flow-details-panel h3 {
97 display: inline-block;
98 margin: 8px 0;
99 font-size: 11pt;
100 font-variant: small-caps;
101 text-transform: uppercase;
102}
103
104#flow-details-panel .top-content table {
105 font-size: 10pt;
106}
107
108#flow-details-panel td.label {
109 font-weight: bold;
110 text-align: right;
111 padding-right: 6px;
112}