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

Side by Side Diff: chrome/browser/resources/options/manage_profile_overlay.css

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: rebase 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 (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 #manage-profile-overlay { 5 #manage-profile-overlay {
6 width: 616px; 6 width: 616px;
7 } 7 }
8 8
9 .profile-icon-grid-item { 9 .profile-icon-grid-item {
10 height: 31px; 10 height: 31px;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 background-color: #f0f0f0; 45 background-color: #f0f0f0;
46 padding: 14px 0 14px 17px; 46 padding: 14px 0 14px 17px;
47 } 47 }
48 48
49 #disconnect-managed-profile-message { 49 #disconnect-managed-profile-message {
50 padding-top: 9px; 50 padding-top: 9px;
51 } 51 }
52 52
53 #create-profile-error-bubble, 53 #create-profile-error-bubble,
54 #manage-profile-error-bubble { 54 #manage-profile-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 max-height: 50px; 60 max-height: 50px;
62 overflow: hidden; 61 overflow: hidden;
63 padding: 10px 10px; 62 padding: 10px 10px;
64 text-align: center; 63 text-align: center;
64 transition: max-height 200ms, padding 200ms;
65 width: 80%; 65 width: 80%;
66 } 66 }
67 67
68 html[dir='ltr'] #create-profile-error-bubble { 68 html[dir='ltr'] #create-profile-error-bubble {
69 margin-left: 20px; 69 margin-left: 20px;
70 width: 90%; 70 width: 90%;
71 } 71 }
72 72
73 html[dir='rtl'] #create-profile-error-bubble { 73 html[dir='rtl'] #create-profile-error-bubble {
74 margin-right: 20px; 74 margin-right: 20px;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 #import-existing-supervised-user-link { 154 #import-existing-supervised-user-link {
155 bottom: 25px; 155 bottom: 25px;
156 left: 17px; 156 left: 17px;
157 position: absolute; 157 position: absolute;
158 } 158 }
159 159
160 #supervised-user-import-existing { 160 #supervised-user-import-existing {
161 margin: 0; 161 margin: 0;
162 padding: 0; 162 padding: 0;
163 } 163 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698