]> git.wh0rd.org - tt-rss.git/blame - tt-rss.css
tweak notify layout/display
[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;
fcef9eea 290 float : left;
6deafe90 291 vertical-align : middle;
84916243
AD
292}
293
ab3d0b99 294ul.nomarks {
e5d758e3
AD
295 list-style-type : none;
296 margin : 0px;
297 padding : 10px;
ab3d0b99
AD
298}
299
b7ade39d 300div.prefHelp {
e5d758e3 301 color : gray;
abe4d057 302 padding : 5px;
8cb74804
AD
303}
304
365f95dc
AD
305span.feed_error {
306 color : red;
307}
308
746dcf42 309.insensitive {
e5d758e3 310 color : gray;
bca02305 311}
afb7a1d6 312
d4d6d528
AD
313.insensitive a {
314 color : #4684ff;
315}
316
317.insensitive a:hover {
318 color : black;
319}
320
6e4f4ce1 321div#headlines-toolbar {
d4eebd8b 322 border-width : 0px 0px 1px 0px;
f1080825 323 background-color : #f0f0f0;
a0ddecb9 324 border-color : #c0c0c0;
ae096313 325 font-size : 11px;
0e2d03a7 326 font-family : "Segoe UI", Tahoma, sans-serif;
442a9b8c 327 color : gray;
fcf70c51 328 padding : 0px;
6e4f4ce1
AD
329 margin : 0px;
330 overflow : hidden;
f1080825
AD
331 height : 25px;
332 line-height : 25px;
333 padding-left : 4px;
8b27182a
AD
334}
335
fcf70c51
AD
336div#headlines-toolbar .dijitSelect {
337 font-size : 11px;
f1080825
AD
338 position : relative;
339 top : -2px;
fcf70c51
AD
340}
341
f1080825
AD
342div#headlines-toolbar span.r {
343 float: right;
344 position: relative;
f1080825 345 padding : 0 4px 0px 4px;
fcf70c51 346 text-align : right;
f1080825
AD
347}
348
f1080825
AD
349div#headlines-toolbar span.r span.error {
350 color : red;
351}
352
353div#headlines-toolbar span.r a {
db23a8ee 354 color : gray;
c1c9df00
AD
355}
356
f1080825
AD
357div#headlines-toolbar span.r a:hover {
358 color : black;
26a1e185
AD
359}
360
591c396d 361span.contentPreview {
e5d758e3
AD
362 color : gray;
363 font-weight : normal;
591c396d 364}
179d6f57 365
0f172fff 366span.contentPreview:hover {
e5d758e3 367 color : #4684ff;
0f172fff
AD
368}
369
8cc5e965 370span.hlLabelRef {
e2549229 371 background-color : #fff7d5;
86edc737 372 font-size : 8px;
e2549229
AD
373 color : #063064;
374 font-weight : normal;
375 margin : 0px 3px 0px 3px;
376 padding : 0px 4px 0px 4px;
377 white-space: nowrap;
378}
379
b810a0f1 380div.postHeader div.postDate {
e5d758e3
AD
381 text-align : right;
382 color : gray;
b810a0f1 383 float : right;
9167e250 384}
36aab70f 385
b810a0f1
AD
386div.postHeader div {
387 padding-bottom : 3px;
ae096313 388 font-size : 12px;
ed51e128
AD
389}
390
36aab70f 391#feedUpdateErrors {
e5d758e3 392 display : none;
36aab70f
AD
393}
394
42918a07 395#allEntryTags {
ae096313 396 font-size : 12px;
e5d758e3
AD
397 border-width : 0px 0px 1px 0px;
398 border-style : solid;
399 border-color : #c0c0c0;
400 padding-bottom : 5px;
401 display : none;
42918a07 402}
13ce14e8 403
cf2f643e 404div.hlFeed, div.hlFeed a {
e17e99fb 405 font-size : 10px;
df456bb0 406 color : gray;
e17e99fb
AD
407 font-style : italic;
408 font-weight : normal;
051174c3 409 white-space: nowrap;
df456bb0
AD
410}
411
cf2f643e 412div.hlFeed a:hover {
df456bb0
AD
413 color : #4684ff;
414}
415
035d7a5a 416img.markedPic, img.pubPic {
7514749d 417 cursor : pointer;
c4f52830 418 vertical-align : middle;
7514749d
AD
419}
420
0979b696 421div.tagCloudContainer {
a8328019 422 border : 1px solid #c0c0c0;
bec2ecd9 423 background-color : #ecf4ff;
0979b696 424 margin : 5px 0px 5px 0px;
9e6427ab 425 padding : 5px;
0979b696
AD
426 text-align : center;
427}
428
73495fd1 429div.errorExplained {
a8328019 430 border : 1px solid #c0c0c0;
bec2ecd9 431 background-color : #ecf4ff;
73495fd1
AD
432 margin : 5px 0px 5px 0px;
433 padding : 5px;
434}
435
e8dd519b 436ul.feedErrorsList {
bec2ecd9 437 max-height : 300px;
e8dd519b
AD
438 overflow : auto;
439 list-style-type : none;
f81b6815 440 border : 1px solid #c0c0c0;
bec2ecd9 441 background-color : #ecf4ff;
e8dd519b 442 margin : 0px 0px 5px 0px;
bec2ecd9 443 padding : 5px;
e8dd519b
AD
444}
445
f81b6815
AD
446ul.feedErrorsList em {
447 color : gray;
448}
449
f9cb39ac 450ul.browseFeedList {
e5d758e3
AD
451 height : 300px;
452 overflow : auto;
a8328019
AD
453 border-width : 0px 1px 1px 1px;
454 border-color : #c0c0c0;
455 border-style : solid;
e5d758e3 456 margin : 0px 0px 5px 0px;
e5d758e3 457 background-color : white;
a8328019
AD
458 list-style-type : none;
459 padding : 0px;
460
b92e6209
AD
461}
462
463ul.browseFeedList li {
e5d758e3 464 margin : 0px;
a8328019 465 padding : 2px 4px 2px 4px;
f9cb39ac
AD
466}
467
468span.subscribers {
e5d758e3 469 color : #808080;
f9cb39ac
AD
470}
471
c6232e43 472div.subscribers {
e5d758e3 473 color : #808080;
ae096313 474 font-size : 12px;
e5d758e3 475 float : right;
c6232e43
AD
476}
477
c6232e43 478div.browserDetails {
e5d758e3 479 margin : 5px 5px 5px 5px;
e5d758e3 480 padding : 5px;
c6232e43 481}
c2b2aee0
AD
482
483ul.compact {
e5d758e3
AD
484 list-style-type : none;
485 margin : 0px;
486 padding : 0px;
c2b2aee0
AD
487}
488
489ul.compact li {
e5d758e3
AD
490 margin : 0px;
491 padding : 0px;
c2b2aee0
AD
492}
493
69654950 494.noborder {
e5d758e3 495 border-width : 0px;
69654950 496}
0ee1d1a0 497
2055d4a6 498#overlay {
e5d758e3
AD
499 background : white;
500 left : 0;
501 top : 0;
502 height : 100%;
503 width : 100%;
504 z-index : 100;
505 position : absolute;
2055d4a6
AD
506}
507
508#overlay_inner {
e5d758e3 509 font-weight : bold;
fcc36744 510 margin : 1em;
2055d4a6 511}
af106b0e 512
79f3553b
AD
513form {
514 margin : 0px;
515 padding : 0px;
516}
86b682ce
AD
517
518#main_toolbar_form {
2df7a749
AD
519 margin : 0px;
520 padding : 0px;
fcf70c51
AD
521 display : table-cell;
522 white-space : nowrap;
523 width : 100%;
86b682ce 524}
78d5212c 525
33b8cab4
AD
526div.loadingPrompt {
527 padding : 1em;
528 text-align : center;
529 font-weight : bold;
530}
531
9251df44 532div.whiteBox {
9251df44 533 margin-left : 1px;
abbe0154 534 text-align : center;
b6adf039 535 padding : 1em;
9251df44
AD
536}
537
fcf70c51 538html, body#ttrssMain, #main {
2f01fe57
AD
539 width: 100%;
540 height: 100%;
541 border: 0;
542 padding: 0;
543 margin: 0;
fcf70c51 544}
6b4163cb 545
3af75631 546#toolbar div.actionChooser {
fcf70c51
AD
547 display : table-cell;
548 text-align : right;
f8ce21fc 549 padding-right : 3px;
6b4163cb
AD
550}
551
05fcdf52
AD
552div.autocomplete {
553 position : absolute;
554 width : 250px;
555 background-color : white;
556 border :1px solid #778899;
557 margin : 0px;
558 padding : 0px;
559}
560
561div.autocomplete ul {
562 list-style-type : none;
563 margin : 0px;
564 padding : 0px;
565}
566
567div.autocomplete ul li.selected {
568 background-color : #fff7d5;
569}
570
571div.autocomplete ul li {
572 list-style-type : none;
573 display : block;
574 margin : 0;
575 padding : 2px;
576 height : 32px;
577 cursor : pointer;
578}
579
e635d56a
AD
580a.visibleLink {
581 color : #4684ff;
e635d56a 582}
6cfea5c7 583
8cc5e965 584.hlContentH a, .hlContentH span {
546499a9
AD
585 color : #00cc00;
586}
587
8cc5e965 588.hlContentL a, .hlContentL span {
546499a9
AD
589 color : #909090;
590 text-decoration : line-through;
591}
5daa24f2
AD
592
593span.titleWrapH, span.titleWrapH a {
594 color : #00cc00;
595}
596
597span.titleWrapL, span.titleWrapL a {
598 color : #909090;
599 text-decoration : line-through;
600}
601
602img.hlScorePic {
603 vertical-align : middle;
604 width : 16px;
605 height : 16px;
606}
607
10fa6615 608div.dlgSec {
ae096313 609 font-size : 12px;
10fa6615
AD
610 color : gray;
611 font-weight : bold;
612 clear : both;
613 height : 20px;
614}
615
616div.dlgSecCont {
617 position : relative;
618 left : 150px;
619 top : -20px;
620 float : left;
ae096313 621 font-size : 12px;
baa2db9f 622 font-weight : normal;
d90868d7
AD
623}
624
bcf5ed46
AD
625div.dlgSecCont hr {
626 height : 0px;
627 line-height : 0px;
628 border : 0px solid transparent;
629 margin : 2px;
630}
631
d90868d7 632div.dlgSecCont > * {
bcf5ed46
AD
633 position : relative;
634 top : -2px;
10fa6615
AD
635}
636
637div.dlgButtons {
638 text-align : right;
639 clear : both;
640}
641
a740f4b5
AD
642span.labelColorIndicator {
643 height : 14px;
644 width : 14px;
645 line-height : 14px;
86edc737 646 font-size : 9px;
a740f4b5
AD
647 display : inline-block;
648 border : 1px solid black;
649 background-color : #fff7d5;
650 color : #063064;
651 text-align : center;
652 margin-right : 2px;
653}
654
fb8b2153
AD
655span.labelColorIndicator2 {
656 height : 14px;
657 width : 14px;
86edc737 658 font-size : 9px;
fb8b2153
AD
659 display : inline-block;
660 border : 1px solid black;
661 background-color : #fff7d5;
662 color : #063064;
663 text-align : center;
664 margin-right : 2px;
665 vertical-align : bottom;
666}
667
78935092
AD
668div#cmdline {
669 position : absolute;
670 left : 5px;
671 bottom : 5px;
672 font-size : 11px;
673 color : gray;
674 font-weight : bold;
675 background-color : white;
676 border : 1px solid #88b0f0;
677 padding : 3px 5px 3px 5px;
678 z-index : 5;
679}
f4280bdd
AD
680
681#feed_browser_spinner {
682 vertical-align : middle;
683 height : 18px;
684 width : 18px;
685}
37e93d6c 686
8cc5e965
AD
687div.hlTitle {
688 display : table-cell;
689 cursor : pointer;
690 width : 100%;
691 vertical-align : middle;
692 padding-top : 4px;
693 padding-bottom : 4px;
a0f98bbf
AD
694}
695
8cc5e965
AD
696div.hlLeft {
697 display : table-cell;
698 vertical-align : middle;
699 white-space: nowrap;
ad491d75
AD
700}
701
8cc5e965
AD
702div.hlRight {
703 display : table-cell;
704 white-space: nowrap;
705 text-align : right;
706 vertical-align : middle;
ad491d75
AD
707}
708
fcf70c51
AD
709div.hlRight img {
710 max-width : 16px;
711 max-height : 16px;
712}
713
8cc5e965
AD
714span.hlUpdated {
715 color : gray;
6edeede3
AD
716 min-width : 100px;
717 display : table-cell;
718 width : 100%;
719 vertical-align : middle;
6edeede3 720 text-align : right;
e17e99fb
AD
721 font-size : 10px;
722 font-weight : normal;
577399e8
AD
723}
724
f947467a
AD
725div.hlLeft {
726 padding-left : 8px;
727}
728
8cc5e965
AD
729div.hlLeft input {
730 margin-left : 4px;
731 margin-right : 4px;
ad491d75
AD
732}
733
8cc5e965
AD
734div.hlLeft img, div.hlRight img {
735 margin : 0px 4px 0px 4px;
cb1a012b 736}
8cc5e965 737
cb1a012b
AD
738div.hlLeft img {
739 width : 16px;
740 height : 16px;
8cc5e965 741}
31a53903 742
ba083651
AD
743div.fatalError {
744 margin-bottom : 10px;
745}
951906dc
AD
746
747div.fatalError button {
748 margin-top : 5px;
749}
750
751div.fatalError textarea {
752 width : 100%;
753 height : 100px;
754}
2f01fe57
AD
755
756#main {
757 border-width : 0px;
6e4f4ce1
AD
758 margin : 0px;
759 padding : 0px;
760}
761
2b25b79d
AD
762#header-wrap {
763 border-width : 0px;
764 margin : 0px;
765 padding : 0px;
766}
767
6e4f4ce1
AD
768#content-wrap {
769 padding : 0px;
2d1282d4 770 border-width : 0px 0px 1px 1px;
38325ad6
AD
771 border-style : solid;
772 border-color : #c0c0c0;
2d1282d4 773 margin : 0px;
2f01fe57
AD
774}
775
776#feeds-holder {
777 padding : 0px;
fcf70c51
AD
778 border-color : #88b0f0;
779 border-left-width : 0px;
780 border-bottom-width : 0px;
2b25b79d 781 border-top-width : 0px;
c3b06333 782 overflow : auto;
2f01fe57
AD
783}
784
6e4f4ce1
AD
785#headlines-wrap-inner {
786 padding : 0px;
787 margin : 0px;
788 border-width : 0px;
789}
790
c3b06333
AD
791#feedTree {
792 overflow : visible;
793}
794
2f01fe57
AD
795#headlines-frame {
796 padding : 0px;
fcf70c51 797 border-color : #88b0f0;
6f3976c9 798 border-left-width : 0px;
fcf70c51 799 border-right-width : 0px;
0ce61157
AD
800 margin-top : 0px;
801 border-top-width : 0px;
802}
803
d4eebd8b 804#headlines-toolbar_splitter, #toolbar_splitter {
0ce61157 805 display : none;
2f01fe57
AD
806}
807
6f3976c9 808#toolbar {
f8ce21fc 809 padding : 0px;
6e4f4ce1 810 margin : 0px;
2f01fe57 811 border-width : 0px;
6e4f4ce1 812 white-space: nowrap;
1354d172 813 font-size : 11px;
2f01fe57
AD
814}
815
816#header {
2f01fe57 817 border-width : 0px;
2b25b79d
AD
818 text-align : right;
819 color : gray;
820 padding : 5px 5px 0px 0px;
821 margin : 0px;
822 position : absolute;
823 right : 0px;
824 top : 0px;
825 z-index : 5;
2f01fe57
AD
826}
827
828#footer {
829 text-align : center;
830 color : gray;
d62796de 831 padding : 4px 4px 8px 4px;
2f01fe57
AD
832 border-width : 0px;
833}
6e4f4ce1
AD
834
835#content-insert {
836 padding : 0px;
fcf70c51
AD
837 border-color : #88b0f0;
838 border-bottom-width : 0px;
839 border-right-width : 0px;
6f3976c9 840 border-left-width : 0px;
b93ad1e1 841 overflow : auto;
6e4f4ce1 842}
13e785e0
AD
843
844.dijitTreeLabel.Unread {
845 font-weight : bold;
846}
847
1644304f
AD
848.feedParam {
849 color : gray;
850 float : right;
851 margin-right : 1em;
852}
853
da46d21e
AD
854.labelParam {
855 float : right;
856 margin-right : 1em;
857}
858
a740f4b5
AD
859.dijitTreeLabel.Disabled, .labelParam.Disabled {
860 color : gray;
861}
862
fcf70c51
AD
863.dijitTreeRow.Error {
864 color : red;
865}
13e785e0 866
fcf70c51
AD
867.dijitTreeRow.Hidden {
868 display : none;
869}
2ef5c21f 870
8e289ca1 871img.feedIcon, img.tinyFeedIcon {
ab7a597c
AD
872 width : 16px;
873 height : 16px;
7c9f819f 874 vertical-align : middle;
dc544c94 875 display : inline-block;
2ef5c21f 876}
9c99281f 877
7ce0ea28
AD
878.dijitDialog .dijitToolbar {
879 border : 1px solid #c0c0c0;
880}
d2d75353 881
fcef9eea
AD
882.dijitDialog h2 {
883 margin-top : 0px;
884 margin-bottom : 4px;
885 border-width : 0px;
886}
887
c3edc667
AD
888.player {
889 display : inline-block;
890 color : gray;
891 font-size : 11px;
892 font-family : sans-serif;
893 border : 1px solid gray;
894 padding : 0px 4px 0px 4px;
895 margin : 0px 2px 0px 2px;
896 width : 50px;
897 text-align : center;
898 background : white;
899}
f820f205 900
c3edc667
AD
901.player.playing {
902 color : #00c000;
903 border-color : #00c000;
904}
905
906.player:hover {
907 background : #f0f0f0;
908 cursor : pointer;
909}
88e4e597 910
18eb64a8
AD
911#headlines-spacer {
912 height : 100%;
913 margin-left : 1px;
914 text-align : center;
915 padding : 1em;
916 color : gray;
917}
56fbb82c 918
6aff7845
AD
919ul#filterDlg_Matches, ul#filterDlg_Actions {
920 max-height : 100px;
921 overflow : auto;
922 list-style-type : none;
923 border-style : solid;
924 border-color : #c0c0c0;
925 border-width : 0px 1px 1px 1px;
926 background-color : #ecf4ff;
927 margin : 0px 0px 5px 0px;
928 padding : 0px;
929}
930
931ul#filterDlg_Matches li, ul#filterDlg_Actions li {
932 cursor : pointer;
04e41840
AD
933 padding : 0px 0px 0px 5px;
934}
935
936ul#filterDlg_Matches li div.dijitCheckBox, ul#filterDlg_Actions li div.dijitCheckBox {
937 margin-right : 5px;
6aff7845 938}
65d1e250 939
b8cb4d08
AD
940ul.helpKbList {
941 max-height : 300px;
942 overflow : auto;
943 list-style-type : none;
944 border : 1px solid #c0c0c0;
945 background-color : #ecf4ff;
946 margin : 0px 0px 5px 0px;
947 padding : 5px;
948}
949
950ul.helpKbList span.hksequence {
951 width : 6em;
952 margin-left : 20px;
953 color : #88b0f0;
954 font-weight : bold;
955 display : inline-block;
956}
957
958ul.helpKbList h2 {
959 margin-top : 0px;
960}
a122b507
AD
961
962.dijitTreeNode .loadingNode {
963 margin-left : 3px;
964}
414191d4
AD
965
966span.collapseBtn {
967 cursor : pointer;
968}
54bc5594
AD
969
970div.postContent p {
971 max-width : 650px;
972}
b5d4716a 973
922bfe73
AD
974div.postContent iframe {
975 min-width : 50%;
976}
11bd95b4
AD
977
978div.postHeader span.author {
979 color : gray;
980 font-size : 11px;
d080678c 981 font-weight : normal;
11bd95b4 982}
b87a625c
AD
983
984body#ttrssZoom {
985 margin-left : auto;
986 margin-right : auto;
52039010 987 padding : 2em;
8c82001b 988 max-width : 800px;
b87a625c
AD
989 background : #f0f0f0;
990}
991
8c82001b
AD
992body#ttrssZoom div.postContent p {
993 max-width : 650px;
994}
995
996body#ttrssZoom div.postReply {
997 border : 1px solid #ccc;
8c82001b
AD
998 box-shadow : 0px 0px 3px #ccc;
999}
1000
b7a6e754 1001body#ttrssZoom div.postContent {
b87a625c
AD
1002 background-color : white;
1003}
1004
1005body#ttrssZoom div.footer {
1006 margin-top : 1em;
1007 text-align : center;
1008}
d2f3467b 1009
a6e3554e
AD
1010body#ttrssZoom div.postContent img {
1011 max-width : 650px;
542c563c 1012 height : auto;
a6e3554e
AD
1013}
1014
bf6df236
AD
1015select.attachments {
1016 display : block;
255b0f65
AD
1017 margin-top : 10px;
1018 max-width : 120px;
bf6df236 1019}
67b9d740 1020
a7c0e150
AD
1021div.hl.active {
1022 border-color : #88b0f0;
1023}
1024
1025div.hl.active a.title {
1026 color : #4684ff;
a7c0e150
AD
1027}
1028
e43a9c4a
AD
1029#selected_prompt {
1030 margin-right : 25px;
1031}