Sean Condon | b2c483c | 2019-01-16 20:28:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016-present Open Networking Foundation |
| 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 -- Quickhelp Panel -- CSS file |
| 19 | */ |
| 20 | |
| 21 | /* |
| 22 | ONOS GUI -- Quick Help Service (layout) -- CSS file |
| 23 | */ |
| 24 | |
| 25 | #quickhelp { |
| 26 | top: 100px; |
| 27 | z-index: 5000; |
Sean Condon | b0a196a | 2019-04-19 09:50:44 +0100 | [diff] [blame] | 28 | position: absolute; |
| 29 | width: 100%; |
Sean Condon | b2c483c | 2019-01-16 20:28:55 +0000 | [diff] [blame] | 30 | } |
| 31 | |
| 32 | #quickhelp div.help { |
| 33 | background: black; |
| 34 | opacity: 0.8; |
| 35 | } |
| 36 | |
| 37 | #quickhelp div.help table { |
| 38 | vertical-align: top; |
Sean Condon | bed2e03 | 2019-04-17 22:22:49 +0100 | [diff] [blame] | 39 | width: 100%; |
Sean Condon | b2c483c | 2019-01-16 20:28:55 +0000 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | #quickhelp div.help p { |
| 43 | text-align: center; |
| 44 | color: white; |
| 45 | font-weight: bold; |
| 46 | } |
| 47 | |
| 48 | #quickhelp td.key { |
| 49 | color: #add; |
| 50 | padding-left: 8px; |
| 51 | padding-right: 4px; |
| 52 | } |
| 53 | |
| 54 | #quickhelp td.desc { |
| 55 | color: white; |
| 56 | } |