Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: chrome/browser/resources/chromeos/set_time.css

Issue 247663003: Date and Time dialog for when the clock isn't synced. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Set Time Dialog Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698