blob: 13f1847a21c9bc12da1dd69b6450e4f24697b58a [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
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 -- Applications View (theme) -- CSS file
19 */
20
21/* -- Drag-n-Drop OAR files -- */
22div.dropping {
23 border: solid 3px #0095d6;
24}
25
Sean Condon2aa86092018-07-16 09:04:05 +010026#ov-app .tabular-header {
27 text-align: left;
28}
29#ov-app div.summary-list .table-header td {
30 font-weight: bold;
31 font-variant: small-caps;
32 text-transform: uppercase;
33 font-size: 10pt;
34 padding-top: 8px;
35 padding-bottom: 8px;
36 letter-spacing: 0.02em;
37 cursor: pointer;
38 background-color: #e5e5e6;
39 color: #3c3a3a;
Sean Condon83fc39f2018-04-19 18:56:13 +010040}
41
Sean Condon2aa86092018-07-16 09:04:05 +010042#ov-app div.summary-list .table-body {
43 overflow:scroll;
44 max-height:70vh;
Sean Condon83fc39f2018-04-19 18:56:13 +010045}
Sean Condon2aa86092018-07-16 09:04:05 +010046#ov-app h2 {
47 display: inline-block;
48}
49
50#ov-app, div.ctrl-btns {
51}
52
53#ov-app th, td {
54 text-align: left;
55 padding: 8px;
56}
57
Sean Condon83fc39f2018-04-19 18:56:13 +010058
59/* ========== DARK Theme ========== */
60
61
62.dark .app-title {
63 color: #dddddd;
64}