blob: 45cc07ca1fc01b26aa8dafc55ed71fd6e9045d97 [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
Simon Hunt0991b342016-06-08 13:18:16 -070021/* -- Drag-n-Drop OAR files -- */
22.light div.dropping {
23 border: solid 3px #0095d6;
Simon Hunt58894c82016-05-24 15:09:02 -070024}
25
Simon Hunt0991b342016-06-08 13:18:16 -070026.dark div.dropping {
27 /* TODO: dark theme */
28 border: solid 3px #0095d6;
29}
30
31/* -- confirmation dialog -- */
Simon Hunt58894c82016-05-24 15:09:02 -070032.light #app-dialog p.strong {
Simon Hunt0991b342016-06-08 13:18:16 -070033 color: white;
34 background-color: #ce5b58;
Simon Hunt58894c82016-05-24 15:09:02 -070035}
36
Simon Hunt0991b342016-06-08 13:18:16 -070037.dark #app-dialog p.strong {
38 /* TODO: dark theme */
39 color: white;
40 background-color: #ce5b58;
41}
Simon Hunt58894c82016-05-24 15:09:02 -070042
43.light #app-dialog.floatpanel.dialog {
44 background-color: #fff;
45}
Simon Hunt0991b342016-06-08 13:18:16 -070046
Simon Hunt58894c82016-05-24 15:09:02 -070047.dark #app-dialog.floatpanel.dialog {
Simon Hunt0991b342016-06-08 13:18:16 -070048 /* TODO: dark theme */
49 background-color: #fff;
Simon Hunt58894c82016-05-24 15:09:02 -070050}
51
Simon Hunt0991b342016-06-08 13:18:16 -070052/* -- details panel -- */
Simon Hunt58894c82016-05-24 15:09:02 -070053.light #application-details-panel.floatpanel {
Simon Hunt811d8572016-06-02 13:40:14 -070054 background-color: white;
Simon Hunt58894c82016-05-24 15:09:02 -070055}
Simon Hunt0991b342016-06-08 13:18:16 -070056
Simon Hunt58894c82016-05-24 15:09:02 -070057.dark #application-details-panel.floatpanel {
Simon Hunt811d8572016-06-02 13:40:14 -070058 /* TODO: dark theme */
59 background-color: white;
Simon Hunt58894c82016-05-24 15:09:02 -070060}
61
Simon Hunt58894c82016-05-24 15:09:02 -070062.light #application-details-panel hr {
Simon Hunt811d8572016-06-02 13:40:14 -070063 border: 1px solid #c7c7c0;
Simon Hunt58894c82016-05-24 15:09:02 -070064}
Simon Hunt0991b342016-06-08 13:18:16 -070065
Simon Hunt58894c82016-05-24 15:09:02 -070066.dark #application-details-panel hr {
Simon Hunt811d8572016-06-02 13:40:14 -070067 /* TODO: dark theme */
68 border: 1px solid #c7c7c0;
Simon Hunt58894c82016-05-24 15:09:02 -070069}
70
71.light #application-details-panel .bottom tr:nth-child(odd) {
Simon Hunt811d8572016-06-02 13:40:14 -070072 background-color: #f4f4f4;
Simon Hunt58894c82016-05-24 15:09:02 -070073}
Simon Hunt0991b342016-06-08 13:18:16 -070074
Simon Hunt58894c82016-05-24 15:09:02 -070075.light #application-details-panel .bottom tr:nth-child(even) {
Simon Hunt811d8572016-06-02 13:40:14 -070076 background-color: #fbfbfb;
Simon Hunt58894c82016-05-24 15:09:02 -070077}
Simon Hunt811d8572016-06-02 13:40:14 -070078
Simon Hunt58894c82016-05-24 15:09:02 -070079.dark #application-details-panel .bottom tr:nth-child(odd) {
Simon Hunt811d8572016-06-02 13:40:14 -070080 /* TODO: dark theme */
81 background-color: #f4f4f4;
Simon Hunt58894c82016-05-24 15:09:02 -070082}
Simon Hunt0991b342016-06-08 13:18:16 -070083
Simon Hunt58894c82016-05-24 15:09:02 -070084.dark #application-details-panel .bottom tr:nth-child(even) {
Simon Hunt811d8572016-06-02 13:40:14 -070085 /* TODO: dark theme */
86 background-color: #fbfbfb;
Simon Hunt58894c82016-05-24 15:09:02 -070087}
88