blob: 39b01316a4bd64d259c8838c49315da46319e12d [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/*
18 ONOS GUI -- Hosts Details Panel (layout) -- CSS file
19 */
20
21#host-details-panel.floatpanel {
22 z-index: 0;
23 font-size: 10pt;
24 top: 145px;
25 height: 80vh;
26}
27
28#host-details-panel.floatpanel a {
29 font-weight: bold;
30}
31
32#host-details-panel .host-details {
33 padding: 0 30px;
34}
35
36#host-details-panel .close-btn {
37 position: absolute;
38 right: 5px;
39 top: 5px;
40 cursor: pointer;
41}
42
43#host-details-panel .host-icon {
44 display: inline-block;
45 padding: 0 6px 0 0;
46 vertical-align: middle;
47}
48
49#host-details-panel h2 {
50 display: inline-block;
51 margin: 8px 0;
52 font-weight: bold;
53 font-size: 16pt;
54}
55
56#host-details-panel h2 input {
57 font-size: 0.90em;
58 width: 106%;
59}
60
61#host-details-panel .actionBtns div {
62 padding: 12px 6px;
63}
64
65#host-details-panel hr {
66 width: 100%;
67 margin: 2px auto;
68}
69
70#host-details-panel td.label {
71 font-weight: bold;
72 text-align: right;
73 padding-right: 6px;
74}
75
76#host-details-panel .editable {
77 border-bottom: 1px dashed #ca504b;
78}
79
80#host-details-panel .clickable {
81 cursor: pointer;
82}
83
84#host-details-panel .bottom thead tr {
85 background-color: #e5e5e6;
86}