blob: 286296583da0eaff4fc9a7fe654f2bf59f2989d8 [file] [log] [blame]
Bri Prebilic Cole5000a752015-02-23 17:20:53 -08001/*
2 * Copyright 2015 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 ONOS GUI -- Toolbar Service -- CSS file
19 */
20
Simon Huntdf510012015-02-26 16:34:37 -080021.light .tbarArrow svg.embeddedIcon .icon .glyph {
22 fill: #838383;
23}
24.dark .tbarArrow svg.embeddedIcon .icon .glyph {
25 fill: #B2B2B2;
26}
27
28
29.tbarArrow svg.embeddedIcon .icon rect {
30 stroke: none;
31}
32.light .tbarArrow svg.embeddedIcon .icon rect {
33 fill: none;
34}
35.dark .tbarArrow svg.embeddedIcon .icon rect {
36 fill: none;
37}
38
39
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -070040.toolbar {
41 line-height: 125%;
42}
43.tbar-row {
44 display: inline-block;
45}
46
47
48
Bri Prebilic Colef7280d02015-02-24 16:20:47 -080049.separator {
50 border: 1px solid;
51 margin: 0 4px 0 4px;
Bri Prebilic Cole258f0462015-02-25 14:48:50 -080052 display: inline-block;
Simon Huntdf510012015-02-26 16:34:37 -080053 height: 23px;
54 width: 0;
Bri Prebilic Cole5000a752015-02-23 17:20:53 -080055}
Bri Prebilic Colef7280d02015-02-24 16:20:47 -080056.light .separator {
57 border-color: #ddd;
58}
Bri Prebilic Colef7280d02015-02-24 16:20:47 -080059.dark .separator {
60 border-color: #1A1A1A;
Simon Huntdf510012015-02-26 16:34:37 -080061}