blob: a44eb6a24f2f94800dc2c3fb6d73d551a497b12e [file] [log] [blame]
Bhavesh Kumard0b8bae2018-07-31 16:56:43 +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 -- Settings Details Panel (layout) -- CSS file
19 */
20
21#settings-details-panel.floatpanel {
22 z-index: 100;
23 font-size: 10pt;
24 top: 143px;
25 overflow-y: scroll;
26}
27
28#settings-details-panel .container {
29 padding: 0 30px;
30 height: 300px;
31}
32
33#settings-details-panel .container .top-content {
34 padding: 15px;
35}
36
37#settings-details-panel .close-btn {
38 position: absolute;
39 right: 12px;
40 top: 12px;
41 cursor: pointer;
42}
43
44#settings-details-panel .settings-title-1 {
45 width: 90%;
46 height: 25px;
47 font-size: 14pt;
48 font-weight: lighter;
49 overflow: hidden;
50 white-space: nowrap;
51 padding: 0 12px 0 2px;
52 margin-top: 19px;
53 margin-bottom: 5px;
54}
55
56#settings-details-panel .settings-title-2 {
57 width: 90%;
58 height: 52px;
59 font-size: 18pt;
60 font-weight: lighter;
61 overflow: hidden;
62 white-space: nowrap;
63 padding: 0 6px 0 2px;
64 margin-top: 5px;
65 margin-bottom: 5px;
66}
67
68#settings-details-panel td.label {
69 font-weight: bold;
70 text-align: right;
71 padding-right: 6px;
72 font-size: 10pt;
73 vertical-align: top;
74 width: 120px;
75}