blob: 449d436575fb34410cabe1847b10d655eb1f9259 [file] [log] [blame]
Sean Condonf4f54a12018-10-10 23:25:46 +01001/*
2 * Copyright 2016-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/*
19 ONOS GUI -- Topology Toolbar Panel -- CSS file
20 */
Sean Condon91481822019-01-01 13:56:14 +000021
22
23
24div.tbar-arrow {
25 position: absolute;
26 top: 53%;
27 left: 96%;
28 margin-right: -4%;
29 transform: translate(-50%, -50%);
30 cursor: pointer;
31}
32.safari div.tbar-arrow {
33 top: 46%;
34}
35.firefox div.tbar-arrow {
36 left: 97%;
37 margin-right: -3%;
38}
39
40.toolbar {
41 line-height: 125%;
42}
43.tbar-row {
44 display: inline-block;
45}
46
47.separator {
48 border: 1px solid;
49 margin: 0 4px 0 4px;
50 display: inline-block;
51 height: 23px;
52 width: 0;
53}
54
Sean Condonf4f54a12018-10-10 23:25:46 +010055#toolbar-topo2-toolbar {
56 padding: 6px;
57}
58
59#toolbar-topo2-toolbar .tbar-row.right {
60 width: 100%;
61}
62
63#toolbar-topo2-toolbar .tbar-row-text {
64 height: 21px;
65 text-align: right;
66 padding: 8px 60px 0 0;
67 font-style: italic;
68}