blob: 9c96e68feff9c4a7917101abb007294ee39e3808 (
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
|
/* 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.
*/
body {
cursor: default;
font-size: 13px;
}
.container {
-webkit-box-align: center;
-webkit-box-pack: center;
bottom: 0;
display: -webkit-box;
left: 0;
position: fixed;
right: 0;
top: 0;
}
.dialog {
background: white;
min-height: 225px;
min-width: 350px;
padding: 0;
position: relative;
}
.dialog h1 {
background: -webkit-linear-gradient(white, #F8F8F8);
border-bottom: 1px solid rgba(188, 193, 208, .5);
color: rgb(83, 99, 125);
font-size: 105%;
font-weight: bold;
margin: 0;
padding: 10px 15px 8px 15px;
text-shadow: white 0 1px 2px;
width: 320px;
}
.content-area {
padding: 10px 15px 5px 15px;
width: 320px;
}
.action-area {
-webkit-box-align: center;
-webkit-box-orient: horizontal;
-webkit-box-pack: end;
display: -webkit-box;
padding: 12px;
}
html[dir='rtl'] .action-area {
left: 0;
}
.action-area-right {
display: -webkit-box;
}
.button-strip {
-webkit-box-orient: horizontal;
display: -webkit-box;
}
.button-strip > button {
-webkit-margin-start: 10px;
display: block;
}
|