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

Side by Side Diff: chrome/browser/resources/file_manager/css/dialogs.css

Issue 7764011: File Manager: Assorted fixes and polish (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .cr-dialog-container { 7 .cr-dialog-container {
8 position: absolute; 8 position: absolute;
9 -webkit-user-select: none; 9 -webkit-user-select: none;
10 top: 0; 10 top: 0;
11 left: 0; 11 left: 0;
12 height: 100%; 12 height: 100%;
13 width: 100%; 13 width: 100%;
14 14
15 background-color: rgba(0,0,0,0.05); 15 background: -webkit-radial-gradient(rgba(127, 127, 127, 0.5),
rginda 2011/08/26 22:41:03 Background gradient copied from settings code.
16 -webkit-box-shadow: inset 0px 0px 100px #000; 16 rgba(127, 127, 127, 0.5) 35%,
17 rgba(0, 0, 0, 0.7));
17 opacity: 0; 18 opacity: 0;
18 -webkit-transition: opacity 0.25s linear; 19 -webkit-transition: opacity 0.25s linear;
19
20 overflow: hidden; 20 overflow: hidden;
21 21
22 z-index: 9999; 22 z-index: 9999;
23 } 23 }
24 24
25 .cr-dialog-frame { 25 .cr-dialog-frame {
26 position: absolute; 26 position: absolute;
27 display: -webkit-box; 27 display: -webkit-box;
28 -webkit-box-orient: vertical; 28 -webkit-box-orient: vertical;
29 -webkit-box-shadow: 5px 5px 5px rgba(100, 100, 100, 0.5); 29 -webkit-box-shadow: 5px 5px 5px rgba(100, 100, 100, 0.5);
(...skipping 17 matching lines...) Expand all
47 -webkit-box-sizing: border-box; 47 -webkit-box-sizing: border-box;
48 width: 100%; 48 width: 100%;
49 } 49 }
50 50
51 .cr-dialog-buttons { 51 .cr-dialog-buttons {
52 display: -webkit-box; 52 display: -webkit-box;
53 -webkit-box-orient: horizontal; 53 -webkit-box-orient: horizontal;
54 padding-top: 10px; 54 padding-top: 10px;
55 -webkit-box-pack: end; 55 -webkit-box-pack: end;
56 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698