OLD | NEW |
1 /* | 1 /* |
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .details-view { | 7 .details-view { |
8 -webkit-padding-end: 10px; | 8 -webkit-padding-end: 10px; |
9 } | 9 } |
10 | 10 |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 .extension-inspect-left-column { | 214 .extension-inspect-left-column { |
215 vertical-align: text-top; | 215 vertical-align: text-top; |
216 } | 216 } |
217 | 217 |
218 /* Dev */ | 218 /* Dev */ |
219 | 219 |
220 .dev-open { | 220 .dev-open { |
221 border-bottom: 1px solid rgb(205, 205, 205); | 221 border-bottom: 1px solid rgb(205, 205, 205); |
222 height: 32px; | 222 height: 32px; |
223 padding-bottom: 7px; | 223 padding-bottom: 7px; |
224 padding-top: 4px; | 224 padding-top: 13px; |
225 -webkit-padding-start: 4px; | 225 -webkit-padding-start: 4px; |
226 -webkit-padding-end: 3px; | 226 -webkit-padding-end: 3px; |
227 -webkit-transition: padding 300ms, height 300ms, opacity 700ms; | 227 -webkit-transition: padding 300ms, height 300ms, opacity 700ms; |
228 } | 228 } |
229 .dev-closed { | 229 .dev-closed { |
230 height: 0; | 230 height: 0; |
231 opacity: 0; | 231 opacity: 0; |
| 232 padding-top: 9px; |
232 -webkit-padding-start: 4px; | 233 -webkit-padding-start: 4px; |
233 -webkit-padding-end: 3px; | 234 -webkit-padding-end: 3px; |
234 -webkit-transition: padding 300ms, height 700ms, opacity 200ms; | 235 -webkit-transition: padding 300ms, height 700ms, opacity 200ms; |
235 } | 236 } |
236 | 237 |
237 .dev-button-visible { | 238 .dev-button-visible { |
238 display: inherit; | 239 display: inherit; |
239 opacity: 1; | 240 opacity: 1; |
240 -webkit-transition: opacity 200ms; | 241 -webkit-transition: opacity 200ms; |
241 } | 242 } |
242 | 243 |
243 .dev-button-hidden { | 244 .dev-button-hidden { |
244 display: none; | 245 display: none; |
245 } | 246 } |
246 | 247 |
247 #suggest-gallery { | 248 #suggest-gallery { |
248 -webkit-padding-start: 10px; | 249 -webkit-padding-start: 10px; |
249 } | 250 } |
250 | 251 |
251 #dev-toggle { | 252 #dev-toggle { |
252 display: block; | 253 display: block; |
253 float: right; | 254 text-align: end; |
254 margin-top: -28px; | 255 margin-top: -28px; |
255 -webkit-margin-end: 8px; | 256 -webkit-margin-end: 8px; |
256 } | 257 } |
257 | 258 |
258 #get-more-extensions-container { | 259 #get-more-extensions-container { |
259 display: -webkit-box; | 260 display: -webkit-box; |
260 } | 261 } |
261 | 262 |
262 #get-more-extensions { | 263 #get-more-extensions { |
263 padding-top: 5px; | 264 padding-top: 5px; |
264 font-size: 15px; | 265 font-size: 15px; |
265 -webkit-padding-start: 10px; | 266 -webkit-padding-start: 10px; |
266 } | 267 } |
267 | 268 |
268 /* Support full keyboard accessibility without making things ugly | 269 /* Support full keyboard accessibility without making things ugly |
269 for users who click, by hiding some focus outlines when the user | 270 for users who click, by hiding some focus outlines when the user |
270 clicks anywhere, but showing them when the user presses any key. */ | 271 clicks anywhere, but showing them when the user presses any key. */ |
271 body.hide-some-focus-outlines .extension-zippy-container { | 272 body.hide-some-focus-outlines .extension-zippy-container { |
272 outline: none; | 273 outline: none; |
273 } | 274 } |
OLD | NEW |