blob: 7603091290bbcc811378c4e11d8c3841875bce9e [file] [log] [blame]
Bri Prebilic Cole5000a752015-02-23 17:20:53 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Bri Prebilic Cole5000a752015-02-23 17:20:53 -08003 *
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 ONOS GUI -- Toolbar Service -- CSS file
19 */
20
Bri Prebilic Coledd805572015-08-04 16:54:08 -070021.light .tbar-arrow svg.embeddedIcon .icon .glyph {
Simon Huntdf510012015-02-26 16:34:37 -080022 fill: #838383;
23}
Bri Prebilic Coledd805572015-08-04 16:54:08 -070024.dark .tbar-arrow svg.embeddedIcon .icon .glyph {
Simon Huntdf510012015-02-26 16:34:37 -080025 fill: #B2B2B2;
26}
27
28
Bri Prebilic Coledd805572015-08-04 16:54:08 -070029div.tbar-arrow {
30 position: absolute;
31 top: 53%;
32 left: 96%;
33 margin-right: -4%;
34 transform: translate(-50%, -50%);
35 cursor: pointer;
36}
37.safari div.tbar-arrow {
38 top: 46%;
39}
40.firefox div.tbar-arrow {
41 left: 97%;
42 margin-right: -3%;
43}
44
45.tbar-arrow svg.embeddedIcon .icon rect {
Simon Huntdf510012015-02-26 16:34:37 -080046 stroke: none;
47}
Bri Prebilic Coledd805572015-08-04 16:54:08 -070048.light .tbar-arrow svg.embeddedIcon .icon rect {
Simon Huntdf510012015-02-26 16:34:37 -080049 fill: none;
50}
Bri Prebilic Coledd805572015-08-04 16:54:08 -070051.dark .tbar-arrow svg.embeddedIcon .icon rect {
Simon Huntdf510012015-02-26 16:34:37 -080052 fill: none;
53}
54
55
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -070056.toolbar {
57 line-height: 125%;
58}
59.tbar-row {
60 display: inline-block;
61}
62
63
64
Bri Prebilic Colef7280d02015-02-24 16:20:47 -080065.separator {
66 border: 1px solid;
67 margin: 0 4px 0 4px;
Bri Prebilic Cole258f0462015-02-25 14:48:50 -080068 display: inline-block;
Simon Huntdf510012015-02-26 16:34:37 -080069 height: 23px;
70 width: 0;
Bri Prebilic Cole5000a752015-02-23 17:20:53 -080071}
Bri Prebilic Colef7280d02015-02-24 16:20:47 -080072.light .separator {
73 border-color: #ddd;
74}
Bri Prebilic Colef7280d02015-02-24 16:20:47 -080075.dark .separator {
76 border-color: #1A1A1A;
Simon Huntdf510012015-02-26 16:34:37 -080077}