-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodule.css
executable file
·98 lines (88 loc) · 3.36 KB
/
module.css
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
/* Uploader Styles */
.progressWrapper
{
width: 357px;
overflow: hidden;
background-color: #000;
}
.progressContainer {
margin: 1px;
padding: 4px;
border: solid 1px #E8E8E8;
background-color: #F7F7F7;
overflow: hidden;
}
.progressBarInProgress,
.progressBarComplete,
.progressBarError {
font-size: 0px;
width: 0%;
height: 2px;
background-color: blue;
text-align: left;
margin-top: 2px;
float: left;
}
.progressBarComplete {
width: 100%;
background-color: green;
visibility: hidden;
}
.progressBarError {
width: 100%;
background-color: red;
visibility: hidden;
}
.progressBarStatus {
margin-top: 2px;
text-align: left;
white-space: nowrap;
}
a.progressCancel,
a.progressCancel:link,
a.progressCancel:active,
a.progressCancel:visited,
a.progressCancel:hover
{
font-size: 0px;
display: block;
height: 14px;
width: 14px;
background-image: url(images/SWFUpload/cancelbutton.gif);
background-repeat: no-repeat;
background-position: -14px 0px;
float: right;
}
a.progressCancel:hover
{
background-position: 0px 0px;
}
#confirm {display:none;}
/* Overlay */
#confirm-overlay {background-color:#eee; cursor:wait;}
/* Container */
#confirm-container {height:160px; width:420px; font: 16px/22px 'Trebuchet MS', Verdana, Arial; text-align:left; background:#fff; border:2px solid #336699;}
#confirm-container .header {height:30px; line-height:30px; width:100%; background:url(Images/Confirm/header.gif) repeat-x; color:#fff; font-weight:bold;}
#confirm-container .header span {padding-left:8px;}
#confirm-container .message {color:#333; font-size:14px; margin:0; padding:12px 4px 12px 8px;}
#confirm-container .buttons {line-height:26px; width:160px; float:right; padding:10px 8px 0;}
#confirm-container .buttons div {float:right; margin-left:4px; width:70px; height:26px; color:#666; font-weight:bold; text-align:center; background:url(Images/Confirm/button.gif) repeat-x; border:1px solid #bbb; cursor:pointer;}
#confirm-container a.modal-close,
#confirm-container a.modal-close:link,
#confirm-container a.modal-close:active,
#confirm-container a.modal-close:visited {text-decoration:none; font-weight:bold; position:absolute; right:10px; top:2px; color:#fff;}
#confirm-container a.modal-close:hover {color:#ccc;}
/* Overlay */
#edit-overlay {background-color:#eee; cursor:wait;}
/* Container */
#edit-container {height:225px; width:500px; font: 16px/22px 'Trebuchet MS', Verdana, Arial; text-align:left; background:#fff; border:2px solid #336699;}
#edit-container .header {height:30px; line-height:30px; width:100%; background:url(Images/Confirm/header.gif) repeat-x; color:#fff; font-weight:bold;}
#edit-container .header span {padding-left:8px;}
#edit-container .message {color:#333; font-size:14px; margin:0; padding:12px 4px 12px 8px;}
#edit-container .buttons {text-align: center;}
#edit-container .buttons div {float:right; margin-left:4px; width:70px; height:26px; color:#666; font-weight:bold; text-align:center; background:url(Images/Confirm/button.gif) repeat-x; border:1px solid #bbb; cursor:pointer;}
#edit-container a.modal-close,
#edit-container a.modal-close:link,
#edit-container a.modal-close:active,
#edit-container a.modal-close:visited {text-decoration:none; font-weight:bold; position:absolute; right:10px; top:2px; color:#fff;}
#edit-container a.modal-close:hover {color:#ccc;}