blob: d7e7ec3baeaaf1fce864fc2bc3622864ebe85ffe [file] [log] [blame]
/*
* Copyright 2014,2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
ONOS GUI -- Topology View -- CSS file
*/
/* --- Topo Map --- */
.light #ov-topo svg {
background-color: #fff;
/* For Debugging the placement of the SVG layer... */
/*border: 1px solid red;*/
}
.dark #ov-topo svg {
background-color: #2b2b2b;
}
#ov-topo svg #topo-map {
stroke-width: 2px;
fill: transparent;
}
.light #ov-topo svg #topo-map {
/*stroke: #eee;*/
stroke: #88b;
}
.dark #ov-topo svg #topo-map {
stroke: #444;
}
/* --- Topo Panels --- */
#topo-p-summary {
/* Base css from panel.css */
}
#topo-p-summary svg {
display: inline-block;
width: 42px;
height: 42px;
}
#topo-p-summary h2 {
position: absolute;
margin: 0 4px;
top: 20px;
left: 50px;
}
.light #topo-p-summary h2 {
color: black;
}
.dark #topo-p-summary h2 {
color: #ddd;
}
#topo-p-summary h3 {
margin: 0 4px;
top: 20px;
left: 50px;
}
.light #topo-p-summary h3 {
color: black;
}
.dark #topo-p-summary h3 {
color: #ddd;
}
#topo-p-summary p, table {
margin: 4px 4px;
}
#topo-p-summary td.label {
font-style: italic;
padding-right: 12px;
/* works for both light and dark themes ... */
color: #777;
}
#topo-p-summary td.value {
}
#topo-p-summary hr {
height: 1px;
border: 0;
}
.light #topo-p-summary hr {
background-color: #ccc;
color: #ccc;
}
.dark #topo-p-summary hr {
background-color: #888;
color: #888;
}