blob: a3903b0804668009e269193f3a1ae728eb41ebbc [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
Bhavesh72ead492018-07-19 16:29:18 +05302 * Copyright 2018-present Open Networking Foundation
Sean Condon83fc39f2018-04-19 18:56:13 +01003 *
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
Sean Condon83fc39f2018-04-19 18:56:13 +010017#device-details-panel.floatpanel {
18 z-index: 0;
Bhavesh72ead492018-07-19 16:29:18 +053019 font-size: 10pt;
20 top: 185px;
Sean Condon83fc39f2018-04-19 18:56:13 +010021}
22
Bhavesh72ead492018-07-19 16:29:18 +053023#device-details-panel.floatpanel a {
24 font-weight: bold;
25}
Sean Condon83fc39f2018-04-19 18:56:13 +010026
27#device-details-panel .container {
Bhavesh72ead492018-07-19 16:29:18 +053028 padding: 0 30px;
Sean Condon83fc39f2018-04-19 18:56:13 +010029}
30
31#device-details-panel .close-btn {
32 position: absolute;
Bhavesh72ead492018-07-19 16:29:18 +053033 right:5px;
34 top: 5px;
Sean Condon83fc39f2018-04-19 18:56:13 +010035 cursor: pointer;
36}
37
38#device-details-panel .dev-icon {
39 display: inline-block;
40 padding: 0 6px 0 0;
41 vertical-align: middle;
42}
43
44#device-details-panel h2 {
45 display: inline-block;
46 margin: 8px 0;
Bhavesh72ead492018-07-19 16:29:18 +053047 font-weight: bold;
48 font-size: 16pt;
Sean Condon83fc39f2018-04-19 18:56:13 +010049}
50
Sean Condon83fc39f2018-04-19 18:56:13 +010051#device-details-panel h2 input {
52 font-size: 0.90em;
53 width: 106%;
54}
55
Sean Condon83fc39f2018-04-19 18:56:13 +010056#device-details-panel .actionBtns div {
57 padding: 12px 6px;
58}
59
60#device-details-panel hr {
61 width: 100%;
62 margin: 2px auto;
63}
64
Bhavesh72ead492018-07-19 16:29:18 +053065#device-details-panel .top-tables {
66 font-size: 10pt;
67 white-space: nowrap;
68}
69
70#device-details-panel td.label {
71 font-weight: bold;
72 text-align: right;
73 padding-right: 6px;
74}
75
Sean Condon83fc39f2018-04-19 18:56:13 +010076#device-details-panel .bottom table {
77 border-spacing: 0;
Bhavesh72ead492018-07-19 16:29:18 +053078 height: 358px;
79 width: 520px;
80 overflow: auto;
81 display: block;
Sean Condon83fc39f2018-04-19 18:56:13 +010082}
83
84#device-details-panel .bottom th {
85 letter-spacing: 0.02em;
86}
87
88#device-details-panel .bottom th,
89#device-details-panel .bottom td {
90 padding: 6px 12px;
91 text-align: center;
92}
93
Bhavesh72ead492018-07-19 16:29:18 +053094#device-details-panel .top div.left {
95 float: left;
96 text-align: left;
97 padding: 0 10px 0 0;
98}
99
100#device-details-panel .top div.right {
101 display: inline-block;
102}
103
104#device-details-panel .editable {
105 border-bottom: 1px dashed #ca504b;
106}
107
108#device-details-panel .clickable {
109 cursor: pointer;
110}
111
112#device-details-panel .bottom thead tr {
113 background-color: #e5e5e6;
114}