blob: d552febe98bf11e2712f7448eec06e49d080d386 (
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
89
90
91
92
93
94
95
96
97
98
99
100
|
/* Copyright (c) 2012 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.
*/
.error {
color: red;
}
#pin-error-msg {
height: 25px;
margin: 5px auto 5px auto;
}
.content-area {
max-height: 125px;
overflow: auto;
}
.change-pin-content-area {
height: 156px;
overflow: auto;
padding: 10px 15px 5px 15px;
width: 320px;
}
.choose-pin-content-area {
max-height: 125px;
min-height: 120px;
overflow: auto;
padding: 10px 15px 5px 15px;
width: 320px;
}
.input-area {
margin: 10px auto 25px auto;
width: 125px;
}
#pin-input-area {
margin-top: 30px;
}
#puk-input-area {
margin-bottom: 0;
}
#puk-content-area {
max-height: 163px;
}
.code-input {
-webkit-border-radius: 2px;
border: 1px solid #aaa;
font-size: inherit;
padding: 3px;
}
#locked-puk-action-area {
-webkit-box-pack: center;
}
#disabled-sim-action-area {
-webkit-box-pack: center;
}
#puk-warning-msg {
padding-bottom: 6px;
}
#puk-enter-msg {
padding-top: 6px;
}
#choose-pin-msg {
padding-bottom: 6px;
}
#choose-pin-error {
padding-top: 6px;
}
.label {
margin: 5px 5px 5px 0;
padding: 5px 5px 5px 0;
width: 150px;
}
.input-with-label {
display: -webkit-box;
}
.choose-pin-input-area {
margin: 5px 5px 5px 5px;
width: 125px;
}
#choose-pin-action-area {
padding: 6px;
}
|