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

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

Issue 8271025: Moved mobile activation into its own modal dialog (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/dialogs.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
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
4 * found in the LICENSE file.
5 */
6
7 .cr-dialog-container {
8 position: absolute;
9 -webkit-user-select: none;
10 top: 0;
11 left: 0;
12 height: 100%;
13 width: 100%;
14
15 background: -webkit-radial-gradient(rgba(127, 127, 127, 0.5),
16 rgba(127, 127, 127, 0.5) 35%,
17 rgba(0, 0, 0, 0.7));
18 opacity: 0;
19 -webkit-transition: opacity 0.25s linear;
20 overflow: hidden;
21
22 z-index: 9999;
23 }
24
25 .cr-dialog-frame {
26 position: absolute;
27 display: -webkit-box;
28 -webkit-box-orient: vertical;
29 -webkit-box-shadow: 5px 5px 5px rgba(100, 100, 100, 0.5);
30
31 -webkit-transition-duration: 0.25s;
32 -webkit-transition-property: none;
33
34 min-width: 25%;
35 max-width: 75%;
36 border: 1px #aaa solid;
37 border-radius: 2px;
38 background-color: white;
39 padding: 15px;
40 }
41
42 .cr-dialog-text {
43 padding-bottom: 10px;
44 }
45
46 .cr-dialog-frame input {
47 -webkit-box-sizing: border-box;
48 width: 100%;
49 }
50
51 .cr-dialog-buttons {
52 display: -webkit-box;
53 -webkit-box-orient: horizontal;
54 padding-top: 10px;
55 -webkit-box-pack: end;
56 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/dialogs.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698