blob: 23c38948cdb8b5157c6b163b81a3f15056d0b86f [file] [log] [blame]
Bri Prebilic Cole54d09382015-03-19 18:40:27 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Bri Prebilic Cole54d09382015-03-19 18:40:27 -07003 *
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 -- Tooltip Service -- CSS file
19 */
20
21#tooltip {
22 text-align: center;
23 font-size: 80%;
24 border: 1px solid;
25 padding: 5px;
26 position: absolute;
27 z-index: 5000;
28 display: none;
29 pointer-events: none;
30}
31
32/* colors subject to change */
33
34.light #tooltip {
35 background-color: #ddd;
36 color: #444;
37 border-color: #ccc;
38}
39
40.dark #tooltip {
41 background-color: #151515;
42 color: #B2B2B2;
43 border-color: #252525;
44}