blob: f3e5ec6d391dacbb745206e14de96978d77ed231 (
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
/**
* Gallery 3 core module styles
*
* Sheet organization:
* 1) End-user
* 2) Admin
* 3) Right to left language styles
*/
/** *******************************************************************
* 1) End-user
**********************************************************************/
/* 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-in-place-edit-form ul {
margin: 0;
}
/* User profile ~~~~~~~~~~~~~~~~~~~~~~~~~ */
#g-user-profile h1 {
margin: 1em 0;
}
#g-user-profile .g-avatar {
margin-right: .6em;
}
#g-user-profile .g-block {
margin-top: 0;
}
#g-user-profile .g-block-content {
margin-top: 0;
}
#g-user-profile th,
#g-user-profile td {
border: none;
}
#g-user-profile th {
white-space: nowrap;
width: 1%;
}
/** *******************************************************************
* 2) Admin
**********************************************************************/
.g-task-log {
border: 1px solid #000;
height: 400px;
margin: .6em 0;
overflow: auto;
padding: .4em
}
#g-languages-form table {
width: 40%;
margin: 0 3em 1em 0;
}
#g-languages-form input {
clear: both;
}
#g-translations ol {
margin: 0 0 1em 2em;
}
#g-translations ol li {
list-style-type: decimal;
line-height: 150%;
}
#g-translations .g-button {
padding: .5em;
margin-bottom: 1em;
}
/** *******************************************************************
* 3) Right to left language styles
**********************************************************************/
.rtl #g-block-admin .g-left {
margin-left: 1em;
margin-right: 0;
}
.rtl #g-user-profile .g-avatar {
margin-left: .6em;
}
|