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

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

Issue 125993002: Add error handling for supervised user import flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move ManagedUserListData to its own file. Created 6 years, 11 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 | Annotate | Revision Log
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: 612px; 6 width: 612px;
7 } 7 }
8 8
9 .profile-icon-grid-item { 9 .profile-icon-grid-item {
10 height: 31px; 10 height: 31px;
(...skipping 25 matching lines...) Expand all
36 #create-profile-error-bubble, 36 #create-profile-error-bubble,
37 #manage-profile-error-bubble { 37 #manage-profile-error-bubble {
38 -webkit-transition: max-height 200ms, padding 200ms; 38 -webkit-transition: max-height 200ms, padding 200ms;
39 background-color: rgb(238, 185, 57); 39 background-color: rgb(238, 185, 57);
40 border-radius: 4px; 40 border-radius: 4px;
41 font-weight: bold; 41 font-weight: bold;
42 margin-left: auto; 42 margin-left: auto;
43 margin-right: auto; 43 margin-right: auto;
44 max-height: 50px; 44 max-height: 50px;
45 overflow: hidden; 45 overflow: hidden;
46 padding: 1px 10px; 46 padding: 10px 10px;
47 text-align: center; 47 text-align: center;
48 width: 80%; 48 width: 80%;
49 } 49 }
50 50
51 html[dir='ltr'] #create-profile-error-bubble {
52 margin-left: 20px;
53 width: 90%;
54 }
55
56 html[dir='rtl'] #create-profile-error-bubble {
57 margin-right: 20px;
58 width: 90%;
59 }
60
51 #create-profile-error-bubble[hidden], 61 #create-profile-error-bubble[hidden],
52 #manage-profile-error-bubble[hidden] { 62 #manage-profile-error-bubble[hidden] {
53 display: block !important; 63 display: block !important;
54 max-height: 0; 64 max-height: 0;
55 padding: 0 10px; 65 padding: 0 10px;
56 } 66 }
57 67
58 #create-profile-icon-grid, 68 #create-profile-icon-grid,
59 #manage-profile-icon-grid { 69 #manage-profile-icon-grid {
60 background-color: rgba(255, 255, 255, 0.75); 70 background-color: rgba(255, 255, 255, 0.75);
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 color: #999; 124 color: #999;
115 } 125 }
116 126
117 #create-profile-managed-not-signed-in-label, 127 #create-profile-managed-not-signed-in-label,
118 #create-profile-managed-account-details-out-of-date-label { 128 #create-profile-managed-account-details-out-of-date-label {
119 white-space: pre-wrap; 129 white-space: pre-wrap;
120 word-wrap: break-word; 130 word-wrap: break-word;
121 } 131 }
122 132
123 #create-profile-managed-content-area { 133 #create-profile-managed-content-area {
124 padding-top: 0; 134 padding-top: 10;
125 } 135 }
126 136
127 #import-existing-managed-user-link { 137 #import-existing-managed-user-link {
128 left: 17px; 138 left: 17px;
129 position: absolute; 139 position: absolute;
130 } 140 }
141
142 #supervised-user-import {
143 margin: 0;
144 padding: 0;
145 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698