blob: e7e76b96b28a0338c239ae2c92080b58398912a7 [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 -- Applications View (theme) -- CSS file
19 */
20
21.light #app-dialog p {
22 color: darkred;
23}
24.dark #app-dialog p {
25 color: #c55;
26}
27
28.light #app-dialog p.strong {
29 color: red;
30 background-color: #ff0;
31}
32.dark #app-dialog p.strong {
33 color: #c55;
34 background-color: #dd4;
35}
36
37
38.light #app-dialog.floatpanel.dialog {
39 background-color: #fff;
40}
41.dark #app-dialog.floatpanel.dialog {
42 background-color: #444;
43}
44
45.light #application-details-panel.floatpanel {
46 background-color: rgb(229, 234, 237);
47}
48.dark #application-details-panel.floatpanel {
49 background-color: #3A4042;
50}
51
52.light .close-btn svg.embeddedIcon .icon.plus .glyph {
53 fill: #aaa;
54}
55.dark .close-btn svg.embeddedIcon .icon.plus .glyph {
56 fill: #ccc;
57}
58
59#application-details-panel td.label,
60#application-details-panel .app-url i {
61 /* works for both light and dark themes ... */
62 color: #777;
63}
64
65.light #application-details-panel hr {
66 opacity: .5;
67 border-color: #FFF;
68}
69.dark #application-details-panel hr {
70 border-color: #666;
71}
72
73.light #application-details-panel .bottom tr:nth-child(odd) {
74 background-color: #f9f9f9;
75}
76.light #application-details-panel .bottom tr:nth-child(even) {
77 background-color: #EBEDF2;
78}
79.dark #application-details-panel .bottom tr:nth-child(odd) {
80 background-color: #333;
81}
82.dark #application-details-panel .bottom tr:nth-child(even) {
83 background-color: #555;
84}
85
86.light div.dropping {
87 border: solid 3px deepskyblue;
88}
89
90.dark div.dropping {
91 border: solid 3px deepskyblue;
92}