blob: bdd387a5ad32b3f59d2278dd4fc5efccff97f364 [file] [log] [blame]
Simon Hunt639dc662015-02-18 14:19:20 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Simon Hunt639dc662015-02-18 14:19:20 -08003 *
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 -- Quick Help Service -- CSS file
19 */
20
21#quickhelp {
22 z-index: 1300;
23}
24
25#quickhelp svg {
26 position: absolute;
27 top: 180px;
28 opacity: 1;
29}
30
31#quickhelp svg g.help rect {
32 fill: black;
33 opacity: 0.7;
34}
35
36#quickhelp svg text.title {
37 font-size: 10pt;
38 font-style: italic;
39 text-anchor: middle;
40 fill: #999;
41}
42
43#quickhelp svg g.keyItem {
44 fill: white;
45}
46
47#quickhelp svg g line.qhrowsep {
48 stroke: #888;
49 stroke-dasharray: 2 2;
50}
51
52#quickhelp svg text {
53 font-size: 7pt;
54 alignment-baseline: middle;
55}
56
57#quickhelp svg text.key {
58 fill: #add;
59}
60
61#quickhelp svg text.desc {
62 fill: #ddd;
63}
64