blob: 724c50d3c6378408f860c6560c4543635263eb5c (
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
101
102
103
104
105
|
/* Permissions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#g-edit-permissions-form {
clear: both;
}
#g-edit-permissions-form td {
background-image: none;
}
#g-edit-permissions-form fieldset {
border: 1px solid #ccc;
}
#g-permissions .g-denied,
#g-permissions .g-allowed {
text-align: center;
vertical-align: middle;
}
#g-permissions .g-denied {
background-color: #fcc;
}
#g-permissions .g-allowed {
background-color: #cfc;
}
/* Move items ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#g-move ul {
padding-left: 1em;
}
#g-move .selected {
background: #999;
}
/* In-place edit ~~~~~~~~~~~~~~~~~~~~~~~~~ */
#g-inplace-edit-form ul {
margin: 0;
}
/* Simple uploader ~~~~~~~~~~~~~~~~~~~~~~~ */
#g-add-photos #SWFUpload_0 {
left: 134px;
position: relative;
top: -200px;
}
#g-add-photos-canvas {
border: 1px solid #ccc;
height: 325px;
margin: .5em 0;
overflow: auto;
width: 469px;
}
#g-add-photos button {
float: right;
margin-bottom: .5em;
}
#g-uploadqueue-infobar {
clear: both;
}
#g-uploadqueue-infobar #g-cancelupload {
cursor: pointer;
display: none;
}
#g-add-photos-queue .progressbar {
height: 4px;
}
#g-add-photos-queue .status {
font-size: .75em;
}
#g-add-photos-queue .box {
padding: .2em;
}
#g-add-photos-queue .pending {
background-color: #e8e8e8;
border: 1px solid #d7d7d7;
}
#g-add-photos-queue .error {
background-color: #fcc;
border: 1px solid #ebb;
}
#g-add-photos-queue .uploading {
background-color: #ff9;
border: 1px solid #ee8;
}
#g-add-photos-queue .complete {
background-color: #cfc;
border: 1px solid #beb;
}
|