##// END OF EJS Templates
Small fix for the bumplimit bar.
neko259 -
r282:0414f856 default
parent child Browse files
Show More
@@ -324,11 +324,20 b' input[type="submit"]:hover {'
324 324
325 325 .bar-value {
326 326 background: rgba(50, 55, 164, 0.45);
327 padding: 2px;
328 327 font-size: 0.9em;
328 height: 1.5em;
329 329 }
330 330
331 331 .bar-bg {
332 position: relative;
332 333 border: solid 1px #888;
333 334 margin: 5px;
335 overflow: hidden;
336 }
337
338 .bar-text {
339 padding: 2px;
340 position: absolute;
341 left: 0;
342 top: 0;
334 343 } No newline at end of file
@@ -320,10 +320,20 b' input[type="submit"]:hover {'
320 320 background: rgba(251, 199, 16, 0.61);
321 321 padding: 2px;
322 322 font-size: 0.9em;
323 height: 1.5em;
323 324 }
324 325
325 326 .bar-bg {
327 position: relative;
326 328 border: 1px solid rgb(204, 204, 204);
327 329 border-radius: 5px 5px 5px 5px;
328 330 margin: 5px;
331 overflow: hidden;
332 }
333
334 .bar-text {
335 padding: 2px;
336 position: absolute;
337 left: 0;
338 top: 0;
329 339 } No newline at end of file
@@ -289,10 +289,22 b' li {'
289 289 .bar-value {
290 290 background: #E3E7F2;
291 291 padding: .1em 1ex;
292 moz-box-sizing: border-box;
293 box-sizing: border-box;
294 height: 1.5em;
292 295 }
293 296
294 297 .bar-bg {
295 298 background: #EA4649;
296 299 border: 1px solid #666;
297 300 margin: 0 1ex 1em 1ex;
301 position: relative;
302 overflow: hidden;
303 }
304
305 .bar-text {
306 padding: 2px;
307 position: absolute;
308 left: 0;
309 top: 0;
298 310 } No newline at end of file
@@ -19,6 +19,8 b''
19 19 {% if bumpable %}
20 20 <div class="bar-bg">
21 21 <div class="bar-value" style="width:{{ bumplimit_progress }}%">
22 </div>
23 <div class="bar-text">
22 24 {{ posts_left }} {% trans 'posts to bumplimit' %}
23 25 </div>
24 26 </div>
General Comments 0
You need to be logged in to leave comments. Login now