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

Side by Side Diff: chrome/browser/resources/sync_setup_overlay.css

Issue 8680003: Clean-up: Change chrome/browser's CSS time units from s to ms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reverting change to 1.8s -> 1800ms in print_preview.css Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/sync_promo.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* TODO(jhawkins): Organize these by page. */ 1 /* TODO(jhawkins): Organize these by page. */
2 2
3 #sync-setup-overlay * h4 { 3 #sync-setup-overlay * h4 {
4 margin: 5px 0; 4 margin: 5px 0;
5 } 5 }
6 6
7 #sync-setup-overlay * form { 7 #sync-setup-overlay * form {
8 -webkit-user-select: none; 8 -webkit-user-select: none;
9 } 9 }
10 10
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 171
172 #asp-warning-div { 172 #asp-warning-div {
173 text-align: left; 173 text-align: left;
174 } 174 }
175 175
176 #logging-in-throbber { 176 #logging-in-throbber {
177 margin: 0 10px; 177 margin: 0 10px;
178 } 178 }
179 179
180 #top-blurb-error { 180 #top-blurb-error {
181 -webkit-transition: margin-top .33s ease-out, opacity .66s ease-out; 181 -webkit-transition: margin-top 330ms ease-out, opacity 660ms ease-out;
182 background: #f9edbe; 182 background: #f9edbe;
183 border: 1px solid #f0c36d; 183 border: 1px solid #f0c36d;
184 display: block; 184 display: block;
185 font-weight: bold; 185 font-weight: bold;
186 line-height: 1.5em; 186 line-height: 1.5em;
187 margin-bottom: 10px; 187 margin-bottom: 10px;
188 opacity: 1; 188 opacity: 1;
189 padding: 8px 25px; 189 padding: 8px 25px;
190 position: relative; 190 position: relative;
191 text-align: center; 191 text-align: center;
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 272
273 #learn-more-link { 273 #learn-more-link {
274 float: right; 274 float: right;
275 } 275 }
276 276
277 html[dir='rtl'] #learn-more-link { 277 html[dir='rtl'] #learn-more-link {
278 float: left; 278 float: left;
279 } 279 }
280 280
281 #customize-link, #use-default-link { 281 #customize-link, #use-default-link {
282 -webkit-transition: opacity .25s; 282 -webkit-transition: opacity 250ms;
283 } 283 }
284 284
285 285
286 /* Sign in box. */ 286 /* Sign in box. */
287 287
288 .sign-in { 288 .sign-in {
289 margin: 20px auto; 289 margin: 20px auto;
290 width: 335px; 290 width: 335px;
291 } 291 }
292 292
(...skipping 28 matching lines...) Expand all
321 } 321 }
322 322
323 html[dir='rtl'] #signin-header-logo { 323 html[dir='rtl'] #signin-header-logo {
324 left: 0; 324 left: 0;
325 right: auto; 325 right: auto;
326 } 326 }
327 327
328 /* Sign in buttons. */ 328 /* Sign in buttons. */
329 329
330 .signin-box input[type=submit] { 330 .signin-box input[type=submit] {
331 -webkit-transition: all 0.218s; 331 -webkit-transition: all 218ms;
332 -webkit-user-select: none; 332 -webkit-user-select: none;
333 background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed); 333 background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed);
334 border: 1px solid #3079ed; 334 border: 1px solid #3079ed;
335 border-radius: 2px; 335 border-radius: 2px;
336 color: #fff; 336 color: #fff;
337 display: inline-block; 337 display: inline-block;
338 font-size: 13px; 338 font-size: 13px;
339 font-weight: bold; 339 font-weight: bold;
340 height: 32px; 340 height: 32px;
341 line-height: 27px; 341 line-height: 27px;
342 margin: 0 0.4em 1.2em 0; 342 margin: 0 0.4em 1.2em 0;
343 min-width: 54px !important; 343 min-width: 54px !important;
344 padding: 0 8px; 344 padding: 0 8px;
345 } 345 }
346 346
347 html[dir='rtl'] .signin-box input[type=submit] { 347 html[dir='rtl'] .signin-box input[type=submit] {
348 margin: 0 0 1.2em 0.4em; 348 margin: 0 0 1.2em 0.4em;
349 } 349 }
350 350
351 .signin-box input[type=submit]:hover { 351 .signin-box input[type=submit]:hover {
352 -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1); 352 -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
353 -webkit-transition: all 0.0s; 353 -webkit-transition: all 0;
354 background-image: -webkit-linear-gradient(top, #4d90fe, #357ae8); 354 background-image: -webkit-linear-gradient(top, #4d90fe, #357ae8);
355 border: 1px solid #2f5bb7; 355 border: 1px solid #2f5bb7;
356 color: #fff; 356 color: #fff;
357 } 357 }
358 358
359 .signin-box input[type=submit]:focus { 359 .signin-box input[type=submit]:focus {
360 -webkit-box-shadow: inset 0 0 0 1px #fff; 360 -webkit-box-shadow: inset 0 0 0 1px #fff;
361 border: 1px solid #4d90fe; 361 border: 1px solid #4d90fe;
362 outline: none; 362 outline: none;
363 z-index: 4 !important; 363 z-index: 4 !important;
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 } 502 }
503 503
504 .signin-box .help-link:visited { 504 .signin-box .help-link:visited {
505 color: #fff !important; 505 color: #fff !important;
506 } 506 }
507 507
508 .signin-box .help-link:hover { 508 .signin-box .help-link:hover {
509 color: #fff !important; 509 color: #fff !important;
510 opacity: .7; 510 opacity: .7;
511 } 511 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/sync_promo.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698