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

Unified Diff: chrome/browser/resources/chromeos/login/gaia_input.css

Issue 1129063003: <gaia-input> element extracted from <gaia-input-form>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Corrected test. Created 5 years, 7 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
Index: chrome/browser/resources/chromeos/login/gaia_input.css
diff --git a/chrome/browser/resources/chromeos/login/gaia_input.css b/chrome/browser/resources/chromeos/login/gaia_input.css
new file mode 100644
index 0000000000000000000000000000000000000000..655201421becf18b49f45f5f3819c88b11c15adc
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/gaia_input.css
@@ -0,0 +1,34 @@
+/* Copyright 2015 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.
+ */
+
+paper-input-decorator /deep/ .unfocused-underline {
+ background-color: rgb(212, 212, 212);
+}
+
+paper-input-decorator /deep/ .focused-underline {
+ background-color: rgb(66, 133, 244);
+}
+
+paper-input-decorator /deep/ ::-webkit-input-placeholder,
+paper-input-decorator /deep/ .label-text {
+ color: rgba(0, 0, 0, 0.54) !important;
+}
+
+paper-input-decorator {
+ color: rgba(0, 0, 0, 0.87);
+ font-size: 15px;
+ padding: 0;
+}
+
+:host-context(html[dir=rtl]) input {
+ flex-direction: row-reverse;
+}
+
+#domainLabel {
+ color: rgba(0, 0, 0, 0.54);
+ direction: ltr;
+ width: auto;
+}
+

Powered by Google App Engine
This is Rietveld 408576698