ONOS-4359: continued work on theming UI
- adjusted app detail panel spacing of elements - fixed bug in topo.css Change-Id: I59c659dc1ccd908be2b3d7bcf2b5feeee6a2eabd
Showing
3 changed files
with
21 additions
and
11 deletions
... | @@ -49,7 +49,8 @@ | ... | @@ -49,7 +49,8 @@ |
49 | } | 49 | } |
50 | 50 | ||
51 | #application-details-panel .container { | 51 | #application-details-panel .container { |
52 | - padding: 0 10px; | 52 | + padding: 0 30px; |
53 | + overflow-y: scroll; | ||
53 | } | 54 | } |
54 | 55 | ||
55 | #application-details-panel .close-btn { | 56 | #application-details-panel .close-btn { |
... | @@ -67,12 +68,13 @@ | ... | @@ -67,12 +68,13 @@ |
67 | 68 | ||
68 | #application-details-panel h2 { | 69 | #application-details-panel h2 { |
69 | display: inline-block; | 70 | display: inline-block; |
70 | - margin: 8px 0; | 71 | + margin: 12px 0 6px 0; |
71 | font-size: 15pt; | 72 | font-size: 15pt; |
72 | font-variant: small-caps; | 73 | font-variant: small-caps; |
73 | text-transform: uppercase; | 74 | text-transform: uppercase; |
74 | } | 75 | } |
75 | 76 | ||
77 | + | ||
76 | #application-details-panel .top .app-title { | 78 | #application-details-panel .top .app-title { |
77 | width: 90%; | 79 | width: 90%; |
78 | height: 62px; | 80 | height: 62px; |
... | @@ -80,12 +82,14 @@ | ... | @@ -80,12 +82,14 @@ |
80 | font-weight: lighter; | 82 | font-weight: lighter; |
81 | overflow: hidden; | 83 | overflow: hidden; |
82 | white-space: nowrap; | 84 | white-space: nowrap; |
83 | - padding: 0 12px 0 0; | 85 | + padding: 0 12px 0 2px; |
86 | + margin-top: 19px; | ||
87 | + margin-bottom: 5px; | ||
84 | } | 88 | } |
85 | 89 | ||
86 | #application-details-panel .top div.left { | 90 | #application-details-panel .top div.left { |
87 | float: left; | 91 | float: left; |
88 | - padding: 12px 12px 0 4px; | 92 | + padding: 12px 12px 0 3px; |
89 | } | 93 | } |
90 | #application-details-panel .top div.right { | 94 | #application-details-panel .top div.right { |
91 | display: inline-block; | 95 | display: inline-block; |
... | @@ -112,11 +116,15 @@ | ... | @@ -112,11 +116,15 @@ |
112 | 116 | ||
113 | #application-details-panel hr { | 117 | #application-details-panel hr { |
114 | width: 100%; | 118 | width: 100%; |
115 | - margin: 6px auto; | 119 | + margin: 12px auto; |
116 | } | 120 | } |
117 | 121 | ||
118 | -#application-details-panel .container { | 122 | +#application-details-panel .middle { |
119 | - overflow-y: scroll; | 123 | + padding: 7px 0 7px 6px; |
124 | +} | ||
125 | + | ||
126 | +#application-details-panel .bottom { | ||
127 | + padding: 12px 0 0 6px; | ||
120 | } | 128 | } |
121 | 129 | ||
122 | #application-details-panel .bottom table { | 130 | #application-details-panel .bottom table { |
... | @@ -125,7 +133,8 @@ | ... | @@ -125,7 +133,8 @@ |
125 | } | 133 | } |
126 | 134 | ||
127 | #application-details-panel .bottom td { | 135 | #application-details-panel .bottom td { |
128 | - padding: 6px 12px; | 136 | + margin-left: -6px; |
137 | + padding: 6px 6px; | ||
129 | text-align: left; | 138 | text-align: left; |
130 | } | 139 | } |
131 | 140 | ... | ... |
... | @@ -38,8 +38,8 @@ | ... | @@ -38,8 +38,8 @@ |
38 | var INSTALLED = 'INSTALLED', | 38 | var INSTALLED = 'INSTALLED', |
39 | ACTIVE = 'ACTIVE', | 39 | ACTIVE = 'ACTIVE', |
40 | appMgmtReq = 'appManagementRequest', | 40 | appMgmtReq = 'appManagementRequest', |
41 | - topPdg = 70, | 41 | + topPdg = 60, |
42 | - panelWidth = 500, | 42 | + panelWidth = 540, |
43 | pName = 'application-details-panel', | 43 | pName = 'application-details-panel', |
44 | detailsReq = 'appDetailsRequest', | 44 | detailsReq = 'appDetailsRequest', |
45 | detailsResp = 'appDetailsResponse', | 45 | detailsResp = 'appDetailsResponse', | ... | ... |
... | @@ -102,7 +102,8 @@ html[data-platform='iPad'] #topo-p-detail { | ... | @@ -102,7 +102,8 @@ html[data-platform='iPad'] #topo-p-detail { |
102 | left: 50px; | 102 | left: 50px; |
103 | } | 103 | } |
104 | 104 | ||
105 | -.topo-p p, table { | 105 | +.topo-p p, |
106 | +.topo-p table { | ||
106 | padding: 4px; | 107 | padding: 4px; |
107 | margin: 0; | 108 | margin: 0; |
108 | } | 109 | } | ... | ... |
-
Please register or login to post a comment