Simon Hunt | 988c6fc | 2014-11-20 17:43:03 -0800 | [diff] [blame] | 1 | /* |
2 | * Copyright 2014 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 | /* | ||||
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 18 | ONOS GUI -- Quick Help layer -- CSS file |
Simon Hunt | 988c6fc | 2014-11-20 17:43:03 -0800 | [diff] [blame] | 19 | */ |
20 | |||||
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 21 | #quickhelp { |
Simon Hunt | 7b403bc | 2014-11-22 19:01:00 -0800 | [diff] [blame] | 22 | z-index: 1300; |
23 | } | ||||
24 | |||||
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 25 | #quickhelp svg { |
Simon Hunt | 988c6fc | 2014-11-20 17:43:03 -0800 | [diff] [blame] | 26 | position: absolute; |
Simon Hunt | a1a00c2 | 2014-12-04 16:10:40 -0800 | [diff] [blame] | 27 | top: 180px; |
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 28 | opacity: 1; |
29 | } | ||||
30 | |||||
31 | #quickhelp svg g.help rect { | ||||
32 | fill: black; | ||||
Simon Hunt | 56ef0fe | 2014-11-21 08:24:43 -0800 | [diff] [blame] | 33 | opacity: 0.7; |
34 | } | ||||
35 | |||||
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 36 | #quickhelp svg text.title { |
Simon Hunt | a1a00c2 | 2014-12-04 16:10:40 -0800 | [diff] [blame] | 37 | font-size: 10pt; |
Simon Hunt | 988c6fc | 2014-11-20 17:43:03 -0800 | [diff] [blame] | 38 | font-style: italic; |
Simon Hunt | 988c6fc | 2014-11-20 17:43:03 -0800 | [diff] [blame] | 39 | text-anchor: middle; |
Thomas Vachuska | 47635c6 | 2014-11-22 01:21:36 -0800 | [diff] [blame] | 40 | fill: #999; |
Simon Hunt | 56ef0fe | 2014-11-21 08:24:43 -0800 | [diff] [blame] | 41 | } |
42 | |||||
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 43 | #quickhelp svg g.keyItem { |
Simon Hunt | 56ef0fe | 2014-11-21 08:24:43 -0800 | [diff] [blame] | 44 | fill: white; |
45 | } | ||||
46 | |||||
Simon Hunt | a1a00c2 | 2014-12-04 16:10:40 -0800 | [diff] [blame] | 47 | #quickhelp svg g line.qhrowsep { |
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 48 | stroke: #888; |
49 | stroke-dasharray: 2 2; | ||||
Simon Hunt | 56ef0fe | 2014-11-21 08:24:43 -0800 | [diff] [blame] | 50 | } |
51 | |||||
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 52 | #quickhelp svg text { |
Simon Hunt | a1a00c2 | 2014-12-04 16:10:40 -0800 | [diff] [blame] | 53 | font-size: 7pt; |
Simon Hunt | 56ef0fe | 2014-11-21 08:24:43 -0800 | [diff] [blame] | 54 | alignment-baseline: middle; |
55 | } | ||||
56 | |||||
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 57 | #quickhelp svg text.key { |
Thomas Vachuska | 47635c6 | 2014-11-22 01:21:36 -0800 | [diff] [blame] | 58 | fill: #add; |
Simon Hunt | 56ef0fe | 2014-11-21 08:24:43 -0800 | [diff] [blame] | 59 | } |
60 | |||||
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 61 | #quickhelp svg text.desc { |
Simon Hunt | 5cef906 | 2014-11-24 15:24:35 -0800 | [diff] [blame] | 62 | fill: #ddd; |
Simon Hunt | 988c6fc | 2014-11-20 17:43:03 -0800 | [diff] [blame] | 63 | } |
64 |