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

Side by Side Diff: appengine/chromium_rietveld/new_static/common/cr-dialog-backdrop.html

Issue 1001723003: Create a common directory of widgets and css. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 5 years, 9 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
1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <polymer-element name="cr-dialog-backdrop" noscript> 5 <polymer-element name="cr-dialog-backdrop" noscript>
6 <template> 6 <template>
7 <style> 7 <style>
8 :host { 8 :host {
9 position: fixed; 9 position: fixed;
10 top: 0; 10 top: 0;
11 right: 0; 11 right: 0;
12 bottom: 0; 12 bottom: 0;
13 left: 0; 13 left: 0;
14 background: rgba(0,0,0,0.1); 14 background: rgba(0,0,0,0.1);
15 } 15 }
16 </style> 16 </style>
17 </template> 17 </template>
18 </ploymer-element> 18 </ploymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698