4
|
1 |
/* OutOfMemory dialog */
|
|
2 |
|
|
3 |
#OutOfMemoryDialogId
|
|
4 |
{
|
|
5 |
width: 275px;
|
|
6 |
background: -webkit-gradient(linear, left top, left bottom, from(#556c90), to(#3c4d6a));
|
|
7 |
border: 3px solid #002447;
|
|
8 |
padding: 20px;
|
|
9 |
-webkit-border-top-left-radius: 10px;
|
|
10 |
-webkit-border-top-right-radius: 10px;
|
|
11 |
-webkit-border-bottom-left-radius: 10px;
|
|
12 |
-webkit-border-bottom-right-radius: 10px;
|
|
13 |
}
|
|
14 |
|
|
15 |
#OutOfMemoryDialogId span.title {
|
|
16 |
font-size: 22px;
|
|
17 |
color: #fff;
|
|
18 |
margin-left: 20px;
|
|
19 |
}
|
|
20 |
|
|
21 |
#OutOfMemoryDialogId div.textLabel {
|
|
22 |
text-align: left;
|
|
23 |
font-size: 22px;
|
|
24 |
color: #fff;
|
|
25 |
margin-top: 20px;
|
|
26 |
}
|
|
27 |
|
|
28 |
#OutOfMemoryDialogId div.controls {
|
|
29 |
height: 40px;
|
|
30 |
text-align: center;
|
|
31 |
}
|
|
32 |
|
|
33 |
#OutOfMemoryDialogId div.outOfMemoryDialogButton {
|
|
34 |
width: 100px;
|
|
35 |
height: 40px;
|
|
36 |
display: inline-block;
|
|
37 |
background-repeat: no-repeat;
|
|
38 |
background-repeat: center center;
|
|
39 |
}
|
|
40 |
|
|
41 |
#OutOfMemoryDialogId div.outOfMemoryDoneButton {
|
|
42 |
background-image: url(icons/button_dialog_out_of_memory_ok_wait.png);
|
|
43 |
}
|
|
44 |
|
|
45 |
#OutOfMemoryDialogId div.outOfMemoryDoneButton:active {
|
|
46 |
background-image: url(icons/button_dialog_out_of_memory_ok_press.png);
|
|
47 |
}
|