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