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

Unified Diff: ui/login/screen_container.css

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: sort Created 4 years, 1 month 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/login/screen_container.css
diff --git a/ui/login/screen_container.css b/ui/login/screen_container.css
index cf505f2dc03bee207feca5658384d909f13d7481..5b074be19498111c57fca6f9c36f7e517bee37b5 100644
--- a/ui/login/screen_container.css
+++ b/ui/login/screen_container.css
@@ -6,11 +6,11 @@
#outer-container {
-webkit-box-align: center;
-webkit-box-pack: center;
- -webkit-perspective: 1px; /* Workaround, see http://crbug.com/360567 */
bottom: 57px; /* Leave space for the header bar */
display: -webkit-box;
left: 0;
min-height: 717px; /* This enables scrolling. Min resolution: 1024x768 */
+ perspective: 1px; /* Workaround, see http://crbug.com/360567 */
position: absolute;
right: 0;
top: 0;
@@ -18,7 +18,7 @@
}
.oobe-display #outer-container {
- -webkit-perspective: 600px;
+ perspective: 600px;
}
.pin-container.pin-enabled {
@@ -106,7 +106,7 @@
/* Only play this animation when 'down' class is removed. */
.oobe-display #inner-container:not(.down) {
- -webkit-transition: transform 200ms ease-in-out;
+ transition: transform 200ms ease-in-out;
}
.oobe-display #inner-container.down {
@@ -126,10 +126,9 @@
#progress-dots {
-webkit-box-pack: center;
- -webkit-transition: opacity 200ms ease-in-out,
- visibility 200ms ease-in-out;
display: -webkit-box;
margin-top: 15px;
+ transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}
#oobe[md-mode] #progress-dots {

Powered by Google App Engine
This is Rietveld 408576698