blob: 26c164376b808dc7df47c0d1193b1353cdc9c310 [file] [log] [blame]
Sean Condonb2c483c2019-01-16 20:28:55 +00001/*
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;
28 position: relative;
29}
30
31#quickhelp div.help {
32 background: black;
33 opacity: 0.8;
34}
35
36#quickhelp div.help table {
37 vertical-align: top;
38}
39
40#quickhelp div.help p {
41 text-align: center;
42 color: white;
43 font-weight: bold;
44}
45
46#quickhelp td.key {
47 color: #add;
48 padding-left: 8px;
49 padding-right: 4px;
50}
51
52#quickhelp td.desc {
53 color: white;
54}