author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 18:28:13 +0200 | |
changeset 9 | 177826044cd9 |
parent 7 | cf61fcea0001 |
child 16 | a86126ab1dd4 |
permissions | -rw-r--r-- |
5 | 1 |
/*------------------------------------------------------------------------------ |
2 |
11.2 - Post Revisions |
|
3 |
------------------------------------------------------------------------------*/ |
|
4 |
.revisions-control-frame, |
|
5 |
.revisions-diff-frame { |
|
6 |
position: relative; |
|
7 |
} |
|
8 |
||
9 | 9 |
.revisions-diff-frame { |
10 |
top: 10px; |
|
11 |
} |
|
12 |
||
5 | 13 |
.revisions-controls { |
14 |
padding-top: 40px; |
|
15 |
z-index: 1; |
|
16 |
} |
|
17 |
||
18 |
.revisions-controls input[type="checkbox"] { |
|
19 |
position: relative; |
|
20 |
top: -1px; |
|
21 |
vertical-align: text-bottom; |
|
22 |
} |
|
23 |
||
24 |
.revisions.pinned .revisions-controls { |
|
25 |
position: fixed; |
|
26 |
top: 0; |
|
27 |
height: 82px; |
|
28 |
background: #fff; |
|
9 | 29 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
5 | 30 |
} |
31 |
||
32 |
.revisions-tickmarks { |
|
33 |
position: relative; |
|
34 |
margin: 0 auto; |
|
35 |
height: 0.7em; |
|
36 |
top: 7px; |
|
37 |
max-width: 70%; |
|
38 |
box-sizing: border-box; |
|
39 |
background-color: #fff; |
|
40 |
} |
|
41 |
||
42 |
.revisions-tickmarks > div { |
|
43 |
position: absolute; |
|
44 |
height: 100%; |
|
45 |
border-right: 1px solid #a0a5aa; |
|
46 |
box-sizing: border-box; |
|
47 |
} |
|
48 |
||
49 |
.revisions-tickmarks > div:first-child { |
|
50 |
border-width: 0; |
|
51 |
} |
|
52 |
||
53 |
.comparing-two-revisions .revisions-controls { |
|
54 |
height: 140px; |
|
55 |
} |
|
56 |
||
57 |
.comparing-two-revisions.pinned .revisions-controls { |
|
58 |
height: 124px; |
|
59 |
} |
|
60 |
||
61 |
.revisions .diff-error { |
|
62 |
position: absolute; |
|
63 |
text-align: center; |
|
64 |
margin: 0 auto; |
|
65 |
width: 100%; |
|
66 |
display: none; |
|
67 |
} |
|
68 |
||
69 |
.revisions.diff-error .diff-error { |
|
70 |
display: block; |
|
71 |
} |
|
72 |
||
73 |
.revisions .loading-indicator { |
|
74 |
position: absolute; |
|
75 |
vertical-align: middle; |
|
76 |
opacity: 0; |
|
77 |
width: 100%; |
|
78 |
width: calc( 100% - 30px ); |
|
79 |
top: 50%; |
|
80 |
top: calc( 50% - 10px ); |
|
81 |
transition: opacity 0.5s; |
|
82 |
filter: alpha(opacity=0); /* ie8 and earlier */ |
|
83 |
} |
|
84 |
||
85 |
body.folded .revisions .loading-indicator { |
|
86 |
margin-right: -32px; |
|
87 |
} |
|
88 |
||
89 |
.revisions .loading-indicator span.spinner { |
|
90 |
display: block; |
|
91 |
margin: 0 auto; |
|
92 |
float: none; |
|
93 |
} |
|
94 |
||
95 |
.revisions.loading .loading-indicator { |
|
96 |
opacity: 1; |
|
97 |
filter: alpha(opacity=100); /* ie8 and earlier */ |
|
98 |
} |
|
99 |
||
100 |
.revisions .diff { |
|
101 |
transition: opacity 0.5s; |
|
102 |
} |
|
103 |
||
104 |
.revisions.loading .diff { |
|
105 |
opacity: 0.5; |
|
106 |
filter: alpha(opacity=50); /* ie8 and earlier */ |
|
107 |
} |
|
108 |
||
109 |
.revisions.diff-error .diff { |
|
110 |
visibility: hidden; |
|
111 |
} |
|
112 |
||
113 |
.revisions-meta { |
|
114 |
margin-top: 20px; |
|
115 |
background-color: #fff; |
|
9 | 116 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
117 |
overflow: hidden; |
|
5 | 118 |
} |
119 |
||
120 |
.revisions.pinned .revisions-meta { |
|
121 |
box-shadow: none; |
|
122 |
} |
|
123 |
||
124 |
.revision-toggle-compare-mode { |
|
125 |
position: absolute; |
|
126 |
top: 0; |
|
127 |
left: 0; |
|
128 |
} |
|
129 |
||
130 |
.comparing-two-revisions .revisions-previous, |
|
131 |
.comparing-two-revisions .revisions-next, |
|
132 |
.revisions-meta .diff-meta-to strong { |
|
133 |
display: none; |
|
134 |
} |
|
135 |
||
136 |
.revisions-controls .author-card .date { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
137 |
color: #72777c; |
5 | 138 |
} |
139 |
||
140 |
.revisions-controls .author-card.autosave { |
|
141 |
color: #d54e21; |
|
142 |
} |
|
143 |
||
144 |
.revisions-controls .author-card .author-name { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
145 |
font-weight: 600; |
5 | 146 |
} |
147 |
||
148 |
.comparing-two-revisions .diff-meta-to strong { |
|
149 |
display: block; |
|
150 |
} |
|
151 |
||
152 |
.revisions.pinned .revisions-buttons { |
|
153 |
padding: 0 11px; |
|
154 |
} |
|
155 |
||
156 |
.revisions-previous, |
|
157 |
.revisions-next { |
|
158 |
position: relative; |
|
159 |
z-index: 1; |
|
160 |
} |
|
161 |
||
162 |
.revisions-previous { |
|
163 |
float: right; |
|
164 |
} |
|
165 |
||
166 |
.revisions-next { |
|
167 |
float: left; |
|
168 |
} |
|
169 |
||
170 |
.revisions-controls .wp-slider { |
|
171 |
max-width: 70%; |
|
172 |
margin: 0 auto; |
|
173 |
top: -3px; |
|
174 |
} |
|
175 |
||
176 |
.revisions-diff { |
|
177 |
padding: 15px; |
|
178 |
background-color: #fff; |
|
9 | 179 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
5 | 180 |
} |
181 |
||
182 |
.revisions-diff h3:first-child { |
|
183 |
margin-top: 0; |
|
184 |
} |
|
185 |
||
186 |
/* Revision meta box */ |
|
187 |
.post-revisions li img, |
|
188 |
#revisions-meta-restored img { |
|
189 |
vertical-align: middle; |
|
190 |
} |
|
191 |
||
192 |
table.diff tbody tr td:nth-child(2) { |
|
193 |
width: 4%; |
|
194 |
} |
|
195 |
||
196 |
table.diff { |
|
197 |
table-layout: fixed; |
|
198 |
width: 100%; |
|
199 |
white-space: pre-wrap; |
|
200 |
} |
|
201 |
||
202 |
table.diff col.content { |
|
203 |
width: auto; |
|
204 |
} |
|
205 |
||
206 |
table.diff col.content.diffsplit { |
|
207 |
width: 48%; |
|
208 |
} |
|
209 |
||
210 |
table.diff col.diffsplit.middle { |
|
211 |
width: auto; |
|
212 |
} |
|
213 |
||
214 |
table.diff col.ltype { |
|
215 |
width: 30px; |
|
216 |
} |
|
217 |
||
218 |
table.diff tr { |
|
219 |
background-color: transparent; |
|
220 |
} |
|
221 |
||
222 |
table.diff td, |
|
223 |
table.diff th { |
|
224 |
font-family: Consolas, Monaco, monospace; |
|
225 |
font-size: 14px; |
|
226 |
line-height: 1.618; |
|
227 |
padding: .5em; |
|
228 |
vertical-align: top; |
|
229 |
word-wrap: break-word; |
|
230 |
} |
|
231 |
||
232 |
table.diff td h1, |
|
233 |
table.diff td h2, |
|
234 |
table.diff td h3, |
|
235 |
table.diff td h4, |
|
236 |
table.diff td h5, |
|
237 |
table.diff td h6 { |
|
238 |
margin: 0; |
|
239 |
} |
|
240 |
||
241 |
table.diff .diff-deletedline del, |
|
242 |
table.diff .diff-addedline ins { |
|
243 |
text-decoration: none; |
|
244 |
} |
|
245 |
||
246 |
table.diff .diff-deletedline { |
|
247 |
background-color: #ffe9e9; |
|
248 |
} |
|
249 |
||
250 |
table.diff .diff-deletedline del { |
|
251 |
background-color: #faa; |
|
252 |
} |
|
253 |
||
254 |
table.diff .diff-addedline { |
|
255 |
background-color: #e9ffe9; |
|
256 |
} |
|
257 |
||
258 |
table.diff .diff-addedline ins { |
|
259 |
background-color: #afa; |
|
260 |
} |
|
261 |
||
262 |
.diff-meta { |
|
263 |
padding: 5px; |
|
264 |
clear: both; |
|
265 |
min-height: 32px; |
|
266 |
} |
|
267 |
||
268 |
.diff-title strong { |
|
269 |
line-height: 32px; |
|
270 |
min-width: 60px; |
|
271 |
text-align: left; |
|
272 |
float: right; |
|
273 |
margin-left: 5px; |
|
274 |
} |
|
275 |
||
276 |
.revisions-controls .author-card .author-info { |
|
277 |
font-size: 12px; |
|
278 |
line-height: 16px; |
|
279 |
} |
|
280 |
||
281 |
.revisions-controls .author-card .avatar, |
|
282 |
.revisions-controls .author-card .author-info { |
|
283 |
float: right; |
|
284 |
margin-right: 6px; |
|
285 |
margin-left: 6px; |
|
286 |
} |
|
287 |
||
288 |
.revisions-controls .author-card .byline { |
|
289 |
display: block; |
|
290 |
font-size: 12px; |
|
291 |
} |
|
292 |
||
293 |
.revisions-controls .author-card .avatar { |
|
294 |
vertical-align: middle; |
|
295 |
} |
|
296 |
||
297 |
.diff-meta input.restore-revision { |
|
298 |
float: left; |
|
299 |
margin-right: 6px; |
|
300 |
margin-left: 6px; |
|
9 | 301 |
margin-top: 2px; |
5 | 302 |
} |
303 |
||
304 |
.diff-meta-from { |
|
305 |
display: none; |
|
306 |
} |
|
307 |
||
308 |
.comparing-two-revisions .diff-meta-from { |
|
309 |
display: block; |
|
310 |
} |
|
311 |
||
312 |
.revisions-tooltip { |
|
313 |
position: absolute; |
|
314 |
bottom: 105px; |
|
315 |
margin-left: 0; |
|
316 |
margin-right: -69px; |
|
317 |
z-index: 0; |
|
318 |
max-width: 350px; |
|
319 |
min-width: 130px; |
|
320 |
padding: 8px 4px; |
|
321 |
display: none; |
|
322 |
opacity: 0; |
|
323 |
} |
|
324 |
||
325 |
.revisions-tooltip.flipped { |
|
326 |
margin-right: 0; |
|
327 |
margin-left: -70px; |
|
328 |
} |
|
329 |
||
330 |
.revisions.pinned .revisions-tooltip { |
|
331 |
display: none !important; |
|
332 |
} |
|
333 |
||
334 |
.comparing-two-revisions .revisions-tooltip { |
|
335 |
bottom: 145px; |
|
336 |
} |
|
337 |
||
338 |
.revisions-tooltip-arrow { |
|
339 |
width: 70px; |
|
340 |
height: 15px; |
|
341 |
overflow: hidden; |
|
342 |
position: absolute; |
|
343 |
right: 0; |
|
344 |
margin-right: 35px; |
|
345 |
bottom: -15px; |
|
346 |
} |
|
347 |
||
348 |
.revisions-tooltip.flipped .revisions-tooltip-arrow { |
|
349 |
margin-right: 0; |
|
350 |
margin-left: 35px; |
|
351 |
right: auto; |
|
352 |
left: 0; |
|
353 |
} |
|
354 |
||
355 |
.revisions-tooltip-arrow > span { |
|
356 |
content: ""; |
|
357 |
position: absolute; |
|
358 |
right: 20px; |
|
359 |
top: -20px; |
|
360 |
width: 25px; |
|
361 |
height: 25px; |
|
362 |
transform: rotate(-45deg); |
|
363 |
} |
|
364 |
||
365 |
.revisions-tooltip.flipped .revisions-tooltip-arrow > span { |
|
366 |
right: auto; |
|
367 |
left: 20px; |
|
368 |
} |
|
369 |
||
370 |
.ie8 .revisions-tooltip-arrow > span { |
|
371 |
right: 15px; |
|
372 |
top: -25px; |
|
373 |
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"; |
|
374 |
} |
|
375 |
||
376 |
.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { |
|
377 |
left: 25px; |
|
378 |
} |
|
379 |
||
380 |
.revisions-tooltip, |
|
381 |
.revisions-tooltip-arrow > span { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
382 |
border: 1px solid #ddd; |
5 | 383 |
background-color: #fff; |
384 |
} |
|
385 |
||
386 |
.revisions-tooltip { |
|
387 |
display: none; |
|
388 |
} |
|
389 |
||
390 |
.arrow { |
|
391 |
width: 70px; |
|
392 |
height: 16px; |
|
393 |
overflow: hidden; |
|
394 |
position: absolute; |
|
395 |
right: 0; |
|
396 |
margin-right: -35px; |
|
397 |
bottom: 90px; |
|
398 |
z-index: 10000; |
|
399 |
} |
|
400 |
||
401 |
.arrow:after { |
|
402 |
z-index: 9999; |
|
403 |
background-color: #fff; |
|
9 | 404 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
5 | 405 |
} |
406 |
||
407 |
.arrow.top { |
|
408 |
top: -16px; |
|
409 |
bottom: auto; |
|
410 |
} |
|
411 |
||
412 |
.arrow.left { |
|
413 |
right: 20%; |
|
414 |
} |
|
415 |
||
416 |
.arrow:after { |
|
417 |
content: ""; |
|
418 |
position: absolute; |
|
419 |
right: 20px; |
|
420 |
top: -20px; |
|
421 |
width: 25px; |
|
422 |
height: 25px; |
|
423 |
transform: rotate(-45deg); |
|
424 |
} |
|
425 |
||
426 |
.revisions-tooltip, |
|
427 |
.revisions-tooltip-arrow:after { |
|
428 |
border-width: 1px; |
|
429 |
border-style: solid; |
|
430 |
} |
|
431 |
||
432 |
div.revisions-controls > .wp-slider > .ui-slider-handle { |
|
433 |
margin-right: -10px; |
|
434 |
} |
|
435 |
||
436 |
.rtl div.revisions-controls > .wp-slider > .ui-slider-handle { |
|
437 |
margin-left: -10px; |
|
438 |
} |
|
439 |
||
440 |
/* jQuery UI Slider */ |
|
441 |
.wp-slider.ui-slider { |
|
442 |
position: relative; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
443 |
border: 1px solid #ddd; |
5 | 444 |
text-align: right; |
445 |
cursor: pointer; |
|
446 |
} |
|
447 |
||
448 |
.wp-slider .ui-slider-handle { |
|
449 |
border-radius: 50%; |
|
450 |
height: 18px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
451 |
margin-top: -5px; |
5 | 452 |
outline: none; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
453 |
padding: 2px; |
5 | 454 |
position: absolute; |
455 |
width: 18px; |
|
456 |
z-index: 2; |
|
457 |
touch-action: none; |
|
458 |
} |
|
459 |
||
460 |
.wp-slider .ui-slider-handle, |
|
461 |
.wp-slider .ui-slider-handle.focus { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
462 |
background: #f7f7f7; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
463 |
border: 1px solid #ccc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
464 |
box-shadow: 0 1px 0 #cccccc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
465 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
466 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
467 |
.wp-slider .ui-slider-handle:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
468 |
.wp-slider .ui-slider-handle.ui-state-hover { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
469 |
background: #fafafa; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
470 |
border-color: #999; |
5 | 471 |
} |
472 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
473 |
.wp-slider .ui-slider-handle:active, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
474 |
.wp-slider .ui-slider-handle.ui-state-active { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
475 |
background: #eee; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
476 |
border-color: #999; |
9 | 477 |
box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); |
478 |
transform: translateY(1px); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
479 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
480 |
|
5 | 481 |
.wp-slider .ui-slider-handle:before { |
482 |
background: none; |
|
483 |
position: absolute; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
484 |
top: 2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
485 |
right: 2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
486 |
color: #555; |
5 | 487 |
content: "\f229"; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
488 |
font: normal 18px/1 dashicons; |
5 | 489 |
speak: none; |
490 |
-webkit-font-smoothing: antialiased; |
|
491 |
-moz-osx-font-smoothing: grayscale; |
|
492 |
} |
|
493 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
494 |
.wp-slider .ui-slider-handle:hover:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
495 |
.wp-slider .ui-slider-handle.ui-state-hover:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
496 |
color: #23282d; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
497 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
498 |
|
5 | 499 |
.wp-slider .ui-slider-handle.from-handle:before, |
500 |
.wp-slider .ui-slider-handle.to-handle:before { |
|
501 |
font-size: 20px !important; |
|
502 |
margin: -1px -1px 0 0; |
|
503 |
} |
|
504 |
||
505 |
.wp-slider .ui-slider-handle.from-handle:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
506 |
content: "\f141"; |
5 | 507 |
} |
508 |
||
509 |
.wp-slider .ui-slider-handle.to-handle:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
510 |
content: "\f139"; |
5 | 511 |
} |
512 |
||
513 |
.rtl .wp-slider .ui-slider-handle.from-handle:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
514 |
content: "\f139"; |
5 | 515 |
} |
516 |
||
517 |
.rtl .wp-slider .ui-slider-handle.to-handle:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
518 |
content: "\f141"; |
5 | 519 |
left: -1px; |
520 |
} |
|
521 |
||
522 |
.wp-slider .ui-slider-range { |
|
523 |
position: absolute; |
|
524 |
font-size: .7em; |
|
525 |
display: block; |
|
526 |
border: 0; |
|
527 |
background-color: transparent; |
|
528 |
background-image: none; |
|
529 |
} |
|
530 |
||
531 |
.wp-slider.ui-slider-horizontal { |
|
532 |
height: .7em; |
|
533 |
} |
|
534 |
||
535 |
.wp-slider.ui-slider-horizontal .ui-slider-handle { |
|
536 |
top: -.25em; |
|
537 |
margin-right: -.6em; |
|
538 |
} |
|
539 |
||
540 |
.wp-slider.ui-slider-horizontal .ui-slider-range { |
|
541 |
top: 0; |
|
542 |
height: 100%; |
|
543 |
} |
|
544 |
||
545 |
.wp-slider.ui-slider-horizontal .ui-slider-range-min { |
|
546 |
right: 0; |
|
547 |
} |
|
548 |
||
549 |
.wp-slider.ui-slider-horizontal .ui-slider-range-max { |
|
550 |
left: 0; |
|
551 |
} |
|
552 |
||
553 |
/* =Media Queries |
|
554 |
-------------------------------------------------------------- */ |
|
555 |
||
556 |
/** |
|
557 |
* HiDPI Displays |
|
558 |
*/ |
|
559 |
@media print, |
|
560 |
(-webkit-min-device-pixel-ratio: 1.25), |
|
561 |
(min-resolution: 120dpi) { |
|
562 |
.revision-tick.completed-false { |
|
563 |
background-image: url(../images/spinner-2x.gif); |
|
564 |
} |
|
565 |
} |
|
566 |
||
9 | 567 |
@media screen and (max-width: 782px) { |
5 | 568 |
#diff-next-revision, |
569 |
#diff-previous-revision { |
|
570 |
margin-top: -1em; |
|
571 |
} |
|
572 |
||
9 | 573 |
.revisions-buttons { |
574 |
overflow: hidden; |
|
575 |
margin-bottom: 15px; |
|
576 |
} |
|
577 |
||
578 |
.revisions-controls, |
|
579 |
.comparing-two-revisions .revisions-controls { |
|
580 |
height: 170px; |
|
581 |
} |
|
582 |
||
583 |
.revisions-tooltip { |
|
584 |
bottom: 130px; |
|
585 |
z-index: 2; |
|
586 |
} |
|
587 |
||
588 |
.diff-meta { |
|
589 |
overflow: hidden; |
|
590 |
} |
|
591 |
||
5 | 592 |
table.diff { |
593 |
-ms-word-break: break-all; |
|
594 |
word-break: break-all; |
|
595 |
word-wrap: break-word; |
|
596 |
} |
|
9 | 597 |
|
598 |
.diff-meta input.restore-revision { |
|
599 |
margin-top: 0; |
|
600 |
} |
|
5 | 601 |
} |