Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 #resetDialog { | |
| 6 max-width: 500px; | |
| 7 min-width: 300px; | |
| 8 } | |
| 9 | |
| 10 #reset { | |
| 11 -webkit-margin-start: 10px; | |
| 12 -webkit-padding-end: 15px; | |
| 13 -webkit-padding-start: 15px; | |
| 14 background-color: rgb(120, 120, 120); | |
| 15 color: white; | |
| 16 } | |
| 17 | |
| 18 #learnMore { | |
| 19 margin: auto; | |
| 20 } | |
|
Dan Beam
2015/10/29 22:02:00
^ why is this necessary?
dpapad
2015/10/30 17:45:59
This achieves aligning the text "LEARN MORE" with
dpapad
2015/10/30 18:30:23
Removed as discussed, and using "layout center" on
| |
| 21 | |
| 22 #learnMore, | |
| 23 #cancel { | |
| 24 color: rgb(94, 94, 94); | |
| 25 } | |
| 26 | |
| 27 | |
| 28 #explanation { | |
| 29 margin: 10px 0; | |
| 30 } | |
| 31 | |
| 32 #buttonContainer { | |
| 33 margin-bottom: 15px; | |
| 34 } | |
| 35 | |
| 36 #sendSettings { | |
| 37 background-color: rgb(236, 236, 236); | |
| 38 margin: 0; | |
| 39 padding: 20px; | |
| 40 } | |
| OLD | NEW |