blob: da6165b92449690d2a17732ff46a1495dbbe3902 [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 Colef7280d02015-02-24 16:20:47 -080040.separator {
41 border: 1px solid;
42 margin: 0 4px 0 4px;
Bri Prebilic Cole258f0462015-02-25 14:48:50 -080043 display: inline-block;
Simon Huntdf510012015-02-26 16:34:37 -080044 height: 23px;
45 width: 0;
Bri Prebilic Cole5000a752015-02-23 17:20:53 -080046}
Bri Prebilic Colef7280d02015-02-24 16:20:47 -080047.light .separator {
48 border-color: #ddd;
49}
Bri Prebilic Colef7280d02015-02-24 16:20:47 -080050.dark .separator {
51 border-color: #1A1A1A;
Simon Huntdf510012015-02-26 16:34:37 -080052}