blob: e6ef7b6259ae077b6c62679fcfdff35223f80788 [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;
Sean Condonbed2e032019-04-17 22:22:49 +010038 width: 100%;
Sean Condonb2c483c2019-01-16 20:28:55 +000039}
40
41#quickhelp div.help p {
42 text-align: center;
43 color: white;
44 font-weight: bold;
45}
46
47#quickhelp td.key {
48 color: #add;
49 padding-left: 8px;
50 padding-right: 4px;
51}
52
53#quickhelp td.desc {
54 color: white;
55}