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

Side by Side Diff: ui/login/screen_container.css

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: sort Created 4 years 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
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 5
6 #outer-container { 6 #outer-container {
7 -webkit-box-align: center; 7 -webkit-box-align: center;
8 -webkit-box-pack: center; 8 -webkit-box-pack: center;
9 -webkit-perspective: 1px; /* Workaround, see http://crbug.com/360567 */
10 bottom: 57px; /* Leave space for the header bar */ 9 bottom: 57px; /* Leave space for the header bar */
11 display: -webkit-box; 10 display: -webkit-box;
12 left: 0; 11 left: 0;
13 min-height: 717px; /* This enables scrolling. Min resolution: 1024x768 */ 12 min-height: 717px; /* This enables scrolling. Min resolution: 1024x768 */
13 perspective: 1px; /* Workaround, see http://crbug.com/360567 */
14 position: absolute; 14 position: absolute;
15 right: 0; 15 right: 0;
16 top: 0; 16 top: 0;
17 z-index: 1; 17 z-index: 1;
18 } 18 }
19 19
20 .oobe-display #outer-container { 20 .oobe-display #outer-container {
21 -webkit-perspective: 600px; 21 perspective: 600px;
22 } 22 }
23 23
24 .pin-container.pin-enabled { 24 .pin-container.pin-enabled {
25 opacity: 1; 25 opacity: 1;
26 transition: opacity 200ms ease-in-out 180ms; 26 transition: opacity 200ms ease-in-out 180ms;
27 visibility: visible; 27 visibility: visible;
28 } 28 }
29 29
30 .pin-container.pin-disabled { 30 .pin-container.pin-disabled {
31 opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */ 31 opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 #oobe.error-message #inner-container, 99 #oobe.error-message #inner-container,
100 #oobe.tpm-error-message #inner-container { 100 #oobe.tpm-error-message #inner-container {
101 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 101 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3),
102 0 4px 23px 5px rgba(0, 0, 0, 0.2), 102 0 4px 23px 5px rgba(0, 0, 0, 0.2),
103 0 2px 6px rgba(0, 0, 0, 0.15); 103 0 2px 6px rgba(0, 0, 0, 0.15);
104 104
105 } 105 }
106 106
107 /* Only play this animation when 'down' class is removed. */ 107 /* Only play this animation when 'down' class is removed. */
108 .oobe-display #inner-container:not(.down) { 108 .oobe-display #inner-container:not(.down) {
109 -webkit-transition: transform 200ms ease-in-out; 109 transition: transform 200ms ease-in-out;
110 } 110 }
111 111
112 .oobe-display #inner-container.down { 112 .oobe-display #inner-container.down {
113 transform: translateY(50px) rotateX(-2.5deg); 113 transform: translateY(50px) rotateX(-2.5deg);
114 } 114 }
115 115
116 #oobe:not([md-mode]) #step-logo { 116 #oobe:not([md-mode]) #step-logo {
117 -webkit-margin-start: 17px; 117 -webkit-margin-start: 17px;
118 display: -webkit-box; 118 display: -webkit-box;
119 position: absolute; 119 position: absolute;
120 top: 15px; 120 top: 15px;
121 } 121 }
122 122
123 #oobe[md-mode] #step-logo { 123 #oobe[md-mode] #step-logo {
124 display: none; 124 display: none;
125 } 125 }
126 126
127 #progress-dots { 127 #progress-dots {
128 -webkit-box-pack: center; 128 -webkit-box-pack: center;
129 -webkit-transition: opacity 200ms ease-in-out,
130 visibility 200ms ease-in-out;
131 display: -webkit-box; 129 display: -webkit-box;
132 margin-top: 15px; 130 margin-top: 15px;
131 transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
133 } 132 }
134 133
135 #oobe[md-mode] #progress-dots { 134 #oobe[md-mode] #progress-dots {
136 display: none; 135 display: none;
137 } 136 }
138 137
139 /* Hidden for the duration of initial transition. */ 138 /* Hidden for the duration of initial transition. */
140 .oobe-display #progress-dots.down { 139 .oobe-display #progress-dots.down {
141 visibility: hidden; 140 visibility: hidden;
142 } 141 }
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 line-height: 31px; 233 line-height: 31px;
235 text-transform: lowercase; 234 text-transform: lowercase;
236 width: 23em; 235 width: 23em;
237 } 236 }
238 237
239 .header-section::before { 238 .header-section::before {
240 /* Divider in header between product name and title, 239 /* Divider in header between product name and title,
241 * like "[Product name] > [step header]". */ 240 * like "[Product name] > [step header]". */
242 content: '\00A0\203A\00A0\00A0'; 241 content: '\00A0\203A\00A0\00A0';
243 } 242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698