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

Side by Side Diff: ui/webui/resources/css/dialogs.css

Issue 2621993006: Drop the -webkit prefix from user-select CSS rule in ui/. (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « ui/webui/resources/css/chrome_shared.css ('k') | ui/webui/resources/css/expandable_bubble.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 .cr-dialog-container { 5 .cr-dialog-container {
6 -webkit-box-align: center; 6 -webkit-box-align: center;
7 -webkit-box-pack: center; 7 -webkit-box-pack: center;
8 -webkit-transition: opacity 250ms linear; 8 -webkit-transition: opacity 250ms linear;
9 -webkit-user-select: none;
10 display: -webkit-box; 9 display: -webkit-box;
11 height: 100%; 10 height: 100%;
12 left: 0; 11 left: 0;
13 overflow: hidden; 12 overflow: hidden;
14 position: absolute; 13 position: absolute;
15 top: 0; 14 top: 0;
15 user-select: none;
16 width: 100%; 16 width: 100%;
17 z-index: 9999; 17 z-index: 9999;
18 } 18 }
19 19
20 .cr-dialog-frame { 20 .cr-dialog-frame {
21 -webkit-box-orient: vertical; 21 -webkit-box-orient: vertical;
22 -webkit-box-shadow: 5px 5px 5px rgba(100, 100, 100, 0.5); 22 -webkit-box-shadow: 5px 5px 5px rgba(100, 100, 100, 0.5);
23 background-color: white; 23 background-color: white;
24 border: 1px solid rgba(0, 0, 0, 0.3); 24 border: 1px solid rgba(0, 0, 0, 0.3);
25 border-radius: 3px; 25 border-radius: 3px;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 width: 44px; 137 width: 44px;
138 } 138 }
139 139
140 .cr-dialog-close:hover { 140 .cr-dialog-close:hover {
141 background-image: url(chrome://theme/IDR_CLOSE_DIALOG_H); 141 background-image: url(chrome://theme/IDR_CLOSE_DIALOG_H);
142 } 142 }
143 143
144 .cr-dialog-close:active { 144 .cr-dialog-close:active {
145 background-image: url(chrome://theme/IDR_CLOSE_DIALOG_P); 145 background-image: url(chrome://theme/IDR_CLOSE_DIALOG_P);
146 } 146 }
OLDNEW
« no previous file with comments | « ui/webui/resources/css/chrome_shared.css ('k') | ui/webui/resources/css/expandable_bubble.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698