blob: cf9f25d9ea6ed7a5d5990bbed7d66aeed83733d1 [file] [log] [blame]
Boyoung Jeong1cca5e82018-08-01 21:00:08 +09001/*
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 -- OpenstackTelemetry -- CSS file
19 */
20
boyoung2a8549d22018-11-23 20:42:37 +090021
22/* --- Topo Telemetry Panel --- */
23#topo-p-telemetry {
24 padding: 16px;
25 top: 190px;
26 left: 20px;
27}
28
29.topo-p td input.number-input {
30 width: 50px;
31}
32
33.topo-p div.footer tbody {
34 float: right;
35}
36
37.topo-p div.footer tbody input.button-input {
38 background-color: #5b99d2;
39 border: 0;
40 border-radius: 3px;
41 color: #fff;
42 height: 25px;
43 width: 60px;
44 padding: 1px 0 0 0;
45}
46
47#telemetry-dialog {
48 padding: 16px;
49 top: 190px;
50 left: 20px;
51}
52
53
54/* --- Chart View --- */
Boyoung Jeong1cca5e82018-08-01 21:00:08 +090055#ov-openstacktelemetry {
56 padding: 20px;
57 position: relative;
58}
59.light #ov-openstacktelemetry {
60 color: navy;
61}
62.dark #ov-openstacktelemetry {
63 color: #88f;
64}
65
66#ov-openstacktelemetry .button-panel {
67 margin: 10px;
68 width: 200px;
69}
70
71.light #ov-openstacktelemetry .button-panel {
72 background-color: #ccf;
73}
74.dark #ov-openstacktelemetry .button-panel {
75 background-color: #444;
76}
77
78#ov-openstacktelemetry #chart-loader {
79 position: absolute;
80 width: 200px;
81 height: 50px;
82 margin-left: -100px;
83 margin-top: -25px;
84 z-index: 900;
85 top: 50%;
86 text-align: center;
87 left: 50%;
88 font-size: 25px;
89 font-weight: bold;
90 color: #ccc;
91}