blob: 30fe6d5ec6a39b84af4d09c45b492bfa95c3a514 [file] [log] [blame]
Simon Hunt58894c82016-05-24 15:09:02 -07001/*
2 * Copyright 2016-present 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 -- Flash Service (theme) -- CSS file
19 */
20
21.light #flash svg g.flashItem rect {
22 fill: #ccc;
23}
24.dark #flash svg g.flashItem rect {
25 fill: #555;
26}
27
28.light #flash svg g.flashItem text {
29 fill: #333;
30}
31.dark #flash svg g.flashItem text {
32 fill: #999;
33}
34
35.light .centered {
36 box-shadow: 2px 2px 24px 5px #888;
37 background-color: #eee;
38}
39/* TODO: confirm / fix dark*/
40.dark .centered {
41 box-shadow: 2px 2px 24px 5px #888;
42 background-color: #eee;
43}