blob: d9e51a10155d4d9c54f5d8748ce44d6c480267d8 [file] [log] [blame]
Brian O'Connora468e902015-03-18 16:43:49 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Brian O'Connora468e902015-03-18 16:43:49 -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 -- Intent Perf View -- CSS file
19 */
20
Thomas Vachuska95aadff2015-03-26 11:45:41 -070021svg {
22 font: 12px sans-serif;
Brian O'Connora468e902015-03-18 16:43:49 -070023}
24
Thomas Vachuskab967ebf2015-03-28 15:19:30 -070025.line,.lineTotal {
Thomas Vachuska95aadff2015-03-26 11:45:41 -070026 fill: none;
Thomas Vachuska95aadff2015-03-26 11:45:41 -070027 stroke-width: 2px;
Brian O'Connora468e902015-03-18 16:43:49 -070028}
29
Brian O'Connora468e902015-03-18 16:43:49 -070030.axis path,
31.axis line {
32 fill: none;
Thomas Vachuska95aadff2015-03-26 11:45:41 -070033 stroke-width: 2px;
Brian O'Connora468e902015-03-18 16:43:49 -070034 shape-rendering: crispEdges;
35}
36
Thomas Vachuska95aadff2015-03-26 11:45:41 -070037.light .axis path,
38.light .axis line,
Thomas Vachuskab967ebf2015-03-28 15:19:30 -070039.light .lineTotal {
40 stroke: #333;
41}
42
Thomas Vachuska95aadff2015-03-26 11:45:41 -070043.light .axis text {
Thomas Vachuskab967ebf2015-03-28 15:19:30 -070044 fill: #333;
Brian O'Connora468e902015-03-18 16:43:49 -070045}
Thomas Vachuska95aadff2015-03-26 11:45:41 -070046
47.dark .axis path,
48.dark .axis line,
Thomas Vachuskab967ebf2015-03-28 15:19:30 -070049.dark .lineTotal {
Thomas Vachuska95aadff2015-03-26 11:45:41 -070050 stroke: #eee;
51}
52
Thomas Vachuskab967ebf2015-03-28 15:19:30 -070053.dark .axis text {
54 fill: #eee;
55}