blob: aa172903bb3ca8420c14fc87bc6a1d4edf9783f5 (
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
85
86
87
88
|
/* Copyright (c) 2011 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.
*/
#manage-profile-overlay {
width: 500px;
}
.profile-icon-grid-item {
border: none !important;
height: 31px;
margin: 4px 6px;
padding: 4px;
width: 38px;
}
.profile-icon {
height: 31px;
width: 38px;
}
#manage-profile-content > :first-child {
margin-bottom: 5px;
}
#manage-profile-content > :last-child {
margin-top: 5px;
}
#manage-profile-content > :not(:first-child):not(:last-child) {
margin-top: 5px;
margin-bottom: 5px;
}
#manage-profile-name-div {
-webkit-box-align: baseline;
-webkit-box-orient: horizontal;
display: -webkit-box;
}
#manage-profile-name-label {
-webkit-margin-end: 20px;
}
#manage-profile-name {
-webkit-box-flex: 1;
display: block;
}
#manage-profile-name:invalid {
background-color: pink;
}
#manage-profile-error-bubble {
-webkit-transition: max-height 200ms, padding 200ms;
background-color: #eeb939;
border-radius: 4px;
font-weight: bold;
margin-left: auto;
margin-right: auto;
max-height: 50px;
overflow: hidden;
padding: 1px 10px;
text-align: center;
width: 80%;
}
#manage-profile-error-bubble[hidden] {
display: block !important;
max-height: 0;
padding: 0 10px;
}
#manage-profile-icon-grid {
background-color: rgba(255, 255, 255, 0.75);
border: 1px solid rgba(0, 0, 0, 0.3);
padding: 2px;
}
#delete-profile-message {
background-repeat: no-repeat;
-webkit-padding-start: 48px;
}
html[dir='rtl'] #delete-profile-message {
background-position: right;
}
|