blob: c578112cc930778b7816b12cfefb5697f97377aa [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
2 * Copyright 2015-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 -- Device View (layout) -- CSS file
19 */
20
21#ov-device h2 {
22 display: inline-block;
23}
24
25#ov-device div.ctrl-btns {
26}
27
28
29/* More in generic panel.css */
30
31#device-details-panel.floatpanel {
32 z-index: 0;
33}
34
35
36#device-details-panel .container {
37 padding: 8px 12px;
38}
39
40#device-details-panel .close-btn {
41 position: absolute;
42 right: 12px;
43 top: 12px;
44 cursor: pointer;
45}
46
47#device-details-panel .dev-icon {
48 display: inline-block;
49 padding: 0 6px 0 0;
50 vertical-align: middle;
51}
52
53#device-details-panel h2 {
54 display: inline-block;
55 margin: 8px 0;
56}
57
58
59#device-details-panel h2 input {
60 font-size: 0.90em;
61 width: 106%;
62}
63
64#device-details-panel .top-tables {
65 font-size: 10pt;
66 white-space: nowrap;
67}
68
69#device-details-panel .top div.left {
70 float: left;
71 padding: 0 18px 0 0;
72}
73#device-details-panel .top div.right {
74 display: inline-block;
75}
76
77#device-details-panel td.label {
78 font-weight: bold;
79 text-align: right;
80 padding-right: 6px;
81}
82
83#device-details-panel .actionBtns div {
84 padding: 12px 6px;
85}
86
87#device-details-panel hr {
88 width: 100%;
89 margin: 2px auto;
90}
91
92#device-details-panel .bottom table {
93 border-spacing: 0;
94}
95
96#device-details-panel .bottom th {
97 letter-spacing: 0.02em;
98}
99
100#device-details-panel .bottom th,
101#device-details-panel .bottom td {
102 padding: 6px 12px;
103 text-align: center;
104}
105