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

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: Addressed feedback 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. */
7 padding: 8px 20px;
8 }
9
10 h2 {
11 margin-bottom: 20px;
12 }
13
14 .button-strip {
15 display: -webkit-flex;
Nikita (slow) 2014/04/24 14:31:53 display: flex;
michaelpg 2014/04/24 18:52:32 Done.
16 justify-content: flex-end;
17 margin-top: 25px;
18 }
19
20 .row {
21 display: block;
Nikita (slow) 2014/04/24 14:31:53 nit: Is it feasible to make this display: flex?
michaelpg 2014/04/24 18:52:32 Done.
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 --webkit-padding-end: 5px;
40 }
41
42 #timezone-select {
43 display: inline-block;
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698