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

Side by Side Diff: third_party/polymer/components-chromium/paper-dialog/paper-dialog.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 background: white;
3 color: rgba(0, 0, 0, 0.87);
4 }
5
6 #shadow {
7 position: absolute;
8 top: 0;
9 left: 0;
10 bottom: 0;
11 right: 0;
12 z-index: -1;
13 }
14
15 #container {
16 overflow: hidden;
17 }
18
19 #main {
20 height: auto;
21 -webkit-order: 1;
22 -ms-flex-order: 1;
23 order: 1;
24 padding: 24px;
25 overflow: auto;
26 }
27
28 h1 {
29 margin: 0;
30 }
31
32 #actions {
33 -webkit-order: 2;
34 -ms-flex-order: 2;
35 order: 2;
36 padding: 4px 16px 20px;
37 }
38
39 polymer-next-selector { content: ':host > *'; }
40 ::content > * {
41 font: inherit;
42 border: 0;
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698