Mercurial > moin > 2.0
annotate MoinMoin/themes/basic/static/custom-less/theme.less @ 2758:80a0eed4da98
Removed padding for table headers not having on click sorting feature
author | Saurabh Kathpalia <saurabh.kathpalia95@gmail.com> |
---|---|
date | Mon, 18 Aug 2014 22:12:52 +0530 |
parents | b5a2249d6be6 |
children | 1934add39410 |
rev | line source |
---|---|
2681 | 1 @import "notice.less"; |
2 @import "bootstrap.less"; | |
3 @import "moin-variables.less"; | |
4 @import (less) "colorful.css"; | |
5 | |
6 // ---- Customising the top navbar breakpoint | |
7 @grid-float-breakpoint: @screen-md; | |
8 | |
9 @media screen and (min-width: @grid-float-breakpoint) { | |
10 .moin-pull-right { | |
11 .pull-right; | |
12 } | |
13 } | |
14 | |
15 h1, h2, h3, h4, h5, h6 { | |
16 &:hover, &:focus { | |
17 .moin-permalink { | |
18 display: inline; | |
19 text-decoration: none; | |
20 } | |
21 } | |
22 } | |
23 | |
24 .moin-permalink { | |
25 display: none; | |
26 } | |
27 | |
28 .moin-logo { | |
29 .text-center; | |
30 position: relative; | |
31 padding-top: 23px; | |
32 padding-bottom: 23px; | |
33 } | |
34 | |
35 .moin-flash { | |
36 .alert; | |
37 &>a { | |
38 .alert .alert-link; | |
39 } | |
40 } | |
41 | |
42 .moin-flash-hint { | |
43 &>a { | |
44 .alert-success .alert-link; | |
45 } | |
46 .alert-success; | |
47 } | |
48 | |
49 .moin-flash-info { | |
50 &>a { | |
51 .alert-info .alert-link; | |
52 } | |
53 .alert-info; | |
54 } | |
55 | |
56 .moin-flash-warning, .moin-flash-error, .moin-error { | |
57 &>a { | |
58 .alert-danger .alert-link; | |
59 } | |
60 &>li { | |
61 list-style-type: none; | |
62 } | |
63 .alert-danger; | |
64 padding-left: 0px; | |
65 } | |
66 | |
67 .moin-user-action-special { | |
68 .list-group-item; | |
69 width: 100%; | |
70 color: @link-color; | |
71 &:hover, | |
72 &:focus, | |
73 &:active, | |
74 &.active { | |
75 color: @link-hover-color; | |
76 background-color: @list-group-hover-bg; | |
77 border: 1px solid @list-group-border; | |
78 } | |
79 border: 1px solid @list-group-border; | |
80 border-radius: 0; | |
81 padding: 5px 15px; | |
82 } | |
83 | |
84 .moin-viewoptions, .moin-itemactions, .moin-useractions { | |
85 float: right; | |
86 } | |
87 | |
88 .list-group-item { | |
89 padding: 5px 15px; | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
90 background-color: @search_option_bar_text_color; |
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
91 border: 1px solid @search_option_bar_text_color; |
2696
3a5bd8f33916
Added background color to sidebar in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2695
diff
changeset
|
92 > a { |
2728
3cf58438633e
Fixed the invisible links in meta view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2727
diff
changeset
|
93 color: @search_option_bar_color; |
2696
3a5bd8f33916
Added background color to sidebar in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2695
diff
changeset
|
94 } |
3a5bd8f33916
Added background color to sidebar in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2695
diff
changeset
|
95 } |
3a5bd8f33916
Added background color to sidebar in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2695
diff
changeset
|
96 |
3a5bd8f33916
Added background color to sidebar in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2695
diff
changeset
|
97 .moin-list-heading { |
3a5bd8f33916
Added background color to sidebar in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2695
diff
changeset
|
98 background-color: @navbar-bg; |
3a5bd8f33916
Added background color to sidebar in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2695
diff
changeset
|
99 border: 1px solid @navbar-bg; |
3a5bd8f33916
Added background color to sidebar in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2695
diff
changeset
|
100 font-variant: small-caps; |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
101 color: @search_option_bar_text_color; |
2728
3cf58438633e
Fixed the invisible links in meta view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2727
diff
changeset
|
102 > a { |
3cf58438633e
Fixed the invisible links in meta view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2727
diff
changeset
|
103 color: @search_option_bar_text_color; |
3cf58438633e
Fixed the invisible links in meta view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2727
diff
changeset
|
104 } |
2681 | 105 } |
106 | |
107 .moin-diff-added { | |
108 background-color: @moin-diff-added; | |
109 } | |
110 | |
111 .moin-diff-removed { | |
112 background-color: @moin-diff-removed; | |
113 } | |
114 | |
115 .moin-breadcrumb { | |
116 .breadcrumb; | |
117 > li { | |
118 &+li:before { | |
119 content: "\0020"; // Unicode space which is non-collapsing | |
120 padding: 0px; | |
121 } | |
122 } | |
123 } | |
124 | |
125 .moin-nav { | |
126 .nav; | |
127 margin-bottom: 20px; // override bottom-margin nav-tabs | |
128 } | |
129 | |
130 .moin-shadow { | |
131 > li { | |
132 > a { | |
133 .form-control-focus(); // adds shadow onfocus | |
134 } | |
135 } | |
136 } | |
137 | |
138 .moin-location-breadcrumb { | |
139 display: inline; | |
140 } | |
141 | |
142 .moin-nonexistent { | |
143 color: @link-nonexistent-color !important; | |
144 &:hover { | |
145 color: @link-nonexistent-hover-color; | |
146 } | |
147 } | |
148 | |
149 .moin-sidebar { | |
150 .list-group; | |
151 overflow: hidden; | |
152 } | |
153 | |
154 .moin-navbar-inverse { | |
155 .navbar-inverse; | |
156 background-color: @moin-navbar-inverse-bgcolor; | |
157 padding-left: 0px; | |
158 padding-right: 0px; | |
159 .navbar-nav { | |
160 > li > a { | |
161 color: @moin-navbar-inverse-textcolor; | |
162 } | |
163 > li > a.active { | |
164 color: @navbar-inverse-link-hover-color; | |
165 } | |
166 } | |
167 .navbar-text { | |
168 color: @moin-navbar-inverse-textcolor; | |
169 > a { | |
170 color: @moin-navbar-inverse-textcolor; | |
171 } | |
172 } | |
173 .navbar-brand { | |
174 color: @moin-navbar-inverse-textcolor; | |
175 } | |
176 } | |
177 | |
178 .moin-quicklink { | |
179 position: relative; | |
180 padding: 5px 15px 5px 15px; | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
181 background-color: @search_option_bar_text_color; |
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
182 border: 1px solid @search_option_bar_text_color; |
2681 | 183 margin-bottom: -1px; |
184 | |
2708
b8680cd6cf91
Fixed quicklinks and their tooltips
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2701
diff
changeset
|
185 > a { |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
186 color: @search_option_bar_color; |
2708
b8680cd6cf91
Fixed quicklinks and their tooltips
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2701
diff
changeset
|
187 } |
b8680cd6cf91
Fixed quicklinks and their tooltips
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2701
diff
changeset
|
188 |
2681 | 189 &:last-child { |
190 margin-bottom: 0; | |
191 .border-bottom-radius(@border-radius-base); | |
192 } | |
193 | |
194 // Hover state | |
195 &:hover, | |
196 &:focus { | |
197 background-color: @list-group-hover-bg; | |
198 } | |
199 } | |
200 | |
201 .moin-quicklink-label { | |
202 display: block; | |
203 &:hover, | |
204 &:focus { | |
205 text-decoration: none; | |
206 } | |
207 } | |
208 | |
209 .moin-quicklink-delete { | |
210 position: absolute; | |
211 left: 80%; | |
212 top: 25%; | |
213 &:hover, | |
214 &:focus { | |
215 text-decoration: none; | |
216 } | |
217 } | |
218 | |
219 // transclusion | |
220 .moin-transclusion { | |
221 max-width: 100%; | |
222 } | |
223 | |
224 .moin-item-wrapper { | |
225 position: relative; | |
226 display: inline-block; | |
227 } | |
228 | |
229 div.moin-item-wrapper { | |
230 width: 100%; // force bottom border of transcluded headings to extend across entire page | |
231 } | |
232 | |
233 .moin-item-overlay-ul, | |
234 .moin-item-overlay-lr { | |
235 display: none; | |
236 position: absolute; | |
237 font-size: 1.2em; | |
238 font-weight: bold; | |
239 margin: 0; | |
240 opacity: .5; | |
241 padding: 1px; | |
242 border-color: @link-color; | |
243 border-style: double; | |
244 } | |
245 | |
246 .moin-item-overlay-ul { | |
247 top: -4px; | |
248 left: -4px; | |
249 border-width: 3px 0 0 3px; | |
250 } | |
251 | |
252 .moin-item-overlay-lr { | |
253 bottom: -4px; | |
254 right: -4px; | |
255 border-width: 0 3px 3px 0; | |
256 } | |
257 | |
258 .moin-item-overlay-ul:hover, | |
259 .moin-item-overlay-lr:hover { | |
260 opacity: .8; | |
261 background-color: lighten(@link-color, 40%); | |
262 color: @link-color; | |
263 text-decoration: none; | |
264 } | |
265 | |
266 .comment { | |
267 color: @text-color; | |
268 background-color: lighten(@link-color, 40%); | |
269 } | |
270 | |
271 // added to stretch across the whole width, which is reduced by navbar.less's navbar-form | |
272 .moin-navbar-form{ | |
273 .navbar-form; | |
274 padding-left: 0px; | |
275 padding-right: 0px; | |
276 } | |
277 | |
278 .moin-navbar-header{ | |
279 .navbar-header; | |
280 padding-left: 0px; | |
281 padding-right: 0px; | |
282 } | |
283 | |
284 .moin-toggle-comments-button, .moin-transclusions-button{ | |
285 font-weight: normal; | |
286 } | |
287 | |
288 a.wikilink{ | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
289 color: @search_option_bar_color; |
2681 | 290 } |
291 .moin-bcs-subitems{ | |
292 z-index: 500; | |
293 } | |
294 ul.moin-breadcrumb ul.moin-bcs-subitems{ | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
295 background-color: @search_option_bar_color; |
2681 | 296 } |
297 ul.moin-breadcrumb,ul.moin-breadcrumb ul.moin-bcs-subitems{ | |
298 padding: 0; | |
299 margin: 0; | |
300 display: inline-block; | |
301 } | |
302 ul.moin-breadcrumb li ul.moin-bcs-subitems li{ | |
303 list-style-type: none; | |
304 display: block; | |
305 } | |
306 ul.moin-breadcrumb li ul.moin-bcs-subitems li a{ | |
307 padding: 10px; | |
308 display: inline-block; | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
309 color: @white; |
2681 | 310 } |
311 ul.moin-breadcrumb li { | |
312 position: relative; | |
313 } | |
314 ul.moin-breadcrumb li ul.moin-bcs-subitems{ | |
315 display: none; | |
316 position: absolute; | |
317 } | |
318 ul.moin-breadcrumb li:hover ul.moin-bcs-subitems{ | |
319 display: block; | |
320 } | |
321 .moin-thead{ | |
322 background-color: silver; | |
323 } | |
324 html, body { | |
325 height: 100%; | |
326 } | |
327 // CSS definitions for Index UI borrowed from foobar and modernized theme | |
328 #filter-btn { | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
329 background-color: @bootstrap_default_blue; |
2681 | 330 border-radius: 3px; |
331 display: inline; | |
332 padding: 10px; | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
333 color: @white; |
2681 | 334 margin-bottom: 10px; |
335 } | |
336 .moin-contenttypes-wrapper { | |
337 | |
338 div { | |
339 cursor: pointer; | |
340 display: block; | |
341 } | |
342 | |
343 form { | |
344 display: none; | |
345 | |
346 ul { | |
347 -webkit-padding-start: 0px; | |
348 -moz-padding-start: 0px; | |
349 overflow: hidden; | |
350 } | |
351 | |
352 li { | |
353 | |
354 list-style-type: none; | |
355 float: left; | |
356 width: 50%; | |
357 border-radius: 5px; | |
358 display: inline; | |
359 padding: 5px; | |
360 margin-top: 5px; | |
361 | |
362 label { | |
363 cursor: pointer; | |
364 display: inline; | |
365 line-height: 1.5em; | |
366 vertical-align: middle; | |
367 color: #1e90ff; | |
368 } | |
369 | |
370 span { | |
371 font-size: .8em; | |
372 display: block; | |
373 } | |
374 | |
375 } | |
376 | |
377 .filters { | |
378 background-color: white; | |
379 border: none; | |
380 margin-top: 1em; | |
381 float: none; | |
382 display: block; | |
383 | |
384 .filter-toggle, .filter-more { | |
385 font-size: 1em; | |
386 background-color: #eeeeee; | |
387 border: 1px solid #dddddd; | |
388 padding: 0.5em; | |
389 border-radius: 0.5em; | |
390 margin: 0.2em; | |
391 text-decoration: none; | |
392 } | |
393 } | |
394 } | |
395 } | |
396 .moin-item-index div { | |
397 | |
398 .moin-select-item { | |
399 display: inline-block; | |
400 width: 17px; | |
401 cursor: default; | |
402 margin-top: 1em; | |
403 } | |
404 } | |
405 .moin-download-link { | |
406 display: none; | |
407 } | |
408 .moin-index-message { | |
409 width: 50%; | |
410 margin: 1em auto; | |
411 text-align: center; | |
412 display: none; | |
413 | |
414 span { | |
415 padding: 4px; | |
416 background-color: #007cef; | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
417 color: @white; |
2681 | 418 border: 1px solid #ccc; |
419 border-radius: 5px; | |
420 } | |
421 } | |
422 .moin-index-path { | |
423 margin-left: .5em; | |
424 | |
425 &:before { | |
426 content: icon-folder-close; | |
427 margin: 0.3em | |
428 } | |
429 } | |
430 .moin-clr { | |
431 clear: both; | |
432 } | |
433 .moin-item-index { | |
434 width: 100%; | |
435 margin-left: 0.5em; | |
436 | |
437 div { | |
438 float: left; | |
439 width: 16.5em; | |
440 | |
441 .moin-select-item { | |
442 display: inline-block; | |
443 width: 17px; | |
444 cursor: default; | |
445 margin-top: 1em; | |
446 } | |
447 } | |
448 } | |
449 .moin-index-separator { | |
450 clear: both; | |
451 border-top: 1px dashed #ccc; | |
452 display: none; | |
453 } | |
454 .popup-container { | |
455 margin: 0; | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
456 border: 5px solid @bootstrap_default_blue; |
2681 | 457 border-radius: 6px 6px 0 0; |
458 } | |
459 .popup-header { | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
460 background-color: @bootstrap_default_blue; |
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
461 color: @white; |
2681 | 462 padding: 10px; |
463 margin: 0; | |
464 } | |
465 input { | |
466 | |
467 &[value="X"] { | |
468 padding: 0.1px; | |
469 margin: -.2em; | |
470 width: 19px; | |
471 border-radius: 2em; | |
472 float: right; | |
473 | |
474 &:hover { | |
475 background: #f4f4f4; | |
476 } | |
477 } | |
478 | |
479 &[type="submit"],&[type="button"],button { | |
480 font-weight: bold; | |
481 font-size: .75em; | |
482 background: #d6d5d0; | |
483 padding: 4px 15px; | |
484 border: 1px solid #ccc; | |
485 border-radius: 6px; | |
486 box-shadow: 1px 1px 2px #9d9d9b; | |
487 cursor: pointer; | |
488 } | |
489 | |
490 &:hover { | |
491 box-shadow: 1px 1px 2px #000; | |
492 } | |
493 | |
494 &:active { | |
495 position: relative; | |
496 top: 1px; | |
497 } | |
498 } | |
499 input,select { | |
500 padding: 3px; | |
501 background: #f4f4f4; | |
502 border: 1px solid #ccc; | |
503 border-radius: 2px; | |
504 } | |
505 .popup-body { | |
506 clear: both; | |
507 background-color: #f4f4f4; | |
508 color: #000000; | |
509 padding: 10px; | |
510 margin: 0; | |
511 | |
512 label { | |
513 margin: 5px; | |
514 } | |
515 | |
516 input { | |
517 margin: 8px 5px; | |
518 } | |
519 } | |
520 #moin-initials { | |
521 width: 90%; | |
522 margin: 5px auto; | |
523 text-align: center; | |
524 | |
525 a { | |
526 display: inline-block; | |
527 margin: 0; | |
528 padding: 4px 5px; | |
529 | |
530 &:hover,&.selected { | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
531 background: @bootstrap_default_blue; |
2681 | 532 border-radius: 5px; |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
533 color: @white; |
2681 | 534 text-decoration: none |
535 } | |
536 } | |
537 } | |
538 #popup { | |
539 background: transparent; | |
540 padding: 5px; | |
541 width: 40%; | |
542 position: absolute; | |
543 top: 10%; | |
544 left: 30%; | |
545 display: none; | |
546 z-index: 10; | |
547 } | |
548 .moin-error { | |
549 color: #ff2727; | |
550 background: #d6d5d0; | |
551 padding: 4px; | |
552 margin: 1em; | |
553 text-align: center; | |
554 list-style-type: none; | |
555 border-radius: 5px; | |
556 } | |
557 .moin-textcha { | |
558 padding-top: .2em; | |
559 } | |
560 #moin-upload-cont { | |
561 min-height: 10px; | |
562 } | |
563 #file_upload { | |
564 margin-top: 2em; | |
565 } | |
566 form.upload_file { | |
567 background-color: #d6d5d0; | |
568 border: 1px solid #ccc; | |
569 cursor: pointer; | |
570 direction: ltr; | |
571 font-weight: bold; | |
572 height: 2.5em; | |
573 line-height: 2.5em; | |
574 overflow: hidden; | |
575 position: relative; | |
576 text-align: center; | |
577 width: 15em; | |
578 display: block; | |
579 box-shadow: 0 0 5px #9d9d9b; | |
580 | |
581 &:hover { | |
582 box-shadow: 0 0 5px #000; | |
583 } | |
584 | |
585 input { | |
586 cursor: pointer; | |
587 height: 100%; | |
588 margin: 0; | |
589 opacity: 0; | |
590 position: absolute; | |
591 } | |
592 | |
593 button { | |
594 display: none | |
595 } | |
596 } | |
597 .file_upload_template .file_upload_start { | |
598 visibility: hidden; | |
599 border-width: 0; | |
600 padding: 0; | |
601 | |
602 button { | |
603 width: 0; | |
604 } | |
605 } | |
606 .file_name { | |
607 word-break: break-all; | |
608 word-wrap: break-word; | |
609 max-width: 10em; | |
610 } | |
611 .upload-form { | |
612 display: none; | |
613 } | |
614 .moin-drag { | |
615 font-size: .7em; | |
616 color: #9d9d9b; | |
617 } | |
618 #lightbox { | |
619 background: #f4f4f4; | |
620 opacity: .7; | |
621 position: absolute; | |
622 left: 0; | |
623 top: 0; | |
624 width: 100%; | |
625 height: 100%; | |
626 z-index: 9; | |
627 margin: 0; | |
628 display: none | |
629 } | |
630 .moin-content { | |
631 padding-bottom: 100px; | |
632 } | |
633 .moin-footer { | |
634 bottom: 0; | |
635 position: absolute; | |
636 width: 100%; | |
637 } | |
638 .moin-search-option-bar { | |
639 padding-left: 10px; | |
640 border: 1px solid @gray; | |
641 background-color: @search_option_bar_color; | |
642 color: @search_option_bar_text_color; | |
643 border-radius: 5px; | |
644 > span { | |
645 float: right; | |
646 padding: 10px; | |
647 } | |
648 } | |
649 // set min-width to prevent search box from floating off window to right | |
650 @media (min-width: 768px) { | |
651 .container { | |
652 min-height: 100%; | |
653 position: relative; | |
654 width: auto; | |
655 } | |
656 } | |
657 @media (min-width: 992px) { | |
658 .container { | |
659 min-height: 100%; | |
660 position: relative; | |
661 width: auto; | |
662 } | |
663 } | |
664 @media (min-width: 1200px) { | |
665 .container { | |
666 min-height: 100%; | |
667 position: relative; | |
668 width: auto; | |
669 } | |
670 } | |
671 #moin-ticketsearch-query { | |
672 background-image: url('../../../../static/img/search.png'); | |
673 background-repeat: no-repeat; | |
674 background-position: 5px; | |
675 padding-left: 24px; | |
676 width: 200px; | |
677 right: 40px; | |
2688
d1872000dcdc
Removed HTML validation errors from +tickets view
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2681
diff
changeset
|
678 top: 80px; |
2681 | 679 position: absolute; |
680 } | |
681 #ticket-list thead th:hover { | |
682 background-color: #e8e8e8; | |
683 } | |
684 #ticket-list tr td, #ticket-list thead th { | |
685 cursor: pointer; | |
686 } | |
687 #ticket-list tr td:first-child a { | |
688 font-family: monospace; | |
689 } | |
690 .ticket-query-button { | |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
691 background: @white; |
2681 | 692 padding: 1px 7px; |
693 text-shadow: 0 1px 0 #fff; | |
694 border: 1px solid transparent; | |
695 } | |
696 .ticket-query-button.active, .ticket-query-button:hover { | |
697 background: -webkit-linear-gradient(top, #cccccc 0, #dddddd 13%); | |
698 color: #333; | |
699 box-sizing: border-box; | |
700 border: 1px solid transparent; | |
701 border-radius: 3px; | |
702 } | |
703 .moin-ticketsearch-form { | |
704 display: inline; | |
705 } | |
706 .tablesorter-header { | |
707 background-image: url('../../../../static/img/bg.png'); | |
708 background-repeat: no-repeat; | |
709 background-position: left center; | |
710 } | |
711 .tablesorter-headerAsc { | |
712 background-image: url('../../../../static/img/asc.png'); | |
713 } | |
714 .tablesorter-headerDesc { | |
715 background-image: url('../../../../static/img/desc.png'); | |
716 } | |
717 .tablesorter-header.sorter-false { | |
718 background-image: None; | |
719 } | |
720 .tablesorter-header-inner { | |
721 padding-left: 20px; | |
722 cursor: pointer; | |
723 } | |
2758
80a0eed4da98
Removed padding for table headers not having on click sorting feature
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2735
diff
changeset
|
724 .sorter-false > .tablesorter-header-inner { |
80a0eed4da98
Removed padding for table headers not having on click sorting feature
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2735
diff
changeset
|
725 padding-left:0px; |
80a0eed4da98
Removed padding for table headers not having on click sorting feature
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2735
diff
changeset
|
726 } |
2681 | 727 #ticket-summary { |
728 width: 50%; | |
729 } | |
730 #ticket-list { | |
731 float: right; | |
732 width: 90%; | |
733 } | |
734 .ticket-tags-button { | |
735 padding: 4px; | |
736 width: 100px; | |
737 } | |
738 #ticket-table-tip { | |
739 float: right; | |
740 color: #999999; | |
741 } | |
742 .tickets-sort-button.dropdown { | |
743 display: inline; | |
744 } | |
2691
43987f1b008e
Added ticket-create button and blog-entry-create button in +tickets view and blog view respectively in all themes with a TODO of creating items without any initial fqname/name
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2688
diff
changeset
|
745 #moin-ticket-create-link { |
43987f1b008e
Added ticket-create button and blog-entry-create button in +tickets view and blog view respectively in all themes with a TODO of creating items without any initial fqname/name
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2688
diff
changeset
|
746 display: inline; |
43987f1b008e
Added ticket-create button and blog-entry-create button in +tickets view and blog view respectively in all themes with a TODO of creating items without any initial fqname/name
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2688
diff
changeset
|
747 position: absolute; |
2715
9db0a5f3a6f8
Moved login link to right in +tickets view, increased spacing in EDSP in ticket view, removed extra padding in the table headers and made width of buttons auto
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2699
diff
changeset
|
748 right: 90px; |
2691
43987f1b008e
Added ticket-create button and blog-entry-create button in +tickets view and blog view respectively in all themes with a TODO of creating items without any initial fqname/name
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2688
diff
changeset
|
749 top: 40px; |
43987f1b008e
Added ticket-create button and blog-entry-create button in +tickets view and blog view respectively in all themes with a TODO of creating items without any initial fqname/name
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2688
diff
changeset
|
750 } |
43987f1b008e
Added ticket-create button and blog-entry-create button in +tickets view and blog view respectively in all themes with a TODO of creating items without any initial fqname/name
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2688
diff
changeset
|
751 #moin-ticket-create-link button { |
43987f1b008e
Added ticket-create button and blog-entry-create button in +tickets view and blog view respectively in all themes with a TODO of creating items without any initial fqname/name
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2688
diff
changeset
|
752 width: 150px; |
43987f1b008e
Added ticket-create button and blog-entry-create button in +tickets view and blog view respectively in all themes with a TODO of creating items without any initial fqname/name
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2688
diff
changeset
|
753 height: 35px; |
43987f1b008e
Added ticket-create button and blog-entry-create button in +tickets view and blog view respectively in all themes with a TODO of creating items without any initial fqname/name
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2688
diff
changeset
|
754 padding-top: 6px; |
43987f1b008e
Added ticket-create button and blog-entry-create button in +tickets view and blog view respectively in all themes with a TODO of creating items without any initial fqname/name
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2688
diff
changeset
|
755 } |
2681 | 756 html{ |
757 overflow-y: scroll; | |
758 } | |
759 .moin-hist-rev { | |
760 text-align: center; | |
761 } | |
762 #moin-button-diff { | |
763 text-align: center; | |
764 } | |
765 .menu .submenu { | |
766 display: none; | |
767 margin-bottom: 0px; | |
768 } | |
769 .menu:hover .submenu { | |
770 display: block; | |
771 } | |
2695
7142b94ccbb8
Added h1 heading in Index view in Basic theme to make it consistent with other views
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2688
diff
changeset
|
772 .moin-index-actions { |
7142b94ccbb8
Added h1 heading in Index view in Basic theme to make it consistent with other views
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2688
diff
changeset
|
773 padding-left: 0; |
7142b94ccbb8
Added h1 heading in Index view in Basic theme to make it consistent with other views
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2688
diff
changeset
|
774 .navbar-collapse { |
7142b94ccbb8
Added h1 heading in Index view in Basic theme to make it consistent with other views
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2688
diff
changeset
|
775 padding-left: 0; |
7142b94ccbb8
Added h1 heading in Index view in Basic theme to make it consistent with other views
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2688
diff
changeset
|
776 } |
7142b94ccbb8
Added h1 heading in Index view in Basic theme to make it consistent with other views
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2688
diff
changeset
|
777 } |
2700
842fc45e8060
Made modify edit textarea expand/contract to fit window size like modernized and foobar by setting width as 100%
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2699
diff
changeset
|
778 #editor > textarea { |
842fc45e8060
Made modify edit textarea expand/contract to fit window size like modernized and foobar by setting width as 100%
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2699
diff
changeset
|
779 width: 100%; |
842fc45e8060
Made modify edit textarea expand/contract to fit window size like modernized and foobar by setting width as 100%
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2699
diff
changeset
|
780 } |
2701
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
781 .moin-history-save:before { |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
782 content: url("../img/moin-save.png"); |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
783 } |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
784 .moin-history-trash:before { |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
785 content: url("../img/moin-trash.png"); |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
786 } |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
787 .moin-history-rename:before { |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
788 content: url("../img/moin-rename.png"); |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
789 } |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
790 .moin-history-copy:before { |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
791 content: url("../img/moin-copy.png"); |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
792 } |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
793 .moin-history-revert:before { |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
794 content: url("../img/moin-revert.png"); |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
795 } |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
796 .moin-history-container-header { |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
797 > h2 { |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
798 display: inline; |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
799 } |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
800 > .bookmark-link { |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
801 margin-bottom: 15px; |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
802 margin-left: 20px; |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
803 height: 2em; |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
804 line-height: 1em; |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
805 } |
8d8a01710ca8
Improved Global History view in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2700
diff
changeset
|
806 } |
2721
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
807 .tickets-sort-button .dropdown-menu li form button { |
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
808 display: block; |
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
809 border: none; |
2727
32ab08637a4e
Replaced important hex color values with variables in basic theme's theme.less
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2726
diff
changeset
|
810 background-color: @white; |
2721
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
811 padding: 3px 20px; |
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
812 clear: both; |
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
813 font-weight: normal; |
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
814 white-space: nowrap; |
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
815 } |
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
816 .tickets-sort-button .dropdown-menu li form button:hover, |
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
817 .tickets-sort-button .dropdown-menu li form button:focus { |
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
818 background-color: #f5f5f5; |
81dd9e00bac1
Again added css changes for ticket sort button in +tickets view in basic theme
Saurabh Kathpalia <saurabh.kathpalia95@gmail.com>
parents:
2720
diff
changeset
|
819 } |
2726
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
820 .moin-text-icon { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
821 font-size: 0; |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
822 color: transparent; |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
823 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
824 .moin-alert:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
825 content: url("../img/smileys/alert.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
826 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
827 .moin-angry:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
828 content: url("../img/smileys/angry.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
829 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
830 .moin-attention:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
831 content: url("../img/smileys/attention.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
832 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
833 .moin-biggrin:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
834 content: url("../img/smileys/biggrin.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
835 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
836 .moin-checkmark:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
837 content: url("../img/smileys/checkmark.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
838 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
839 .moin-devil:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
840 content: url("../img/smileys/devil.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
841 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
842 .moin-frown:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
843 content: url("../img/smileys/frown.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
844 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
845 .moin-icon-error:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
846 content: url("../img/smileys/icon-error.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
847 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
848 .moin-icon-info:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
849 content: url("../img/smileys/icon-info.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
850 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
851 .moin-idea:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
852 content: url("../img/smileys/idea.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
853 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
854 .moin-ohwell:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
855 content: url("../img/smileys/ohwell.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
856 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
857 .moin-prio1:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
858 content: url("../img/smileys/prio1.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
859 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
860 .moin-prio2:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
861 content: url("../img/smileys/prio2.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
862 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
863 .moin-prio3:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
864 content: url("../img/smileys/prio3.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
865 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
866 .moin-redface:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
867 content: url("../img/smileys/redface.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
868 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
869 .moin-sad:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
870 content: url("../img/smileys/sad.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
871 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
872 .moin-smile:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
873 content: url("../img/smileys/smile.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
874 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
875 .moin-smile2:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
876 content: url("../img/smileys/smile2.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
877 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
878 .moin-smile3:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
879 content: url("../img/smileys/smile3.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
880 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
881 .moin-smile4:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
882 content: url("../img/smileys/smile4.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
883 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
884 .moin-star_off:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
885 content: url("../img/smileys/star_off.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
886 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
887 .moin-star_on:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
888 content: url("../img/smileys/star_on.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
889 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
890 .moin-thumbs-up:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
891 content: url("../img/smileys/thumbs-up.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
892 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
893 .moin-tired:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
894 content: url("../img/smileys/tired.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
895 } |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
896 .moin-tongue:before { |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
897 content: url("../img/smileys/tongue.png"); |
48df5adceec7
Added css for smileys in basic theme
Ajitesh Gupta <ajgupta93@gmail.com>
parents:
2721
diff
changeset
|
898 } |