blob: 26661b01cee9d444051d83a3a91aed99d74ebdc3 [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
29/* -- TEMPORARY CSS (to be deleted) -- */
30#topoXtmp div {
31 padding: 8px 24px;
32 margin: 8px;
33 background-color: #ddddff;
34}
35#topoXtmp div div {
36 padding: 4px 10px;
37}
38
39#topoXtmp h4 {
40 margin: 0
41}
42#topoXtmp p {
43 margin: 0
44}
45#topoXtmp .nav-me:hover {
46 background-color: #bbbbdd;
47}
48#topoXtmp .nav-me {
49 font-weight: bold;
50 text-decoration: underline;
51 cursor: pointer;
52}