blob: 1ad9fbed8b648f76682fb4faccdd7fa09ef3c919 [file] [log] [blame]
Sean Condonf4f54a12018-10-10 23:25:46 +01001/*
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 -- Topology Common styles -- CSS file
19 */
20.topo2-p div.header {
21 margin-bottom: 10px;
22}
23
24.topo2-p div.header div.icon {
25 vertical-align: middle;
26 display: inline-block;
27}
28.topo2-p div.body {
29 overflow-y: scroll;
30}
31
32.topo2-p div.body::-webkit-scrollbar {
33 display: none;
34}
35
36.topo2-p svg {
37 display: inline-block;
38 width: 26px;
39 height: 26px;
40}
41
42
43.topo2-p h2 {
44 padding: 0 0 0 10px;
45 margin: 0;
46 font-weight: lighter;
47 word-wrap: break-word;
48 display: inline-block;
49 vertical-align: middle;
50}
51
52.topo2-p h3 {
53 padding: 0 4px;
54 margin: 0;
55 word-wrap: break-word;
56 top: 20px;
57 left: 50px;
58}
59
60.topo2-p p,
61.topo2-p table {
62 padding: 0;
63 margin: 0;
64 width: 100%;
65}
66
67.topo2-p td {
68 word-wrap: break-word;
69}
70.topo2-p td.label {
71 font-weight: bold;
72 padding: 0 10px 0 0;
73}
74.topo2-p td.value {
75 padding: 0;
76}
77
78#topo2-p-summary td.label {
79 width: 50%;
80}
81
Sean Condonf4f54a12018-10-10 23:25:46 +010082.topo2-p hr {
83 height: 1px;
84 border: 0;
85 margin: 4px -3px;
86}