blob: 3cb0514404218d1869ab8fbb17c5086199e434d3 [file] [log] [blame]
Simon Hunt98189192016-07-29 19:02:27 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
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/*
19 ONOS GUI -- Topology View (layout) -- CSS file
20 */
21
22/* --- Base SVG Layer --- */
23
24#ov-topoX svg {
25 /* prevents the little cut/copy/paste square that would appear on iPad */
26 -webkit-user-select: none;
27}
28
Simon Hunt06e08c52016-09-01 10:25:33 -070029#topoXtmp {
Simon Hunt377f5d22016-09-01 16:27:21 -070030 height: 700px;
Simon Hunt06e08c52016-09-01 10:25:33 -070031 width: 98%;
32 overflow-y: scroll;
33}
34
Simon Hunt98189192016-07-29 19:02:27 -070035#topoXtmp div {
Simon Hunt377f5d22016-09-01 16:27:21 -070036 padding: 2px 24px;
37 margin: 6px;
Simon Hunt98189192016-07-29 19:02:27 -070038 background-color: #ddddff;
39}
40#topoXtmp div div {
Simon Hunt377f5d22016-09-01 16:27:21 -070041 padding: 0 10px;
42}
43#topoXtmp div div span {
44 color: purple;
45 font-style: italic;
46 font-weight: bold;
Simon Hunt98189192016-07-29 19:02:27 -070047}
48
49#topoXtmp h4 {
50 margin: 0
51}
52#topoXtmp p {
53 margin: 0
54}
55#topoXtmp .nav-me:hover {
56 background-color: #bbbbdd;
57}
58#topoXtmp .nav-me {
59 font-weight: bold;
60 text-decoration: underline;
61 cursor: pointer;
Simon Hunt377f5d22016-09-01 16:27:21 -070062 color: blue;
63}
64
65.subRegions div p {
66 width: 40px;
Simon Hunt98189192016-07-29 19:02:27 -070067}