blob: a0bedc6c6fdd6791ed95552e7ef03361b7b11ebe [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 {
30 height: 600px;
31 width: 98%;
32 overflow-y: scroll;
33}
34
Simon Hunt98189192016-07-29 19:02:27 -070035#topoXtmp div {
36 padding: 8px 24px;
37 margin: 8px;
38 background-color: #ddddff;
39}
40#topoXtmp div div {
41 padding: 4px 10px;
42}
43
44#topoXtmp h4 {
45 margin: 0
46}
47#topoXtmp p {
48 margin: 0
49}
50#topoXtmp .nav-me:hover {
51 background-color: #bbbbdd;
52}
53#topoXtmp .nav-me {
54 font-weight: bold;
55 text-decoration: underline;
56 cursor: pointer;
57}