Chromium Code Reviews| 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 0 10px 4px rgba(0, 0, 0, 0.1); | |
| 16 display: flex; | |
| 17 position: relative; | |
| 18 z-index: 1; | |
|
not at google - send to devlin
2014/08/22 22:31:00
Why the z-indices?
ericzeng
2014/08/23 00:14:49
I needed a z-index on this div so that I could lin
| |
| 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; | |
|
not at google - send to devlin
2014/08/22 22:31:00
Why float?
ericzeng
2014/08/23 00:14:49
Also needed it to align the heading and icon
| |
| 28 padding-bottom: 8px; | |
| 29 padding-left: 8px; | |
| 30 padding-top: 8px; | |
| 31 } | |
| 32 | |
| 33 #extension-options-overlay-icon img { | |
|
not at google - send to devlin
2014/08/22 22:31:00
Why meddling with the display everywhere?
ericzeng
2014/08/23 00:14:49
Alignment aarrrrgghhh
| |
| 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 } | |
|
not at google - send to devlin
2014/08/22 22:31:00
I should come around to your desk and we can verif
| |
| OLD | NEW |