OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 #extension-options-overlay { | 5 #extension-options-overlay { |
6 overflow: hidden; | 6 overflow: hidden; |
7 } | 7 } |
| 8 |
| 9 #extension-options-overlay .close-button { |
| 10 z-index: 2; |
| 11 } |
| 12 |
| 13 #extension-options-overlay-header { |
| 14 align-items: center; |
| 15 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26); |
| 16 display: flex; |
| 17 position: relative; |
| 18 z-index: 1; |
| 19 } |
| 20 |
| 21 #extension-options-overlay-header h1 { |
| 22 padding-left: 8px; |
| 23 } |
| 24 |
| 25 #extension-options-overlay-icon { |
| 26 display: inline-block; |
| 27 float: left; |
| 28 padding-bottom: 8px; |
| 29 padding-left: 8px; |
| 30 padding-top: 8px; |
| 31 } |
| 32 |
| 33 #extension-options-overlay-icon { |
| 34 display: block; |
| 35 height: 32px; |
| 36 width: 32px; |
| 37 } |
| 38 |
| 39 #extension-options-overlay-title { |
| 40 display: inline-block; |
| 41 vertical-align: top; |
| 42 } |
OLD | NEW |