]> git.wh0rd.org - tt-rss.git/blame - tt-rss.css
reduce daemon chattiness a bit
[tt-rss.git] / tt-rss.css
CommitLineData
83cd33fc 1body#ttrssMain, body#ttrssPrefs, body#ttrssLogin, body {
e5d758e3
AD
2 background : white;
3 color : black;
4 margin : 0px;
5 padding : 0px;
0e2d03a7 6 font-family : sans-serif;
e5df6e9e 7 font-size : 12px;
1cd17194
AD
8}
9
64029210
AD
10body#ttrssPrefs {
11 background-color : #ecf4ff;
12}
13
14body#ttrssPrefs #footer, body#ttrssPrefs #header {
07a0c540 15 background-color : #ecf4ff;
e243d2c3
AD
16 padding-left : 8px;
17 padding-right : 8px;
64029210
AD
18}
19
e828e31e 20div.postReply {
1c3187cf 21 padding : 0px;
1cd17194
AD
22}
23
f7181e9b 24div.postReply a {
e5d758e3 25 color : #4684ff;
f7181e9b
AD
26}
27
28div.postReply a:hover {
e5d758e3 29 color : black;
f7181e9b
AD
30}
31
e828e31e 32div.postReply div.postHeader {
1c3187cf 33 border-width : 0px 0px 1px 0px;
64ab16ac 34 border-style : solid;
b7a6e754 35 border-color : #c0c0c0;
b6173bd5 36 background : #fafafa;
88d305f4 37 box-shadow : 0px 0px 3px 0px #ccc;
1c3187cf 38 padding : 5px;
64ab16ac 39 color : #909090;
96b58583
AD
40}
41
c6c010d9
AD
42div.postReply div.postTitle {
43 overflow : hidden;
5f938254 44 text-overflow: ellipsis;
c6c010d9
AD
45 white-space : nowrap;
46}
47
48div.postReply div.postDate {
49 padding-left : 10px;
50}
51
e828e31e 52div.postReply div.postContent {
e5d758e3 53 padding : 10px;
ae096313 54 font-size : 12px;
f0601b87
AD
55}
56
f325d942
AD
57div.postReply div.postContent img {
58 border-width : 0px;
762c9064 59 max-width : 98%;
2eee8544 60 height: auto;
f325d942
AD
61}
62
ce53e200 63div.postReply div.postEnclosures {
ce53e200 64 margin-top : 1em;
ce53e200
AD
65 color : gray;
66}
67
5f014cf1
AD
68div.postReply img.tagsPic {
69 width : 16px;
70 height : 16px;
c7e51de1 71 margin-left : 4px;
5f014cf1
AD
72 vertical-align : middle;
73}
74
c7e51de1
AD
75div.articleNote {
76 background-color : #fff7d5;
c7e51de1 77 padding : 5px;
fcfa9ef1 78 border-style : none none dashed none;
c7e51de1 79 border-color : #e7d796;
fcfa9ef1
AD
80 border-width : 1px;
81 background-color : #fff7d5;
c7e51de1 82 color : #9a8c59;
fcfa9ef1
AD
83}
84
85div.articleNote div.noteEdit {
86 float : right;
87 cursor : pointer;
c7e51de1
AD
88}
89
06202d88 90div.postReply span.author {
ae096313 91 font-size : 12px;
06202d88 92}
5f014cf1 93
e828e31e 94h1 {
442a9b8c 95 font-size : 18px;
f0601b87
AD
96}
97
e828e31e 98h2 {
442a9b8c 99 font-size : 16px;
e5d758e3
AD
100 font-weight : bold;
101 border-width : 0px 0px 1px 0px;
102 border-style : solid;
103 border-color : #ecf4ff;
1cd17194
AD
104}
105
f5a50b25 106h3 {
ae096313 107 font-size : 12px;
e5d758e3
AD
108 font-weight : bold;
109 border-width : 0px 0px 1px 0px;
110 border-style : solid;
111 border-color : #ecf4ff;
f5a50b25
AD
112}
113
e828e31e 114hr {
e5d758e3
AD
115 border-width : 0px 0px 1px 0px;
116 border-style : dashed;
117 border-color : #e0e0e0;
e828e31e 118}
67824557 119
e828e31e 120a {
e5d758e3
AD
121 color : black;
122 text-decoration : none;
1cd17194
AD
123}
124
e828e31e 125a:hover {
e5d758e3 126 color : #4684ff;
9b307248
AD
127}
128
e828e31e 129#piggie {
d437c8cf 130 z-index : 999;
e5d758e3 131 position : absolute;
9b307248
AD
132}
133
f407c086 134#notify {
95437e9e 135 bottom : 10px;
919984a4
AD
136 right : 10px;
137 border-width : 1px;
f407c086 138 border-style : solid;
0ceded7a 139 position : absolute;
95437e9e 140 font-size : 12px;
fcc36744 141 z-index : 99;
919984a4
AD
142 padding : 5px;
143 min-width : 200px;
144 box-shadow : 0px 0px 2px #ccc;
1cd17194
AD
145}
146
0d32b41e
AD
147#notify img {
148 vertical-align : middle;
95437e9e
AD
149 max-height : 14px;
150}
151
152#notify span.msg {
153 width : 100%;
154}
155
156#notify span.close {
157 text-align : right;
158}
159
160#notify span {
161 display : table-cell;
162 vertical-align : middle;
163 padding : 4px;
0d32b41e
AD
164}
165
919984a4 166.notify {
42c32916
AD
167 border-color : #d7c47a;
168 background-color : #fff7d5;
42c32916
AD
169}
170
919984a4 171.notify.progress {
f407c086
AD
172 border-color : #d7c47a;
173 background-color : #fff7d5;
f407c086
AD
174}
175
919984a4
AD
176.notify.info {
177 border-color : #88b0f0;
178 background-color : #ecf4ff;
179}
180
181.notify.error {
f407c086
AD
182 background-color : #ffcccc;
183 border-color : #ff0000;
f407c086
AD
184}
185
a0ddecb9 186.hl.Unread div.hlTitle {
f820f205
AD
187 font-weight : bold;
188}
189
a0ddecb9 190.hl.even.Grayed {
8a06b1db 191 background : #f0f0f0;
e5d758e3 192 color : #909090;
f28b542c 193 border-width : 0px 0px 1px 0px;
dc803347
AD
194 border-style : solid;
195 border-color : #c0c0c0;
196 border-collapse : collapse;
b7f4bda2
AD
197}
198
a0ddecb9 199.hl.odd.Grayed {
e5d758e3 200 color : #909090;
f07c0eb4
AD
201}
202
a7c0e150
AD
203.hl {
204 border-width : 0px 1px 1px 0px;
dc803347
AD
205 border-style : solid;
206 border-color : #c0c0c0;
ac43eba1 207}
a2015351 208
a7c0e150
AD
209.hl.active {
210 background : #ecf4ff ! important;
f28b542c
AD
211}
212
a7c0e150 213.hl.even {
8a06b1db 214 background : #f0f0f0;
dc803347 215 border-collapse : collapse;
f07c0eb4
AD
216}
217
a7c0e150
AD
218.hl.odd {
219 background : white;
f07c0eb4 220}
508a81e1 221
f820f205 222div.filterTestHolder {
bec2ecd9 223 height : 300px;
9c483746 224 overflow : auto;
a8328019
AD
225 border-color : #c0c0c0;
226 border-style : solid;
227 margin : 0px 0px 5px 0px;
bec2ecd9 228 background-color : #ecf4ff;
e1218480
AD
229 border-width : 1px 1px 1px 1px;
230}
231
f820f205 232
5f8b2573 233#content-insert blockquote, #headlines-frame blockquote, .dijitContentPane blockquote {
18bfbb0c
AD
234 margin : 5px 0px 5px 0px;
235 padding : 10px;
236 color : gray;
237 border-width : 0px 0px 0px 3px;
083020ad
AD
238 border-color : #c0c0c0;
239 border-style : solid;
18bfbb0c 240 background : #fafafa;
7dc66a61 241}
e2f8f7b4 242
5f8b2573 243#content-insert code, #headlines-frame code, .dijitContentPane code {
8bebe198 244 color : #009900;
48a8d154 245 font-family : monospace;
48a8d154 246 font-size : 12px;
8bebe198
AD
247}
248
249#content-insert pre, #headlines-frame pre, .dijitContentPane pre {
250 margin : 5px 0px 5px 0px;
251 padding : 10px;
252 color : gray;
253 font-family : monospace;
254 font-size : 12px;
255 border-width : 0px;
256 border-color : #c0c0c0;
257 border-style : solid;
258 background : #fafafa;
259 display : block;
526f6906
AD
260 max-width : 98%;
261 overflow : auto;
48a8d154
AD
262}
263
6deafe90
AD
264div.notice, div.warning, div.error {
265 padding : 4px 10px 4px 4px;
266 display : inline-block;
fcef9eea 267 margin : 2px 0px 4px 0px;
0f2c4755 268 font-size : 12px;
6deafe90
AD
269 box-shadow : 0px 0px 2px #ccc;
270}
271
fcef9eea
AD
272div.notice div.inner, div.warning div.inner, div.error div.inner {
273 vertical-align : middle;
274}
275
0d32b41e 276div.notice {
6deafe90 277 background : #ecf4ff;
0d32b41e
AD
278}
279
ab3d0b99 280div.warning {
e5d758e3 281 background : #fff7d5;
1b74062f
AD
282}
283
84916243 284div.error {
84916243 285 background : #ffcccc;
6deafe90
AD
286}
287
288div.warning img, div.notice img, div.error img {
289 margin-right : 4px;
290 vertical-align : middle;
3c200461
AD
291}
292
293div.warning span, div.notice span, div.error span {
6d9426fe 294 display : table-cell;
3c200461
AD
295 vertical-align : middle;
296
84916243
AD
297}
298
ab3d0b99 299ul.nomarks {
e5d758e3
AD
300 list-style-type : none;
301 margin : 0px;
302 padding : 10px;
ab3d0b99
AD
303}
304
b7ade39d 305div.prefHelp {
e5d758e3 306 color : gray;
abe4d057 307 padding : 5px;
8cb74804
AD
308}
309
365f95dc
AD
310span.feed_error {
311 color : red;
312}
313
746dcf42 314.insensitive {
e5d758e3 315 color : gray;
bca02305 316}
afb7a1d6 317
d4d6d528
AD
318.insensitive a {
319 color : #4684ff;
320}
321
322.insensitive a:hover {
323 color : black;
324}
325
6e4f4ce1 326div#headlines-toolbar {
d4eebd8b 327 border-width : 0px 0px 1px 0px;
f1080825 328 background-color : #f0f0f0;
a0ddecb9 329 border-color : #c0c0c0;
ae096313 330 font-size : 11px;
0e2d03a7 331 font-family : "Segoe UI", Tahoma, sans-serif;
442a9b8c 332 color : gray;
fcf70c51 333 padding : 0px;
6e4f4ce1
AD
334 margin : 0px;
335 overflow : hidden;
f1080825
AD
336 height : 25px;
337 line-height : 25px;
338 padding-left : 4px;
8b27182a
AD
339}
340
fcf70c51
AD
341div#headlines-toolbar .dijitSelect {
342 font-size : 11px;
f1080825
AD
343 position : relative;
344 top : -2px;
fcf70c51
AD
345}
346
f1080825
AD
347div#headlines-toolbar span.r {
348 float: right;
349 position: relative;
f1080825 350 padding : 0 4px 0px 4px;
fcf70c51 351 text-align : right;
f1080825
AD
352}
353
f1080825
AD
354div#headlines-toolbar span.r span.error {
355 color : red;
356}
357
358div#headlines-toolbar span.r a {
db23a8ee 359 color : gray;
c1c9df00
AD
360}
361
f1080825
AD
362div#headlines-toolbar span.r a:hover {
363 color : black;
26a1e185
AD
364}
365
591c396d 366span.contentPreview {
e5d758e3
AD
367 color : gray;
368 font-weight : normal;
591c396d 369}
179d6f57 370
0f172fff 371span.contentPreview:hover {
e5d758e3 372 color : #4684ff;
0f172fff
AD
373}
374
8cc5e965 375span.hlLabelRef {
e2549229 376 background-color : #fff7d5;
86edc737 377 font-size : 8px;
e2549229
AD
378 color : #063064;
379 font-weight : normal;
380 margin : 0px 3px 0px 3px;
381 padding : 0px 4px 0px 4px;
382 white-space: nowrap;
383}
384
b810a0f1 385div.postHeader div.postDate {
e5d758e3
AD
386 text-align : right;
387 color : gray;
b810a0f1 388 float : right;
9167e250 389}
36aab70f 390
b810a0f1
AD
391div.postHeader div {
392 padding-bottom : 3px;
ae096313 393 font-size : 12px;
ed51e128
AD
394}
395
36aab70f 396#feedUpdateErrors {
e5d758e3 397 display : none;
36aab70f
AD
398}
399
42918a07 400#allEntryTags {
ae096313 401 font-size : 12px;
e5d758e3
AD
402 border-width : 0px 0px 1px 0px;
403 border-style : solid;
404 border-color : #c0c0c0;
405 padding-bottom : 5px;
406 display : none;
42918a07 407}
13ce14e8 408
cf2f643e 409div.hlFeed, div.hlFeed a {
e17e99fb 410 font-size : 10px;
df456bb0 411 color : gray;
e17e99fb
AD
412 font-style : italic;
413 font-weight : normal;
051174c3 414 white-space: nowrap;
df456bb0
AD
415}
416
cf2f643e 417div.hlFeed a:hover {
df456bb0
AD
418 color : #4684ff;
419}
420
035d7a5a 421img.markedPic, img.pubPic {
7514749d 422 cursor : pointer;
c4f52830 423 vertical-align : middle;
7514749d
AD
424}
425
0979b696 426div.tagCloudContainer {
a8328019 427 border : 1px solid #c0c0c0;
bec2ecd9 428 background-color : #ecf4ff;
0979b696 429 margin : 5px 0px 5px 0px;
9e6427ab 430 padding : 5px;
0979b696
AD
431 text-align : center;
432}
433
73495fd1 434div.errorExplained {
a8328019 435 border : 1px solid #c0c0c0;
bec2ecd9 436 background-color : #ecf4ff;
73495fd1
AD
437 margin : 5px 0px 5px 0px;
438 padding : 5px;
439}
440
e8dd519b 441ul.feedErrorsList {
bec2ecd9 442 max-height : 300px;
e8dd519b
AD
443 overflow : auto;
444 list-style-type : none;
f81b6815 445 border : 1px solid #c0c0c0;
bec2ecd9 446 background-color : #ecf4ff;
e8dd519b 447 margin : 0px 0px 5px 0px;
bec2ecd9 448 padding : 5px;
e8dd519b
AD
449}
450
f81b6815
AD
451ul.feedErrorsList em {
452 color : gray;
453}
454
f9cb39ac 455ul.browseFeedList {
e5d758e3
AD
456 height : 300px;
457 overflow : auto;
a8328019
AD
458 border-width : 0px 1px 1px 1px;
459 border-color : #c0c0c0;
460 border-style : solid;
e5d758e3 461 margin : 0px 0px 5px 0px;
e5d758e3 462 background-color : white;
a8328019
AD
463 list-style-type : none;
464 padding : 0px;
465
b92e6209
AD
466}
467
468ul.browseFeedList li {
e5d758e3 469 margin : 0px;
a8328019 470 padding : 2px 4px 2px 4px;
f9cb39ac
AD
471}
472
473span.subscribers {
e5d758e3 474 color : #808080;
f9cb39ac
AD
475}
476
c6232e43 477div.subscribers {
e5d758e3 478 color : #808080;
ae096313 479 font-size : 12px;
e5d758e3 480 float : right;
c6232e43
AD
481}
482
c6232e43 483div.browserDetails {
e5d758e3 484 margin : 5px 5px 5px 5px;
e5d758e3 485 padding : 5px;
c6232e43 486}
c2b2aee0
AD
487
488ul.compact {
e5d758e3
AD
489 list-style-type : none;
490 margin : 0px;
491 padding : 0px;
c2b2aee0
AD
492}
493
494ul.compact li {
e5d758e3
AD
495 margin : 0px;
496 padding : 0px;
c2b2aee0
AD
497}
498
69654950 499.noborder {
e5d758e3 500 border-width : 0px;
69654950 501}
0ee1d1a0 502
2055d4a6 503#overlay {
e5d758e3
AD
504 background : white;
505 left : 0;
506 top : 0;
507 height : 100%;
508 width : 100%;
509 z-index : 100;
510 position : absolute;
2055d4a6
AD
511}
512
513#overlay_inner {
e5d758e3 514 font-weight : bold;
fcc36744 515 margin : 1em;
2055d4a6 516}
af106b0e 517
79f3553b
AD
518form {
519 margin : 0px;
520 padding : 0px;
521}
86b682ce
AD
522
523#main_toolbar_form {
2df7a749
AD
524 margin : 0px;
525 padding : 0px;
fcf70c51
AD
526 display : table-cell;
527 white-space : nowrap;
528 width : 100%;
86b682ce 529}
78d5212c 530
33b8cab4
AD
531div.loadingPrompt {
532 padding : 1em;
533 text-align : center;
534 font-weight : bold;
535}
536
9251df44 537div.whiteBox {
9251df44 538 margin-left : 1px;
abbe0154 539 text-align : center;
b6adf039 540 padding : 1em;
9251df44
AD
541}
542
fcf70c51 543html, body#ttrssMain, #main {
2f01fe57
AD
544 width: 100%;
545 height: 100%;
546 border: 0;
547 padding: 0;
548 margin: 0;
fcf70c51 549}
6b4163cb 550
3af75631 551#toolbar div.actionChooser {
fcf70c51
AD
552 display : table-cell;
553 text-align : right;
f8ce21fc 554 padding-right : 3px;
6b4163cb
AD
555}
556
05fcdf52
AD
557div.autocomplete {
558 position : absolute;
559 width : 250px;
560 background-color : white;
561 border :1px solid #778899;
562 margin : 0px;
563 padding : 0px;
564}
565
566div.autocomplete ul {
567 list-style-type : none;
568 margin : 0px;
569 padding : 0px;
570}
571
572div.autocomplete ul li.selected {
573 background-color : #fff7d5;
574}
575
576div.autocomplete ul li {
577 list-style-type : none;
578 display : block;
579 margin : 0;
580 padding : 2px;
581 height : 32px;
582 cursor : pointer;
583}
584
e635d56a
AD
585a.visibleLink {
586 color : #4684ff;
e635d56a 587}
6cfea5c7 588
8cc5e965 589.hlContentH a, .hlContentH span {
546499a9
AD
590 color : #00cc00;
591}
592
8cc5e965 593.hlContentL a, .hlContentL span {
546499a9
AD
594 color : #909090;
595 text-decoration : line-through;
596}
5daa24f2
AD
597
598span.titleWrapH, span.titleWrapH a {
599 color : #00cc00;
600}
601
602span.titleWrapL, span.titleWrapL a {
603 color : #909090;
604 text-decoration : line-through;
605}
606
607img.hlScorePic {
608 vertical-align : middle;
609 width : 16px;
610 height : 16px;
611}
612
10fa6615 613div.dlgSec {
ae096313 614 font-size : 12px;
10fa6615
AD
615 color : gray;
616 font-weight : bold;
617 clear : both;
618 height : 20px;
619}
620
621div.dlgSecCont {
622 position : relative;
623 left : 150px;
624 top : -20px;
625 float : left;
ae096313 626 font-size : 12px;
baa2db9f 627 font-weight : normal;
d90868d7
AD
628}
629
bcf5ed46
AD
630div.dlgSecCont hr {
631 height : 0px;
632 line-height : 0px;
633 border : 0px solid transparent;
634 margin : 2px;
635}
636
d90868d7 637div.dlgSecCont > * {
bcf5ed46
AD
638 position : relative;
639 top : -2px;
10fa6615
AD
640}
641
642div.dlgButtons {
643 text-align : right;
644 clear : both;
645}
646
a740f4b5
AD
647span.labelColorIndicator {
648 height : 14px;
649 width : 14px;
650 line-height : 14px;
86edc737 651 font-size : 9px;
a740f4b5
AD
652 display : inline-block;
653 border : 1px solid black;
654 background-color : #fff7d5;
655 color : #063064;
656 text-align : center;
657 margin-right : 2px;
658}
659
fb8b2153
AD
660span.labelColorIndicator2 {
661 height : 14px;
662 width : 14px;
86edc737 663 font-size : 9px;
fb8b2153
AD
664 display : inline-block;
665 border : 1px solid black;
666 background-color : #fff7d5;
667 color : #063064;
668 text-align : center;
669 margin-right : 2px;
670 vertical-align : bottom;
671}
672
78935092
AD
673div#cmdline {
674 position : absolute;
675 left : 5px;
676 bottom : 5px;
677 font-size : 11px;
678 color : gray;
679 font-weight : bold;
680 background-color : white;
681 border : 1px solid #88b0f0;
682 padding : 3px 5px 3px 5px;
683 z-index : 5;
684}
f4280bdd
AD
685
686#feed_browser_spinner {
687 vertical-align : middle;
688 height : 18px;
689 width : 18px;
690}
37e93d6c 691
8cc5e965
AD
692div.hlTitle {
693 display : table-cell;
694 cursor : pointer;
695 width : 100%;
696 vertical-align : middle;
697 padding-top : 4px;
698 padding-bottom : 4px;
a0f98bbf
AD
699}
700
8cc5e965
AD
701div.hlLeft {
702 display : table-cell;
703 vertical-align : middle;
704 white-space: nowrap;
ad491d75
AD
705}
706
8cc5e965
AD
707div.hlRight {
708 display : table-cell;
709 white-space: nowrap;
710 text-align : right;
711 vertical-align : middle;
ad491d75
AD
712}
713
fcf70c51
AD
714div.hlRight img {
715 max-width : 16px;
716 max-height : 16px;
717}
718
8cc5e965
AD
719span.hlUpdated {
720 color : gray;
6edeede3
AD
721 min-width : 100px;
722 display : table-cell;
723 width : 100%;
724 vertical-align : middle;
6edeede3 725 text-align : right;
e17e99fb
AD
726 font-size : 10px;
727 font-weight : normal;
577399e8
AD
728}
729
f947467a
AD
730div.hlLeft {
731 padding-left : 8px;
732}
733
8cc5e965
AD
734div.hlLeft input {
735 margin-left : 4px;
736 margin-right : 4px;
ad491d75
AD
737}
738
8cc5e965
AD
739div.hlLeft img, div.hlRight img {
740 margin : 0px 4px 0px 4px;
cb1a012b 741}
8cc5e965 742
cb1a012b
AD
743div.hlLeft img {
744 width : 16px;
745 height : 16px;
8cc5e965 746}
31a53903 747
ba083651
AD
748div.fatalError {
749 margin-bottom : 10px;
750}
951906dc
AD
751
752div.fatalError button {
753 margin-top : 5px;
754}
755
756div.fatalError textarea {
757 width : 100%;
758 height : 100px;
759}
2f01fe57
AD
760
761#main {
762 border-width : 0px;
6e4f4ce1
AD
763 margin : 0px;
764 padding : 0px;
765}
766
2b25b79d
AD
767#header-wrap {
768 border-width : 0px;
769 margin : 0px;
770 padding : 0px;
771}
772
6e4f4ce1
AD
773#content-wrap {
774 padding : 0px;
2d1282d4 775 border-width : 0px 0px 1px 1px;
38325ad6
AD
776 border-style : solid;
777 border-color : #c0c0c0;
2d1282d4 778 margin : 0px;
2f01fe57
AD
779}
780
781#feeds-holder {
782 padding : 0px;
fcf70c51
AD
783 border-color : #88b0f0;
784 border-left-width : 0px;
785 border-bottom-width : 0px;
2b25b79d 786 border-top-width : 0px;
c3b06333 787 overflow : auto;
2f01fe57
AD
788}
789
6e4f4ce1
AD
790#headlines-wrap-inner {
791 padding : 0px;
792 margin : 0px;
793 border-width : 0px;
794}
795
c3b06333
AD
796#feedTree {
797 overflow : visible;
798}
799
2f01fe57
AD
800#headlines-frame {
801 padding : 0px;
fcf70c51 802 border-color : #88b0f0;
6f3976c9 803 border-left-width : 0px;
fcf70c51 804 border-right-width : 0px;
0ce61157
AD
805 margin-top : 0px;
806 border-top-width : 0px;
807}
808
d4eebd8b 809#headlines-toolbar_splitter, #toolbar_splitter {
0ce61157 810 display : none;
2f01fe57
AD
811}
812
6f3976c9 813#toolbar {
f8ce21fc 814 padding : 0px;
6e4f4ce1 815 margin : 0px;
2f01fe57 816 border-width : 0px;
6e4f4ce1 817 white-space: nowrap;
1354d172 818 font-size : 11px;
2f01fe57
AD
819}
820
821#header {
2f01fe57 822 border-width : 0px;
2b25b79d
AD
823 text-align : right;
824 color : gray;
825 padding : 5px 5px 0px 0px;
826 margin : 0px;
827 position : absolute;
828 right : 0px;
829 top : 0px;
830 z-index : 5;
2f01fe57
AD
831}
832
833#footer {
834 text-align : center;
835 color : gray;
d62796de 836 padding : 4px 4px 8px 4px;
2f01fe57
AD
837 border-width : 0px;
838}
6e4f4ce1
AD
839
840#content-insert {
841 padding : 0px;
fcf70c51
AD
842 border-color : #88b0f0;
843 border-bottom-width : 0px;
844 border-right-width : 0px;
6f3976c9 845 border-left-width : 0px;
b93ad1e1 846 overflow : auto;
6e4f4ce1 847}
13e785e0
AD
848
849.dijitTreeLabel.Unread {
850 font-weight : bold;
851}
852
1644304f
AD
853.feedParam {
854 color : gray;
855 float : right;
856 margin-right : 1em;
857}
858
da46d21e
AD
859.labelParam {
860 float : right;
861 margin-right : 1em;
862}
863
a740f4b5
AD
864.dijitTreeLabel.Disabled, .labelParam.Disabled {
865 color : gray;
866}
867
fcf70c51
AD
868.dijitTreeRow.Error {
869 color : red;
870}
13e785e0 871
fcf70c51
AD
872.dijitTreeRow.Hidden {
873 display : none;
874}
2ef5c21f 875
8e289ca1 876img.feedIcon, img.tinyFeedIcon {
ab7a597c
AD
877 width : 16px;
878 height : 16px;
7c9f819f 879 vertical-align : middle;
dc544c94 880 display : inline-block;
2ef5c21f 881}
9c99281f 882
7ce0ea28
AD
883.dijitDialog .dijitToolbar {
884 border : 1px solid #c0c0c0;
885}
d2d75353 886
fcef9eea
AD
887.dijitDialog h2 {
888 margin-top : 0px;
889 margin-bottom : 4px;
890 border-width : 0px;
891}
892
c3edc667
AD
893.player {
894 display : inline-block;
895 color : gray;
896 font-size : 11px;
897 font-family : sans-serif;
898 border : 1px solid gray;
899 padding : 0px 4px 0px 4px;
900 margin : 0px 2px 0px 2px;
901 width : 50px;
902 text-align : center;
903 background : white;
904}
f820f205 905
c3edc667
AD
906.player.playing {
907 color : #00c000;
908 border-color : #00c000;
909}
910
911.player:hover {
912 background : #f0f0f0;
913 cursor : pointer;
914}
88e4e597 915
18eb64a8
AD
916#headlines-spacer {
917 height : 100%;
918 margin-left : 1px;
919 text-align : center;
920 padding : 1em;
921 color : gray;
922}
56fbb82c 923
6aff7845
AD
924ul#filterDlg_Matches, ul#filterDlg_Actions {
925 max-height : 100px;
926 overflow : auto;
927 list-style-type : none;
928 border-style : solid;
929 border-color : #c0c0c0;
930 border-width : 0px 1px 1px 1px;
931 background-color : #ecf4ff;
932 margin : 0px 0px 5px 0px;
933 padding : 0px;
934}
935
936ul#filterDlg_Matches li, ul#filterDlg_Actions li {
937 cursor : pointer;
04e41840
AD
938 padding : 0px 0px 0px 5px;
939}
940
941ul#filterDlg_Matches li div.dijitCheckBox, ul#filterDlg_Actions li div.dijitCheckBox {
942 margin-right : 5px;
6aff7845 943}
65d1e250 944
b8cb4d08
AD
945ul.helpKbList {
946 max-height : 300px;
947 overflow : auto;
948 list-style-type : none;
949 border : 1px solid #c0c0c0;
950 background-color : #ecf4ff;
951 margin : 0px 0px 5px 0px;
952 padding : 5px;
953}
954
955ul.helpKbList span.hksequence {
956 width : 6em;
957 margin-left : 20px;
958 color : #88b0f0;
959 font-weight : bold;
960 display : inline-block;
961}
962
963ul.helpKbList h2 {
964 margin-top : 0px;
965}
a122b507
AD
966
967.dijitTreeNode .loadingNode {
968 margin-left : 3px;
969}
414191d4
AD
970
971span.collapseBtn {
972 cursor : pointer;
973}
54bc5594
AD
974
975div.postContent p {
976 max-width : 650px;
977}
b5d4716a 978
922bfe73
AD
979div.postContent iframe {
980 min-width : 50%;
981}
11bd95b4
AD
982
983div.postHeader span.author {
984 color : gray;
985 font-size : 11px;
d080678c 986 font-weight : normal;
11bd95b4 987}
b87a625c
AD
988
989body#ttrssZoom {
990 margin-left : auto;
991 margin-right : auto;
52039010 992 padding : 2em;
8c82001b 993 max-width : 800px;
b87a625c
AD
994 background : #f0f0f0;
995}
996
8c82001b
AD
997body#ttrssZoom div.postContent p {
998 max-width : 650px;
999}
1000
1001body#ttrssZoom div.postReply {
1002 border : 1px solid #ccc;
8c82001b
AD
1003 box-shadow : 0px 0px 3px #ccc;
1004}
1005
b7a6e754 1006body#ttrssZoom div.postContent {
b87a625c
AD
1007 background-color : white;
1008}
1009
1010body#ttrssZoom div.footer {
1011 margin-top : 1em;
1012 text-align : center;
1013}
d2f3467b 1014
a6e3554e
AD
1015body#ttrssZoom div.postContent img {
1016 max-width : 650px;
542c563c 1017 height : auto;
a6e3554e
AD
1018}
1019
bf6df236
AD
1020select.attachments {
1021 display : block;
255b0f65
AD
1022 margin-top : 10px;
1023 max-width : 120px;
bf6df236 1024}
67b9d740 1025
a7c0e150
AD
1026div.hl.active {
1027 border-color : #88b0f0;
1028}
1029
1030div.hl.active a.title {
1031 color : #4684ff;
a7c0e150
AD
1032}
1033
e43a9c4a
AD
1034#selected_prompt {
1035 margin-right : 25px;
1036}