Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 body { | |
| 6 overflow: hidden; /* hide scrollbars for accurate size calculation */ | |
|
Dan Beam
2014/04/23 17:51:45
nit: 2 \s between ";" and "/*", capitalize, end wi
michaelpg
2014/04/24 01:32:23
Done.
| |
| 7 padding: 8px 20px; | |
| 8 } | |
| 9 | |
| 10 h2 { | |
| 11 margin-bottom: 20px; | |
| 12 } | |
| 13 | |
| 14 .button-strip { | |
| 15 display: -webkit-flex; | |
| 16 justify-content: flex-end; | |
| 17 margin-top: 25px; | |
| 18 } | |
| 19 | |
| 20 .row { | |
| 21 display: block; | |
| 22 margin: 0.65em 0; | |
| 23 } | |
| 24 | |
| 25 input[type='date'], | |
| 26 input[type='time'] { | |
| 27 font-family: inherit; | |
| 28 font-size: 16px; | |
| 29 letter-spacing: 1px; | |
| 30 margin-bottom: 4px; | |
| 31 } | |
| 32 | |
| 33 input[type='date']::-webkit-clear-button, | |
| 34 input[type='time']::-webkit-clear-button { | |
| 35 display: none; | |
| 36 } | |
| 37 | |
| 38 label { | |
| 39 padding-right: 5px; | |
|
Dan Beam
2014/04/23 17:51:45
-webkit-padding-end: 5px; (so this works in RTL)
michaelpg
2014/04/24 01:32:23
Done.
| |
| 40 } | |
| 41 | |
| 42 #timezone-select { | |
| 43 display: inline-block; | |
| 44 } | |
| OLD | NEW |