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

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

Issue 403343002: Rename "managed (mode|user)" to "supervised user" (part 8) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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
(Empty)
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
3 * found in the LICENSE file. */
4
5 #managed-user-import {
6 width: 612px;
7 }
8
9 #managed-user-import-text,
10 #managed-user-select-avatar-text {
11 padding-bottom: 10px;
12 padding-left: 17px;
13 white-space: pre-wrap;
14 word-wrap: break-word;
15 }
16
17 #managed-user-list {
18 height: 240px;
19 margin-bottom: 10px;
20 }
21
22 #managed-user-list .profile-name {
23 -webkit-box-flex: 1;
24 overflow: hidden;
25 text-overflow: ellipsis;
26 white-space: nowrap;
27 }
28
29 #managed-user-list > * {
30 height: 40px;
31 }
32
33 #managed-user-list:focus {
34 border-color: rgb(77, 144, 254);
35 }
36
37 #select-avatar-grid {
38 background-color: rgba(255, 255, 255, 0.75);
39 padding: 2px;
40 }
41
42 #managed-user-import-error-bubble {
43 -webkit-transition: max-height 200ms, padding 200ms;
44 background-color: rgb(238, 185, 57);
45 border-radius: 4px;
46 font-weight: bold;
47 margin-left: auto;
48 margin-right: auto;
49 margin-top: 10px;
50 max-height: 50px;
51 overflow: hidden;
52 padding: 1px 10px;
53 text-align: center;
54 width: 80%;
55 }
56
57 #managed-user-import-error-bubble[hidden] {
58 max-height: 0;
59 }
60
61 .profile-img-disabled {
62 opacity: 0.4;
63 }
64
65 .profile-name-disabled {
66 color: rgb(153, 153, 153);
67 }
68
69 .already-on-this-device {
70 padding-left: 20px;
71 padding-right: 6px;
72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698