16
|
1 |
/* css for download dialogs */
|
|
2 |
|
|
3 |
#downloadDialogId {
|
|
4 |
height: 50px;
|
|
5 |
}
|
|
6 |
|
|
7 |
.downloadDialogBox {
|
|
8 |
/*opacity: 0.9;*/
|
|
9 |
|
|
10 |
height: 50px;
|
|
11 |
|
|
12 |
-webkit-user-select: none;
|
|
13 |
|
|
14 |
padding: 15px;
|
|
15 |
|
|
16 |
border-radius: 15px;
|
|
17 |
border: 3px solid #aaaaab;
|
|
18 |
background: -webkit-gradient(linear, left top, left bottom, from(#060808), to(#a8a8a8), color-stop(0.5, #777779));
|
|
19 |
/*font specification*/
|
|
20 |
font-family: "Series 60 Sans", "Nokia Sans S60", sans-serif;
|
|
21 |
}
|
|
22 |
|
|
23 |
.downloadDialogIcon {
|
|
24 |
vertical-align: middle;
|
|
25 |
|
|
26 |
height: 24px;
|
|
27 |
width: 24px;
|
|
28 |
}
|
|
29 |
|
|
30 |
.downloadDialogText {
|
|
31 |
vertical-align: middle;
|
|
32 |
|
|
33 |
color: white;
|
|
34 |
|
|
35 |
font-size: 16px;
|
|
36 |
font-weight: bold;
|
|
37 |
}
|