blob: 564c023ef3f11e2e3b5d8981793c2b952e7b0b42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/* Copyright 2014 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
#supervised-user-import {
width: 612px;
}
#supervised-user-import-text,
#supervised-user-select-avatar-text {
padding-bottom: 10px;
padding-left: 17px;
white-space: pre-wrap;
word-wrap: break-word;
}
#supervised-user-list {
height: 240px;
margin-bottom: 10px;
}
#supervised-user-list .list-item {
align-items: center;
display: flex;
}
#supervised-user-list .profile-img {
flex-shrink: 0;
}
#supervised-user-list .profile-name {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#supervised-user-list .already-on-this-device {
flex-shrink: 0;
}
#supervised-user-list > * {
height: 40px;
}
#supervised-user-list:focus {
border-color: rgb(77, 144, 254);
}
#select-avatar-grid {
background-color: rgba(255, 255, 255, 0.75);
padding: 2px;
}
#supervised-user-import-error-bubble {
-webkit-transition: max-height 200ms, padding 200ms;
background-color: rgb(238, 185, 57);
border-radius: 4px;
font-weight: bold;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
max-height: 50px;
overflow: hidden;
padding: 1px 10px;
text-align: center;
width: 80%;
}
#supervised-user-import-error-bubble[hidden] {
max-height: 0;
}
.profile-img-disabled {
opacity: 0.4;
}
.profile-name-disabled {
color: rgb(153, 153, 153);
}
.already-on-this-device {
padding-left: 20px;
padding-right: 6px;
}
|