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

Side by Side Diff: chrome/browser/resources/options/supervised_user_import.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 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 #supervised-user-import { 5 #supervised-user-import {
6 width: 612px; 6 width: 612px;
7 } 7 }
8 8
9 #supervised-user-import-text, 9 #supervised-user-import-text,
10 #supervised-user-select-avatar-text { 10 #supervised-user-select-avatar-text {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 #supervised-user-list:focus { 45 #supervised-user-list:focus {
46 border-color: rgb(77, 144, 254); 46 border-color: rgb(77, 144, 254);
47 } 47 }
48 48
49 #select-avatar-grid { 49 #select-avatar-grid {
50 background-color: rgba(255, 255, 255, 0.75); 50 background-color: rgba(255, 255, 255, 0.75);
51 padding: 2px; 51 padding: 2px;
52 } 52 }
53 53
54 #supervised-user-import-error-bubble { 54 #supervised-user-import-error-bubble {
55 -webkit-transition: max-height 200ms, padding 200ms;
56 background-color: rgb(238, 185, 57); 55 background-color: rgb(238, 185, 57);
57 border-radius: 4px; 56 border-radius: 4px;
58 font-weight: bold; 57 font-weight: bold;
59 margin-left: auto; 58 margin-left: auto;
60 margin-right: auto; 59 margin-right: auto;
61 margin-top: 10px; 60 margin-top: 10px;
62 max-height: 50px; 61 max-height: 50px;
63 overflow: hidden; 62 overflow: hidden;
64 padding: 1px 10px; 63 padding: 1px 10px;
65 text-align: center; 64 text-align: center;
65 transition: max-height 200ms, padding 200ms;
66 width: 80%; 66 width: 80%;
67 } 67 }
68 68
69 #supervised-user-import-error-bubble[hidden] { 69 #supervised-user-import-error-bubble[hidden] {
70 max-height: 0; 70 max-height: 0;
71 } 71 }
72 72
73 .profile-img-disabled { 73 .profile-img-disabled {
74 opacity: 0.4; 74 opacity: 0.4;
75 } 75 }
76 76
77 .profile-name-disabled { 77 .profile-name-disabled {
78 color: rgb(153, 153, 153); 78 color: rgb(153, 153, 153);
79 } 79 }
80 80
81 .already-on-this-device { 81 .already-on-this-device {
82 padding-left: 20px; 82 padding-left: 20px;
83 padding-right: 6px; 83 padding-right: 6px;
84 } 84 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/password_manager_list.css ('k') | chrome/browser/resources/options/sync_setup_overlay.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698