blob: ce9af3a1219325886cc2e16a9182e817c7895107 [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +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/*
Sean Condon28ecc5f2018-06-25 12:50:16 +010018 ONOS GUI -- Applications Details Panel (layout) -- CSS file
Sean Condon83fc39f2018-04-19 18:56:13 +010019 */
Sean Condon83fc39f2018-04-19 18:56:13 +010020#application-details-panel.floatpanel {
21 z-index: 0;
22}
23
24#application-details-panel.floatpanel a {
25 font-weight: bold;
26}
27
28#application-details-panel .container {
29 padding: 0 30px;
30 overflow-y: scroll;
31}
32
33#application-details-panel .close-btn {
34 position: absolute;
35 right: 26px;
36 top: 26px;
37 cursor: pointer;
38}
39
40#application-details-panel .app-icon {
41 display: inline-block;
42 padding: 0 6px 0 0;
43 vertical-align: middle;
44}
45
46#application-details-panel h2 {
47 display: inline-block;
48 margin: 12px 0 6px 0;
49 font-size: 11pt;
50 font-variant: small-caps;
51 text-transform: uppercase;
52}
53
54#application-details-panel .top .app-title {
55 width: 90%;
56 height: 62px;
57 font-size: 16pt;
58 font-weight: lighter;
59 overflow: hidden;
60 white-space: nowrap;
61 padding: 0 12px 0 2px;
62 margin-top: 19px;
63 margin-bottom: 5px;
64}
65
66#application-details-panel .top div.left {
67 float: left;
68 padding: 12px 12px 0 3px;
69}
70
71#application-details-panel .top div.right {
72 display: inline-block;
73 overflow: hidden;
74 width: 320px;
75}
76
77#application-details-panel td.label,
78#application-details-panel .app-url i {
79 font-weight: bold;
80 text-align: right;
81 font-size: 10pt;
82 padding-right: 6px;
83}
84
85#application-details-panel td.value-bold {
86 font-weight: bold;
87}
88
89#application-details-panel .app-url {
90 padding: 10px 6px 6px;
91 overflow: hidden;
92 clear: left;
93}
94
95#application-details-panel hr {
96 width: 100%;
97 margin: 12px auto;
98}
99
100#application-details-panel .middle {
101 padding: 7px 0 7px 6px;
102}
103
104#application-details-panel .bottom {
105 padding: 0px;
Sean Condon2aa86092018-07-16 09:04:05 +0100106 overflow: auto;
107 height: 200px;
Sean Condon83fc39f2018-04-19 18:56:13 +0100108}
109
110#application-details-panel .bottom table {
111 border-spacing: 0;
112 width: 100%;
113}
114
115#application-details-panel .bottom td {
116 margin-left: -6px;
117 padding: 6px 6px;
118 text-align: left;
119}