blob: 481708d3c0a933b7a12f3bd67092ff11f7b4ea7b [file] [log] [blame]
Thomas Vachuska0fa583c2015-03-30 23:07:41 -07001/*
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 -- Host View -- CSS file
19 */
20
Simon Hunt3695a622015-03-31 11:52:23 -070021#ov-app h2 {
22 display: inline-block;
23}
24
25#ov-app div.ctrl-btns {
26 display:inline-block;
27 float: right;
28 width: 200px;
29 height: 44px;
30 margin-right: 24px;
31 margin-top: 7px;
32}
33
34div.ctrl-btns div {
35 display: inline-block;
36 padding: 4px;
37 cursor: pointer;
38}
39
Thomas Vachuska619c5382015-04-02 13:41:47 -070040.light .ctrl-btns g.icon use {
41 fill: #fff;
Simon Hunt3695a622015-03-31 11:52:23 -070042}
Thomas Vachuska619c5382015-04-02 13:41:47 -070043.dark .ctrl-btns g.icon use {
Simon Hunt3695a622015-03-31 11:52:23 -070044 fill: #333;
45}
46
Thomas Vachuska619c5382015-04-02 13:41:47 -070047.light .ctrl-btns g.icon rect {
48 fill: #bbb;
Simon Hunt3695a622015-03-31 11:52:23 -070049}
Thomas Vachuska619c5382015-04-02 13:41:47 -070050.dark .ctrl-btns g.icon rect {
51 fill: #444;
Simon Hunt3695a622015-03-31 11:52:23 -070052}
53
Thomas Vachuska619c5382015-04-02 13:41:47 -070054/* Inactive */
55.light .ctrl-btns .disabled g.icon rect {
56 fill: #eee;
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070057}
Thomas Vachuska619c5382015-04-02 13:41:47 -070058.dark .ctrl-btns .disabled g.icon rect {
59 fill: #111;
60}
61