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

Unified 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: rebase, single quotes in browsertest js 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/set_time_dialog.cc ('k') | chrome/browser/resources/chromeos/set_time.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..fcc2e4f89db127789086214ef91b1f71637c0eac
--- /dev/null
+++ b/chrome/browser/resources/chromeos/set_time.css
@@ -0,0 +1,45 @@
+/* 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. */
+ padding: 8px 20px;
+}
+
+h2 {
+ margin-bottom: 20px;
+}
+
+.button-strip {
+ display: flex;
+ justify-content: flex-end;
+ margin-top: 25px;
+}
+
+.row {
+ align-items: center;
+ display: flex;
+ 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 {
+ -webkit-margin-end: 5px;
+}
+
+#timezone-select {
+ flex: 1;
+}
« no previous file with comments | « chrome/browser/chromeos/set_time_dialog.cc ('k') | chrome/browser/resources/chromeos/set_time.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698