blob: 9005b0c03debd6c1bb7a00206c0eb1dfac0ab2d3 [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 -- Device View (theme) -- CSS file
19 */
20
Simon Hunt986b92f2016-06-03 15:46:59 -070021
22.light .dev-icon svg.embeddedIcon .icon .glyph {
23 fill: #0071bd;
Simon Hunt58894c82016-05-24 15:09:02 -070024}
Simon Hunt986b92f2016-06-03 15:46:59 -070025.dark .dev-icon svg.embeddedIcon .icon .glyph {
26 /* TODO: dark theme */
27 fill: #0071bd;
Simon Hunt58894c82016-05-24 15:09:02 -070028}
29
Simon Hunt986b92f2016-06-03 15:46:59 -070030.light #device-details-panel .editable {
31 border-bottom: 1px dashed #ca504b;
Simon Hunt58894c82016-05-24 15:09:02 -070032}
33
Simon Hunt58894c82016-05-24 15:09:02 -070034
35.light #device-details-panel .bottom th {
Simon Hunt986b92f2016-06-03 15:46:59 -070036 background-color: #e5e5e6;
Simon Hunt58894c82016-05-24 15:09:02 -070037}
38.dark #device-details-panel .bottom th {
Simon Hunt986b92f2016-06-03 15:46:59 -070039 /* TODO: dark theme */
40 background-color: #e5e5e6;
Simon Hunt58894c82016-05-24 15:09:02 -070041}
42
43.light #device-details-panel .bottom tr:nth-child(odd) {
Simon Hunt986b92f2016-06-03 15:46:59 -070044 background-color: #fbfbfb;
Simon Hunt58894c82016-05-24 15:09:02 -070045}
46.light #device-details-panel .bottom tr:nth-child(even) {
Simon Hunt986b92f2016-06-03 15:46:59 -070047 background-color: #f4f4f4;
Simon Hunt58894c82016-05-24 15:09:02 -070048}
49.dark #device-details-panel .bottom tr:nth-child(odd) {
Simon Hunt986b92f2016-06-03 15:46:59 -070050 /* TODO: dark theme */
51 background-color: #fbfbfb;
Simon Hunt58894c82016-05-24 15:09:02 -070052}
53.dark #device-details-panel .bottom tr:nth-child(even) {
Simon Hunt986b92f2016-06-03 15:46:59 -070054 /* TODO: dark theme */
55 background-color: #f4f4f4;
Simon Hunt58894c82016-05-24 15:09:02 -070056}