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

Unified Diff: ui/webui/resources/css/dialogs.css

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only Created 3 years, 10 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
« no previous file with comments | « ui/webui/resources/css/chrome_shared.css ('k') | ui/webui/resources/css/overlay.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/webui/resources/css/dialogs.css
diff --git a/ui/webui/resources/css/dialogs.css b/ui/webui/resources/css/dialogs.css
index 376061ed530bd5bf201379ac46087d244a153861..3d9a909906f7ae806950d6a57f8d422ff9044c3c 100644
--- a/ui/webui/resources/css/dialogs.css
+++ b/ui/webui/resources/css/dialogs.css
@@ -5,13 +5,13 @@
.cr-dialog-container {
-webkit-box-align: center;
-webkit-box-pack: center;
- -webkit-transition: opacity 250ms linear;
display: -webkit-box;
height: 100%;
left: 0;
overflow: hidden;
position: absolute;
top: 0;
+ transition: opacity 250ms linear;
user-select: none;
width: 100%;
z-index: 9999;
@@ -65,15 +65,14 @@
}
.cr-dialog-frame {
- -webkit-transition: all 180ms;
- -webkit-transition-duration: 250ms;
opacity: 0;
transform: perspective(500px) scale(0.99)
translateY(-20px) rotateX(5deg);
+ transition: all 180ms;
+ transition-duration: 250ms;
}
.cr-dialog-shield {
- -webkit-transition: opacity 500ms;
background-color: white;
bottom: 0;
display: block;
@@ -83,11 +82,12 @@
position: absolute;
right: 0;
top: 0;
+ transition: opacity 500ms;
}
.shown > .cr-dialog-shield {
- -webkit-transition: opacity 500ms;
opacity: 0.75;
+ transition: opacity 500ms;
}
[hidden] {
« no previous file with comments | « ui/webui/resources/css/chrome_shared.css ('k') | ui/webui/resources/css/overlay.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698