FossilRepo

fossilrepo / assets / admin / css / rtl.css
Blame History Raw 294 lines
1
/* GLOBAL */
2
3
th {
4
text-align: right;
5
}
6
7
.module h2, .module caption {
8
text-align: right;
9
}
10
11
.module ul, .module ol {
12
margin-left: 0;
13
margin-right: 1.5em;
14
}
15
16
.viewlink, .addlink, .changelink, .hidelink {
17
padding-left: 0;
18
padding-right: 16px;
19
background-position: 100% 1px;
20
}
21
22
.deletelink {
23
padding-left: 0;
24
padding-right: 16px;
25
background-position: 100% 1px;
26
}
27
28
.object-tools {
29
float: left;
30
}
31
32
thead th:first-child,
33
tfoot td:first-child {
34
border-left: none;
35
}
36
37
/* LAYOUT */
38
39
#user-tools {
40
right: auto;
41
left: 0;
42
text-align: left;
43
}
44
45
div.breadcrumbs {
46
text-align: right;
47
}
48
49
#content-main {
50
float: right;
51
}
52
53
#content-related {
54
float: left;
55
margin-left: -300px;
56
margin-right: auto;
57
}
58
59
.colMS {
60
margin-left: 300px;
61
margin-right: 0;
62
}
63
64
/* SORTABLE TABLES */
65
66
table thead th.sorted .sortoptions {
67
float: left;
68
}
69
70
thead th.sorted .text {
71
padding-right: 0;
72
padding-left: 42px;
73
}
74
75
/* dashboard styles */
76
77
.dashboard .module table td a {
78
padding-left: .6em;
79
padding-right: 16px;
80
}
81
82
/* changelists styles */
83
84
.change-list .filtered table {
85
border-left: none;
86
border-right: 0px none;
87
}
88
89
#changelist-filter {
90
border-left: none;
91
border-right: none;
92
margin-left: 0;
93
margin-right: 30px;
94
}
95
96
#changelist-filter li.selected {
97
border-left: none;
98
padding-left: 10px;
99
margin-left: 0;
100
border-right: 5px solid var(--hairline-color);
101
padding-right: 10px;
102
margin-right: -15px;
103
}
104
105
#changelist table tbody td:first-child, #changelist table tbody th:first-child {
106
border-right: none;
107
border-left: none;
108
}
109
110
.paginator .end {
111
margin-left: 6px;
112
margin-right: 0;
113
}
114
115
.paginator input {
116
margin-left: 0;
117
margin-right: auto;
118
}
119
120
/* FORMS */
121
122
.aligned label {
123
padding: 0 0 3px 1em;
124
}
125
126
.submit-row a.deletelink {
127
margin-left: 0;
128
margin-right: auto;
129
}
130
131
.vDateField, .vTimeField {
132
margin-left: 2px;
133
}
134
135
.aligned .form-row input {
136
margin-left: 5px;
137
}
138
139
form .aligned ul {
140
margin-right: 163px;
141
padding-right: 10px;
142
margin-left: 0;
143
padding-left: 0;
144
}
145
146
form ul.inline li {
147
float: right;
148
padding-right: 0;
149
padding-left: 7px;
150
}
151
152
form .aligned p.help,
153
form .aligned div.help {
154
margin-left: 0;
155
margin-right: 160px;
156
padding-right: 10px;
157
}
158
159
form div.help ul,
160
form .aligned .checkbox-row + .help,
161
form .aligned p.date div.help.timezonewarning,
162
form .aligned p.datetime div.help.timezonewarning,
163
form .aligned p.time div.help.timezonewarning {
164
margin-right: 0;
165
padding-right: 0;
166
}
167
168
form .wide p.help,
169
form .wide ul.errorlist,
170
form .wide div.help {
171
padding-left: 0;
172
padding-right: 50px;
173
}
174
175
.submit-row {
176
text-align: right;
177
}
178
179
fieldset .fieldBox {
180
margin-left: 20px;
181
margin-right: 0;
182
}
183
184
.errorlist li {
185
background-position: 100% 12px;
186
padding: 0;
187
}
188
189
.errornote {
190
background-position: 100% 12px;
191
padding: 10px 12px;
192
}
193
194
/* WIDGETS */
195
196
.calendarnav-previous {
197
top: 0;
198
left: auto;
199
right: 10px;
200
background: url(../img/calendar-icons.svg) 0 -15px no-repeat;
201
}
202
203
.calendarnav-next {
204
top: 0;
205
right: auto;
206
left: 10px;
207
background: url(../img/calendar-icons.svg) 0 0 no-repeat;
208
}
209
210
.calendar caption, .calendarbox h2 {
211
text-align: center;
212
}
213
214
.selector {
215
float: right;
216
}
217
218
.selector .selector-filter {
219
text-align: right;
220
}
221
222
.selector-add {
223
background: url(../img/selector-icons.svg) 0 -96px no-repeat;
224
background-size: 24px auto;
225
}
226
227
:enabled.selector-add:focus, :enabled.selector-add:hover {
228
background-position: 0 -120px;
229
}
230
231
.selector-remove {
232
background: url(../img/selector-icons.svg) 0 -144px no-repeat;
233
background-size: 24px auto;
234
}
235
236
:enabled.selector-remove:focus, :enabled.selector-remove:hover {
237
background-position: 0 -168px;
238
}
239
240
.selector-chooseall {
241
background: url(../img/selector-icons.svg) right -128px no-repeat;
242
}
243
244
:enabled.selector-chooseall:focus, :enabled.selector-chooseall:hover {
245
background-position: 100% -144px;
246
}
247
248
.selector-clearall {
249
background: url(../img/selector-icons.svg) 0 -160px no-repeat;
250
}
251
252
:enabled.selector-clearall:focus, :enabled.selector-clearall:hover {
253
background-position: 0 -176px;
254
}
255
256
.inline-deletelink {
257
float: left;
258
}
259
260
form .form-row p.datetime {
261
overflow: hidden;
262
}
263
264
.related-widget-wrapper {
265
float: right;
266
}
267
268
/* MISC */
269
270
.inline-related h2, .inline-group h2 {
271
text-align: right
272
}
273
274
.inline-related h3 span.delete {
275
padding-right: 20px;
276
padding-left: inherit;
277
left: 10px;
278
right: inherit;
279
float:left;
280
}
281
282
.inline-related h3 span.delete label {
283
margin-left: inherit;
284
margin-right: 2px;
285
}
286
287
.inline-group .tabular td.original p {
288
right: 0;
289
}
290
291
.selector .selector-chooser {
292
margin: 0;
293
}
294

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button