blob: 5813f302e2e2bd4cfd4588eb291fe2f0963282a9 [file] [log] [blame]
Sean Condon28ecc5f2018-06-25 12:50:16 +01001/*
2 * Copyright 2015-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 (layout) -- CSS file
19 */
20
21#ov-app h2 {
22 display: inline-block;
23}
24
25#ov-app div.ctrl-btns {
26 width: 290px;
27}
28
29/* -- Drag-n-Drop oar file upload -- */
30#ov-app form#inputFileForm,
31#ov-app input#uploadFile {
32 display: none;
33}
34
35.dropping {
36
37}
38
39/* -- Confirmation Dialog -- */
40#app-dialog {
41 top: 140px;
42 padding: 12px;
43}
44
45#app-dialog p {
46 font-size: 12pt;
47}
48
49#app-dialog p.strong {
50 font-weight: bold;
51 padding: 8px;
52 text-align: center;
53}