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

Side by Side Diff: third_party/polymer/components-chromium/core-input/core-input.css

Issue 592593002: Inline scripts were extracted from Polymer elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/echo ""/echo/ Created 6 years, 2 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 :host {
2 display: inline-block;
3 text-align: inherit;
4 color: #ccc;
5 position: relative;
6 width: 20em;
7 }
8
9 :host:hover {
10 cursor: text;
11 }
12
13 input,
14 textarea {
15 font: inherit;
16 width: 100%;
17 margin: 0;
18 padding: 0;
19 background-color: transparent;
20 border: none;
21 outline: none;
22 width: 100%;
23 }
24
25 textarea {
26 resize: none;
27 }
28
29 textarea[fit] {
30 position: absolute;
31 top: 0;
32 left: 0;
33 right: 0;
34 bottom: 0;
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698