blob: d4479feddae79f3d28058ad7245ac820d306d66f [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 -- Group View (layout) -- CSS file
18 */
19
20#ov-group 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-group div.ctrl-btns {
26}
27
28#ov-group td {
29 text-align: center;
30}
31#ov-group td.right {
32 text-align: right;
33}
34#ov-group td.buckets {
35 text-align: left;
36 padding-left: 36px;
37}
38
39#ov-group .tabular-header {
40 text-align: left;
41}
42#ov-group 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#group-details-panel.floatpanel {
58 z-index: 0;
59}
60
61
62#group-details-panel .container {
63 padding: 8px 12px;
64}
65
66#group-details-panel .close-btn {
67 position: absolute;
68 right: 12px;
69 top: 12px;
70 cursor: pointer;
71}
72
73#group-details-panel .dev-icon {
74 display: inline-block;
75 padding: 0 6px 0 0;
76 vertical-align: middle;
77}
78
79#group-details-panel h2 {
80 display: inline-block;
81 margin: 8px 0;
82 font-size: 16pt;
83 font-weight: lighter;
84}
85
86#group-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#group-details-panel .top-content table {
95 font-size: 10pt;
96}
97
98#group-details-panel td.label {
99 font-weight: bold;
100 text-align: right;
101 padding-right: 6px;
102}