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

Unified Diff: ui/file_manager/file_manager/foreground/css/common.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 side-by-side diff with in-line comments
Download patch
Index: ui/file_manager/file_manager/foreground/css/common.css
diff --git a/ui/file_manager/file_manager/foreground/css/common.css b/ui/file_manager/file_manager/foreground/css/common.css
index 32475ab49fa34d65052e25293112a55da93b88ee..d212ea9bad08e44409d5ff341ed1c386b1650a1a 100644
--- a/ui/file_manager/file_manager/foreground/css/common.css
+++ b/ui/file_manager/file_manager/foreground/css/common.css
@@ -112,7 +112,6 @@ cr-menu.chrome-menu > [checked]::before {
/* Style for <button>s to have similar style with Polymer's <paper-button>. */
.imitate-paper-button,
.cr-dialog-buttons > button {
- -webkit-user-select: none;
background: transparent;
border: 0;
border-image: none;
@@ -131,6 +130,7 @@ cr-menu.chrome-menu > [checked]::before {
position: relative;
text-align: center;
text-transform: uppercase;
+ user-select: none;
z-index: 0;
}
@@ -195,7 +195,6 @@ html[dir='rtl'] .entry-name {
/* Pop-up dialogs. */
.cr-dialog-container {
- -webkit-user-select: none;
align-items: center;
display: flex;
height: 100%;
@@ -205,6 +204,7 @@ html[dir='rtl'] .entry-name {
position: absolute;
top: 0;
transition: opacity 250ms linear;
+ user-select: none;
width: 100%;
z-index: 9999;
}

Powered by Google App Engine
This is Rietveld 408576698