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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 /* Copyright 2015 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
6 paper-input-decorator /deep/ .unfocused-underline {
7 background-color: rgb(212, 212, 212);
8 }
9
10 paper-input-decorator /deep/ .focused-underline {
11 background-color: rgb(66, 133, 244);
12 }
13
14 paper-input-decorator /deep/ ::-webkit-input-placeholder,
15 paper-input-decorator /deep/ .label-text {
16 color: rgba(0, 0, 0, 0.54) !important;
17 }
18
19 paper-input-decorator {
20 color: rgba(0, 0, 0, 0.87);
21 font-size: 15px;
22 padding: 0;
23 }
24
25 :host-context(html[dir=rtl]) input {
26 flex-direction: row-reverse;
27 }
28
29 #domainLabel {
30 color: rgba(0, 0, 0, 0.54);
31 direction: ltr;
32 width: auto;
33 }
34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698