blob: 3ed4d1678a47d084302f13db5540c9a5f36830a5 [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;
22}
23
24#ov-flow div.ctrl-btns {
25}
26
27#ov-flow td {
28 text-align: center;
29}
30#ov-flow td.right {
31 text-align: right;
32}
33#ov-flow td.selector,
34#ov-flow td.treatment {
35 text-align: left;
36 padding-left: 36px;
37}
38
39#ov-flow .tabular-header {
40 text-align: left;
41}
42#ov-flow div.summary-list .table-header td {
43 font-weight: bold;
44 font-variant: small-caps;
45 text-transform: uppercase;
46 font-size: 10pt;
47 padding-top: 8px;
48 padding-bottom: 8px;
49 letter-spacing: 0.02em;
50 cursor: pointer;
51 background-color: #e5e5e6;
52 color: #3c3a3a;
53}
54
55/* More in generic panel.css */
56
57#flow-details-panel.floatpanel {
58 z-index: 0;
59}
60
61
62#flow-details-panel .container {
63 padding: 8px 12px;
64}
65
66#flow-details-panel .close-btn {
67 position: absolute;
68 right: 12px;
69 top: 12px;
70 cursor: pointer;
71}
72
73#flow-details-panel .dev-icon {
74 display: inline-block;
75 padding: 0 6px 0 0;
76 vertical-align: middle;
77}
78
79#flow-details-panel h2 {
80 display: inline-block;
81 margin: 8px 0;
82 font-size: 16pt;
83 font-weight: lighter;
84}
85
86#flow-details-panel h3 {
87 display: inline-block;
88 margin: 8px 0;
89 font-size: 11pt;
90 font-variant: small-caps;
91 text-transform: uppercase;
92}
93
94#flow-details-panel .top-content table {
95 font-size: 10pt;
96}
97
98#flow-details-panel td.label {
99 font-weight: bold;
100 text-align: right;
101 padding-right: 6px;
102}