Chromium Code Reviews| Index: chrome/browser/resources/chromeos/set_time.css |
| diff --git a/chrome/browser/resources/chromeos/set_time.css b/chrome/browser/resources/chromeos/set_time.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8addad285753c2dec2b9412e39929789bc05c0fd |
| --- /dev/null |
| +++ b/chrome/browser/resources/chromeos/set_time.css |
| @@ -0,0 +1,44 @@ |
| +/* Copyright 2014 The Chromium Authors. All rights reserved. |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. */ |
| + |
| +body { |
| + 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.
|
| + padding: 8px 20px; |
| +} |
| + |
| +h2 { |
| + margin-bottom: 20px; |
| +} |
| + |
| +.button-strip { |
| + display: -webkit-flex; |
| + justify-content: flex-end; |
| + margin-top: 25px; |
| +} |
| + |
| +.row { |
| + display: block; |
| + margin: 0.65em 0; |
| +} |
| + |
| +input[type='date'], |
| +input[type='time'] { |
| + font-family: inherit; |
| + font-size: 16px; |
| + letter-spacing: 1px; |
| + margin-bottom: 4px; |
| +} |
| + |
| +input[type='date']::-webkit-clear-button, |
| +input[type='time']::-webkit-clear-button { |
| + display: none; |
| +} |
| + |
| +label { |
| + 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.
|
| +} |
| + |
| +#timezone-select { |
| + display: inline-block; |
| +} |