blob: fb0995ab8607027e294107ed0f75c89129637c1a [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;
Sean Condonb0a196a2019-04-19 09:50:44 +010028 position: absolute;
29 width: 100%;
Sean Condonb2c483c2019-01-16 20:28:55 +000030}
31
32#quickhelp div.help {
33 background: black;
34 opacity: 0.8;
35}
36
37#quickhelp div.help table {
38 vertical-align: top;
Sean Condonbed2e032019-04-17 22:22:49 +010039 width: 100%;
Sean Condonb2c483c2019-01-16 20:28:55 +000040}
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}