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

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

Issue 23454020: Update the 'managed user import' overlay to show an avatar selection grid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@show_synced_avatars_in_import_overlay
Patch Set: rebase Created 7 years, 3 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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 #create-new-user-link { 5 #create-new-user-link {
6 position: absolute; 6 position: absolute;
7 } 7 }
8 8
9 #managed-user-import { 9 #managed-user-import {
10 height: 400px;
11 width: 612px; 10 width: 612px;
12 } 11 }
13 12
14 #managed-user-import-text { 13 #managed-user-import-text {
15 padding-bottom: 10px; 14 padding-bottom: 10px;
16 padding-left: 17px; 15 padding-left: 17px;
17 white-space: pre-wrap; 16 white-space: pre-wrap;
18 word-wrap: break-word; 17 word-wrap: break-word;
19 } 18 }
20 19
20 #managed-user-list {
21 height: 240px;
22 }
23
24 #select-avatar-grid {
25 background-color: rgba(255, 255, 255, 0.75);
26 padding: 2px;
27 }
28
21 #managed-user-import-error-bubble { 29 #managed-user-import-error-bubble {
22 -webkit-transition: max-height 200ms, padding 200ms; 30 -webkit-transition: max-height 200ms, padding 200ms;
23 background-color: rgb(238, 185, 57); 31 background-color: rgb(238, 185, 57);
24 border-radius: 4px; 32 border-radius: 4px;
25 font-weight: bold; 33 font-weight: bold;
26 margin-left: auto; 34 margin-left: auto;
27 margin-right: auto; 35 margin-right: auto;
28 margin-top: 10px; 36 margin-top: 10px;
29 max-height: 50px; 37 max-height: 50px;
30 overflow: hidden; 38 overflow: hidden;
(...skipping 11 matching lines...) Expand all
42 } 50 }
43 51
44 .profile-name-disabled { 52 .profile-name-disabled {
45 color: rgb(153, 153, 153); 53 color: rgb(153, 153, 153);
46 } 54 }
47 55
48 .already-on-this-device { 56 .already-on-this-device {
49 padding-left: 4px; 57 padding-left: 4px;
50 padding-right: 4px; 58 padding-right: 4px;
51 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698