blob: 160525c65e458fe91cfe4e6e71287e0f987547ac [file] [log] [blame]
Simon Huntd5b96732016-07-08 13:22: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-topo2 svg {
25 /* prevents the little cut/copy/paste square that would appear on iPad */
26 -webkit-user-select: none;
27}
Simon Hunt98189192016-07-29 19:02:27 -070028
29/* -- TEMPORARY CSS (to be deleted) -- */
30#topo2tmp div {
31 padding: 8px 24px;
32 margin: 8px;
33 background-color: #ddddff;
34}
35#topo2tmp div div {
36 padding: 4px 10px;
37}
38
39#topo2tmp h4 {
40 margin: 0
41}
42#topo2tmp p {
43 margin: 0
44}
45#topo2tmp .nav-me:hover {
46 background-color: #bbbbdd;
47}
48#topo2tmp .nav-me {
49 font-weight: bold;
50 text-decoration: underline;
51 cursor: pointer;
52}
Steven Burrowsaf3159d2016-08-25 14:54:30 +010053
54#breadcrumbs {
55 position: absolute;
56 padding: 10px 30px;
57 top: 54px;
58 width: 100%;
59}
60
61#breadcrumbs .breadcrumb {
62 display: inline-block;
63 margin-right: 20px;
64}
65
66.floatpanel {
67 top: 104px;
68}