Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 1 | /* |
Sean Condon | 5ca0026 | 2018-09-06 17:55:25 +0100 | [diff] [blame] | 2 | * Copyright 2018-present Open Networking Foundation |
Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 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 -- Panel Service (theme) -- CSS file |
| 19 | */ |
| 20 | |
| 21 | .light .floatpanel { |
| 22 | background-color: white; |
| 23 | color: #3c3a3a; |
| 24 | border: 1px solid #c7c7c0; |
| 25 | } |
| 26 | |
| 27 | .light .floatpanel hr { |
| 28 | border: 1px solid #c7c7c0; |
| 29 | } |
| 30 | |
| 31 | .light .floatpanel .bottom tr:nth-child(odd) { |
| 32 | background-color: #f4f4f4; |
| 33 | } |
| 34 | |
| 35 | .light .floatpanel .bottom tr:nth-child(even) { |
| 36 | background-color: #fbfbfb; |
| 37 | } |
| 38 | |
| 39 | |
| 40 | /* ========== DARK Theme ========== */ |
| 41 | |
| 42 | .dark .floatpanel { |
| 43 | background-color: #282528; |
| 44 | color: #888c8c; |
| 45 | border: 1px solid #364144; |
| 46 | } |
| 47 | |
| 48 | .dark .floatpanel th { |
| 49 | background-color: #242424; |
| 50 | } |
| 51 | |
| 52 | .dark .floatpanel h2 { |
| 53 | color: #dddddd; |
| 54 | } |
| 55 | |
| 56 | .dark .floatpanel hr { |
| 57 | border: 1px solid #30303a; |
| 58 | } |
| 59 | |
| 60 | .dark .floatpanel .bottom tr:nth-child(odd) { |
| 61 | background-color: #333333; |
| 62 | } |
| 63 | |
| 64 | .dark .floatpanel .bottom tr:nth-child(even) { |
| 65 | background-color: #3a3a3a; |
| 66 | } |