Sean Condon | 83fc39f | 2018-04-19 18:56:13 +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 | 83fc39f | 2018-04-19 18:56:13 +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 -- Icon Service (layout) -- CSS file |
| 19 | */ |
| 20 | |
| 21 | svg#IconLibDefs { |
| 22 | display: none; |
| 23 | } |
| 24 | |
| 25 | svg .svgIcon { |
| 26 | fill-rule: evenodd; |
| 27 | } |
| 28 | |
| 29 | svg.embeddedIcon g.icon { |
| 30 | fill: none; |
| 31 | } |
| 32 | |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 33 | .ctrl-btns div svg.embeddedIcon g.icon use { |
| 34 | fill: #e0dfd6; |
Sean Condon | 83fc39f | 2018-04-19 18:56:13 +0100 | [diff] [blame] | 35 | } |
| 36 | |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 37 | .ctrl-btns div.active svg.embeddedIcon g.icon use { |
| 38 | fill: #939598; |
| 39 | } |
| 40 | .ctrl-btns div.active:hover svg.embeddedIcon g.icon use { |
| 41 | fill: #ce5b58; |
Sean Condon | 83fc39f | 2018-04-19 18:56:13 +0100 | [diff] [blame] | 42 | } |
| 43 | |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 44 | .ctrl-btns div.current-view svg.embeddedIcon g.icon rect { |
| 45 | fill: #518ecc; |
Sean Condon | 83fc39f | 2018-04-19 18:56:13 +0100 | [diff] [blame] | 46 | } |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 47 | .ctrl-btns div.current-view svg.embeddedIcon g.icon use { |
| 48 | fill: white; |
| 49 | } |
| 50 | |
| 51 | svg.embeddedIcon .icon.active .glyph { |
| 52 | fill: #04bf34; |
| 53 | } |
| 54 | |
| 55 | svg.embeddedIcon .icon.inactive .glyph { |
| 56 | fill: #c0242b; |
| 57 | } |
| 58 | |
| 59 | svg.embeddedIcon .icon.active-rect .glyph { |
| 60 | fill:#939598; |
| 61 | } |
| 62 | |
| 63 | svg.embeddedIcon .icon.active-sort .glyph { |
| 64 | fill:#333333; |
| 65 | } |
| 66 | |
| 67 | svg.embeddedIcon g.icon.active-rect:hover use { |
| 68 | fill: #ce5b58; |
| 69 | } |
| 70 | |
| 71 | svg.embeddedIcon g.icon.active-type .glyph { |
| 72 | fill: #3c3a3a; |
| 73 | } |
| 74 | |
| 75 | svg.embeddedIcon g.icon.active-close:hover use { |
| 76 | fill: #ce5b58; |
| 77 | } |
| 78 | |
| 79 | svg.embeddedIcon g.icon.active-close .glyph { |
| 80 | fill: #333333; |
| 81 | } |
| 82 | |
| 83 | svg.embeddedIcon g.icon.details-icon .glyph { |
| 84 | fill: #0071bd;; |
| 85 | } |
| 86 | |
| 87 | |