blob: f14e1f7732cebf9109da6534e5a5c9aca4fa4f11 [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 -- Button Service -- CSS file
19 */
20
Bri Prebilic Colef7280d02015-02-24 16:20:47 -080021.light .tbarArrow svg.embeddedIcon .icon.tableColSortAsc .glyph {
22 fill: #838383;
23}
24.dark .tbarArrow svg.embeddedIcon .icon.tableColSortAsc .glyph {
25 fill: #B2B2B2;
26}
27
28.button,
29.toggleButton,
30.radioSet,
31.separator {
32 display: inline-block;
33}
34.button,
35.toggleButton {
36 padding: 0 4px 0 4px;
37}
38.radioSet .toggleButton {
39 padding: 0 0 0 4px;
40}
41
42.button svg.embeddedIcon,
43.toggleButton svg.embeddedIcon {
Bri Prebilic Cole5000a752015-02-23 17:20:53 -080044 cursor: pointer;
45}
Bri Prebilic Colef7280d02015-02-24 16:20:47 -080046.button svg.embeddedIcon .icon rect,
47.toggleButton svg.embeddedIcon .icon rect {
48 stroke: none;
49}
50
51/* Selected button color */
52.light .button svg.embeddedIcon,
53.light .toggleButton.selected svg.embeddedIcon {
54 fill: #838383;
55}
56.light .button svg.embeddedIcon .glyph,
57.light .toggleButton.selected svg.embeddedIcon .glyph {
58 fill: white;
59}
60.dark .button svg.embeddedIcon,
61.dark .toggleButton.selected svg.embeddedIcon {
62 fill: #151515;
63}
64.dark .button svg.embeddedIcon .glyph,
65.dark .toggleButton.selected svg.embeddedIcon .glyph {
66 fill: #B2B2B2;
67}
68
69/* Unselected button color */
70.light .toggleButton svg.embeddedIcon {
71 fill: #eee;
72}
73.light .toggleButton svg.embeddedIcon .glyph {
74 fill: #bbb;
75}
76.dark .toggleButton svg.embeddedIcon {
77 fill: #303030;
78}
79.dark .toggleButton svg.embeddedIcon .glyph {
80 fill: #565656;
81}