tt-rss.css 18 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153
  1. body#ttrssMain, body#ttrssPrefs, body#ttrssLogin, body {
  2. background : white;
  3. color : black;
  4. margin : 0px;
  5. padding : 0px;
  6. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  7. font-size: 14px;
  8. }
  9. body#ttrssPrefs {
  10. background-color : #ecf4ff;
  11. }
  12. body#ttrssPrefs #footer, body#ttrssPrefs #header {
  13. background-color : #ecf4ff;
  14. padding-left : 8px;
  15. padding-right : 8px;
  16. }
  17. div.postReply {
  18. padding : 0px;
  19. }
  20. div.postReply div.postHeader {
  21. border-width : 0px 0px 1px 0px;
  22. border-style : solid;
  23. border-color : #c0c0c0;
  24. background : #fafafa;
  25. box-shadow : 0px 0px 3px 0px rgba(0,0,0,0.1);
  26. padding : 5px;
  27. color : #909090;
  28. }
  29. div.postReply div.postTitle {
  30. overflow : hidden;
  31. text-overflow: ellipsis;
  32. white-space : nowrap;
  33. }
  34. div.postReply div.postDate {
  35. padding-left : 10px;
  36. }
  37. div.postReply div.postContent {
  38. padding : 10px;
  39. }
  40. div.postReply div.postContent img {
  41. border-width : 0px;
  42. max-width : 98%;
  43. height: auto;
  44. }
  45. div.postReply div.postEnclosures {
  46. margin-top : 1em;
  47. color : #555;
  48. }
  49. div.postReply img.tagsPic {
  50. width : 16px;
  51. height : 16px;
  52. margin-left : 4px;
  53. vertical-align : middle;
  54. }
  55. div.articleNote {
  56. background-color : #fff7d5;
  57. padding : 5px;
  58. border-radius : 4px;
  59. margin : 5px;
  60. border-style : solid;
  61. border-color : #e7d796;
  62. border-width : 1px;
  63. box-shadow : inset 0px 0px 2px rgba(0,0,0,0.1);
  64. background-color : #fff7d5;
  65. color : #9a8c59;
  66. }
  67. div.articleNote div.noteEdit {
  68. float : right;
  69. cursor : pointer;
  70. }
  71. div.postReply span.author {
  72. font-size : 12px;
  73. }
  74. h1 {
  75. font-size : 18px;
  76. }
  77. h2 {
  78. font-size : 16px;
  79. font-weight : bold;
  80. border-width : 0px 0px 1px 0px;
  81. border-style : solid;
  82. border-color : #ecf4ff;
  83. }
  84. h3 {
  85. font-size : 12px;
  86. font-weight : bold;
  87. border-width : 0px 0px 1px 0px;
  88. border-style : solid;
  89. border-color : #ecf4ff;
  90. }
  91. hr {
  92. border-width : 0px 0px 1px 0px;
  93. border-style : solid;
  94. border-color : #c0c0c0;
  95. max-width : 90%;
  96. }
  97. a {
  98. color : #4684ff;
  99. text-decoration : none;
  100. }
  101. a:hover {
  102. color : #88b0f0;
  103. }
  104. #piggie {
  105. z-index : 999;
  106. position : absolute;
  107. }
  108. #notify {
  109. bottom : 10px;
  110. right : 20px;
  111. border-width : 1px;
  112. border-style : solid;
  113. position : absolute;
  114. font-size : 12px;
  115. z-index : 99;
  116. max-width : 200px;
  117. min-width : 100px;
  118. padding : 5px;
  119. -width : 200px;
  120. box-shadow : 0px 0px 2px rgba(0,0,0,0.2);
  121. }
  122. #notify img {
  123. vertical-align : middle;
  124. max-height : 14px;
  125. }
  126. #notify span.msg {
  127. width : 100%;
  128. }
  129. #notify span.close {
  130. text-align : right;
  131. }
  132. #notify span {
  133. display : table-cell;
  134. vertical-align : middle;
  135. padding : 4px;
  136. }
  137. .notify {
  138. border-color : #d7c47a;
  139. background-color : #fff7d5;
  140. }
  141. .notify.progress {
  142. border-color : #d7c47a;
  143. background-color : #fff7d5;
  144. }
  145. .notify.info {
  146. border-color : #88b0f0;
  147. background-color : #ecf4ff;
  148. }
  149. .notify.error {
  150. background-color : #ffcccc;
  151. border-color : #ff0000;
  152. }
  153. .hl div.hlTitle a {
  154. font-weight : bold;
  155. color : #777;
  156. }
  157. .hl.Unread div.hlTitle a {
  158. color : black;
  159. }
  160. .hl.active {
  161. box-shadow : inset 0px 0px 3px 0px rgba(0,0,0,0.1);
  162. }
  163. .hl.active div.hlTitle a {
  164. color : #4684ff;
  165. text-shadow : 1px 1px 2px #fff;
  166. }
  167. .hl.Selected {
  168. background : #f9fbff;
  169. }
  170. .hl.Grayed {
  171. color : #909090;
  172. }
  173. /* #headlines-frame div.hl:nth-child(even) {
  174. background : #fafafa;
  175. } */
  176. #headlines-frame.normal {
  177. }
  178. .hl {
  179. border-width : 0px 0px 1px 0px;
  180. border-style : solid;
  181. border-color : #c0c0c0;
  182. }
  183. .hl.active {
  184. background : #ecf4ff ! important;
  185. }
  186. div.filterTestHolder {
  187. height : 300px;
  188. overflow : auto;
  189. border-color : #c0c0c0;
  190. border-style : solid;
  191. margin : 0px 0px 5px 0px;
  192. background-color : #ecf4ff;
  193. border-width : 1px;
  194. border-radius : 4px;
  195. box-shadow : inset 0px 0px 2px rgba(0,0,0,0.1);
  196. }
  197. #content-insert blockquote, #headlines-frame blockquote, .dijitContentPane blockquote {
  198. margin : 5px 0px 5px 0px;
  199. color : #555;
  200. padding-left : 10px;
  201. border-width : 0px 0px 0px 4px;
  202. border-color : #c0c0c0;
  203. border-style : solid;
  204. }
  205. #content-insert code, #headlines-frame code, .dijitContentPane code {
  206. color : #009900;
  207. font-family : monospace;
  208. font-size : 12px;
  209. }
  210. #content-insert pre, #headlines-frame pre, .dijitContentPane pre {
  211. margin : 5px 0px 5px 0px;
  212. padding : 10px;
  213. color : #555;
  214. font-family : monospace;
  215. font-size : 12px;
  216. border-width : 0px;
  217. border-color : #c0c0c0;
  218. border-style : solid;
  219. background : #fafafa;
  220. display : block;
  221. max-width : 98%;
  222. overflow : auto;
  223. }
  224. div.notice, div.warning, div.error {
  225. padding : 4px 10px 4px 4px;
  226. display : inline-block;
  227. margin : 2px 0px 4px 0px;
  228. font-size : 12px;
  229. border-style : solid;
  230. border-color : #ccc;
  231. border-radius : 4px;
  232. border-width : 1px;
  233. box-shadow : inset 0px 0px 2px rgba(0,0,0,0.1);
  234. }
  235. div.notice div.inner, div.warning div.inner, div.error div.inner {
  236. vertical-align : middle;
  237. }
  238. div.notice {
  239. background : #ecf4ff;
  240. border-color : #88b0f0;
  241. }
  242. div.warning {
  243. background : #fff7d5;
  244. border-color : #e7d796;;
  245. }
  246. div.error {
  247. background : #ffcccc;
  248. border-color : #ff0000;
  249. }
  250. div.warning img, div.notice img, div.error img {
  251. margin : 4px;
  252. vertical-align : middle;
  253. }
  254. div.warning span, div.notice span, div.error span {
  255. display : table-cell;
  256. vertical-align : middle;
  257. }
  258. ul.nomarks {
  259. list-style-type : none;
  260. margin : 0px;
  261. padding : 10px;
  262. }
  263. div.prefHelp {
  264. color : #555;
  265. padding : 5px;
  266. }
  267. .insensitive {
  268. color : #555;
  269. }
  270. div#headlines-toolbar {
  271. border-width : 0px 0px 1px 0px;
  272. background-color : #fcfcfc;
  273. border-color : #c0c0c0;
  274. font-size : 12px;
  275. font-family : "Segoe UI", Tahoma, sans-serif;
  276. color : #555;
  277. padding : 0px;
  278. margin : 0px;
  279. overflow : hidden;
  280. height : 25px;
  281. line-height : 25px;
  282. padding-left : 4px;
  283. }
  284. div#headlines-toolbar .dijitSelect {
  285. font-size : 11px;
  286. position : relative;
  287. top : -2px;
  288. }
  289. div#headlines-toolbar span.r {
  290. float: right;
  291. position: relative;
  292. padding : 0 4px 0px 4px;
  293. text-align : right;
  294. }
  295. #headlines-toolbar span.r .error a {
  296. color : red;
  297. }
  298. div#headlines-toolbar span.r a {
  299. color : #555;
  300. }
  301. span.contentPreview {
  302. color : #999;
  303. font-weight : normal;
  304. text-shadow : 1px 1px 2px #fff;
  305. font-size : 11px;
  306. }
  307. span.hlLabelRef {
  308. background-color : #fff7d5;
  309. font-size : 8px;
  310. color : #063064;
  311. font-weight : normal;
  312. margin-left : 2px;
  313. padding : 1px 4px 1px 4px;
  314. display : inline-block;
  315. vertical-align : middle;
  316. white-space: nowrap;
  317. border-radius : 4px;
  318. }
  319. div.postHeader div.postDate {
  320. text-align : right;
  321. color : #555;
  322. float : right;
  323. }
  324. div.postHeader div {
  325. padding-bottom : 3px;
  326. }
  327. #feedUpdateErrors {
  328. display : none;
  329. }
  330. #allEntryTags {
  331. border-width : 0px 0px 1px 0px;
  332. border-style : solid;
  333. border-color : #c0c0c0;
  334. padding-bottom : 5px;
  335. display : none;
  336. }
  337. a.hlFeed {
  338. display : block;
  339. white-space : nowrap;
  340. font-size : 9px;
  341. font-style : italic;
  342. font-weight : normal;
  343. border-radius : 4px;
  344. display : inline-block;
  345. padding : 1px 2px 1px 2px;
  346. margin-bottom : 2px;
  347. margin-top : 2px;
  348. color : #555;
  349. }
  350. a.hlFeed:hover {
  351. color : #4684ff;
  352. }
  353. img.markedPic, img.pubPic {
  354. cursor : pointer;
  355. vertical-align : middle;
  356. }
  357. div.tagCloudContainer {
  358. border : 1px solid #c0c0c0;
  359. background-color : #ecf4ff;
  360. margin : 5px 0px 5px 0px;
  361. padding : 5px;
  362. text-align : center;
  363. border-radius : 4px;
  364. box-shadow : inset 0px 0px 2px rgba(0,0,0,0.1);
  365. }
  366. div.errorExplained {
  367. border : 1px solid #c0c0c0;
  368. background-color : #ecf4ff;
  369. margin : 5px 0px 5px 0px;
  370. padding : 5px;
  371. border-radius : 4px;
  372. box-shadow : inset 0px 0px 2px rgba(0,0,0,0.1);
  373. }
  374. ul.feedErrorsList {
  375. max-height : 300px;
  376. overflow : auto;
  377. list-style-type : none;
  378. border : 1px solid #c0c0c0;
  379. background-color : #ecf4ff;
  380. margin : 0px 0px 5px 0px;
  381. padding : 5px;
  382. border-radius : 4px;
  383. box-shadow : inset 0px 0px 2px rgba(0,0,0,0.1);
  384. }
  385. ul.feedErrorsList em {
  386. color : #555;
  387. }
  388. ul.browseFeedList {
  389. height : 300px;
  390. overflow : auto;
  391. border-width : 0px 1px 1px 1px;
  392. border-color : #c0c0c0;
  393. border-style : solid;
  394. margin : 0px 0px 5px 0px;
  395. background-color : white;
  396. list-style-type : none;
  397. padding : 0px;
  398. }
  399. ul.browseFeedList li {
  400. margin : 0px;
  401. padding : 2px 4px 2px 4px;
  402. }
  403. span.subscribers {
  404. color : #808080;
  405. }
  406. div.subscribers {
  407. color : #808080;
  408. font-size : 12px;
  409. float : right;
  410. }
  411. div.browserDetails {
  412. margin : 5px 5px 5px 5px;
  413. padding : 5px;
  414. }
  415. ul.compact {
  416. list-style-type : none;
  417. margin : 0px;
  418. padding : 0px;
  419. }
  420. ul.compact li {
  421. margin : 0px;
  422. padding : 0px;
  423. }
  424. .noborder {
  425. border-width : 0px;
  426. }
  427. #overlay {
  428. background : white;
  429. left : 0;
  430. top : 0;
  431. height : 100%;
  432. width : 100%;
  433. z-index : 100;
  434. position : absolute;
  435. }
  436. #overlay_inner {
  437. font-weight : bold;
  438. margin : 1em;
  439. }
  440. form {
  441. margin : 0px;
  442. padding : 0px;
  443. }
  444. #main_toolbar_form {
  445. margin : 0px;
  446. padding : 0px;
  447. display : table-cell;
  448. white-space : nowrap;
  449. width : 100%;
  450. }
  451. div.loadingPrompt {
  452. padding : 1em;
  453. text-align : center;
  454. font-weight : bold;
  455. }
  456. div.whiteBox {
  457. margin-left : 1px;
  458. text-align : center;
  459. padding : 1em;
  460. }
  461. /* html, body#ttrssMain, #main {
  462. width: 100%;
  463. height: 100%;
  464. padding: 0;
  465. margin: 0;
  466. } */
  467. #toolbar div.actionChooser {
  468. display : table-cell;
  469. text-align : right;
  470. padding-right : 3px;
  471. }
  472. div.autocomplete {
  473. position : absolute;
  474. width : 250px;
  475. background-color : white;
  476. border :1px solid #778899;
  477. margin : 0px;
  478. padding : 0px;
  479. }
  480. div.autocomplete ul {
  481. list-style-type : none;
  482. margin : 0px;
  483. padding : 0px;
  484. }
  485. div.autocomplete ul li.selected {
  486. background-color : #fff7d5;
  487. }
  488. div.autocomplete ul li {
  489. list-style-type : none;
  490. display : block;
  491. margin : 0;
  492. padding : 2px;
  493. height : 32px;
  494. cursor : pointer;
  495. }
  496. .hlTitle {
  497. overflow : hidden;
  498. white-space : nowrap;
  499. max-width : 500px;
  500. text-overflow : ellipsis;
  501. }
  502. div#headlines-frame.wide .hlTitle {
  503. max-width : auto;
  504. overflow : visible;
  505. white-space : normal;
  506. }
  507. .hl a.title.high, span.hlContent.high .contentPreview {
  508. color : #00aa00;
  509. }
  510. .hl.Unread a.title.high, .hl.Unread span.hlContent.high .contentPreview {
  511. color : #00dd00;
  512. }
  513. .hl a.title.low, span.hlContent.low .contentPreview,
  514. .hl.Unread a.title.low, .hl.Unread span.hlContent.low .contentPreview {
  515. color : #909090;
  516. text-decoration : line-through;
  517. }
  518. img.hlScorePic {
  519. vertical-align : middle;
  520. width : 16px;
  521. height : 16px;
  522. }
  523. div.dlgSec {
  524. font-size : 12px;
  525. color : #555;
  526. font-weight : bold;
  527. clear : both;
  528. height : 20px;
  529. }
  530. div.dlgSecCont {
  531. position : relative;
  532. left : 150px;
  533. top : -20px;
  534. float : left;
  535. font-size : 12px;
  536. font-weight : normal;
  537. }
  538. div.dlgSecCont hr {
  539. height : 0px;
  540. line-height : 0px;
  541. border : 0px solid transparent;
  542. margin : 2px;
  543. }
  544. div.dlgSecCont > * {
  545. position : relative;
  546. top : -2px;
  547. }
  548. div.dlgButtons {
  549. text-align : right;
  550. clear : both;
  551. }
  552. span.labelColorIndicator {
  553. height : 16px;
  554. width : 16px;
  555. border-radius : 4px;
  556. line-height : 14px;
  557. vertical-align : middle;
  558. font-size : 9px;
  559. display : inline-block;
  560. border : 1px solid #ccc;
  561. background-color : #fff7d5;
  562. color : #063064;
  563. text-align : center;
  564. box-shadow : 0px 0px 1px 0px rgba(0,0,0,0.1);
  565. }
  566. div#cmdline {
  567. position : absolute;
  568. left : 5px;
  569. bottom : 5px;
  570. font-size : 11px;
  571. color : #555;
  572. font-weight : bold;
  573. background-color : white;
  574. border : 1px solid #88b0f0;
  575. padding : 3px 5px 3px 5px;
  576. z-index : 5;
  577. }
  578. #feed_browser_spinner {
  579. vertical-align : middle;
  580. height : 18px;
  581. width : 18px;
  582. }
  583. div.hlTitle {
  584. display : table-cell;
  585. cursor : pointer;
  586. width : 100%;
  587. vertical-align : middle;
  588. padding-top : 4px;
  589. padding-bottom : 4px;
  590. }
  591. div.hlLeft {
  592. display : table-cell;
  593. vertical-align : middle;
  594. white-space: nowrap;
  595. }
  596. div.hlRight {
  597. display : table-cell;
  598. white-space: nowrap;
  599. text-align : right;
  600. vertical-align : middle;
  601. }
  602. div.hlRight img {
  603. max-width : 16px;
  604. max-height : 16px;
  605. }
  606. span.hlUpdated {
  607. color : #555;
  608. min-width : 100px;
  609. display : table-cell;
  610. width : 100%;
  611. vertical-align : middle;
  612. text-align : right;
  613. font-size : 10px;
  614. }
  615. div.hlLeft {
  616. padding-left : 8px;
  617. }
  618. div.hlLeft input {
  619. margin-left : 4px;
  620. margin-right : 4px;
  621. }
  622. div.hlLeft img, div.hlRight img {
  623. margin : 0px 4px;
  624. }
  625. div.hlLeft img {
  626. width : 16px;
  627. height : 16px;
  628. }
  629. div.fatalError {
  630. margin-bottom : 10px;
  631. }
  632. div.fatalError button {
  633. margin-top : 5px;
  634. }
  635. div.fatalError textarea {
  636. width : 100%;
  637. height : 100px;
  638. }
  639. #ttrssMain #main {
  640. border-width : 0px;
  641. margin : 0px;
  642. padding : 0px;
  643. }
  644. #header-wrap {
  645. border-width : 0px;
  646. margin : 0px;
  647. padding : 0px;
  648. }
  649. #content-wrap {
  650. padding : 0px;
  651. border-width : 0px 0px 0px 1px;
  652. border-style : solid;
  653. border-color : #c0c0c0;
  654. margin : 0px;
  655. }
  656. #feeds-holder {
  657. padding : 0px;
  658. border-color : #c0c0c0;
  659. border-left-width : 0px;
  660. border-bottom-width : 0px;
  661. border-top-width : 0px;
  662. overflow : hidden;
  663. box-shadow : inset 0px 0px 3px rgba(0,0,0,0.1);
  664. background : #f9fbff;
  665. }
  666. #headlines-wrap-inner {
  667. padding : 0px;
  668. margin : 0px;
  669. border-width : 0px;
  670. }
  671. #headlines-frame {
  672. padding : 0px;
  673. border-color : #c0c0c0;
  674. border-style : solid;
  675. border-width : 0px;
  676. margin-top : 0px;
  677. box-shadow : inset 0px 0px 3px rgba(0,0,0,0.1);
  678. }
  679. #headlines-toolbar_splitter, #toolbar_splitter {
  680. display : none;
  681. }
  682. #toolbar {
  683. padding : 0px;
  684. margin : 0px;
  685. border-width : 0px;
  686. white-space: nowrap;
  687. font-size : 12px;
  688. box-shadow : 0px 0px 2px rgba(0,0,0,0.1);
  689. }
  690. #header {
  691. border-width : 0px;
  692. text-align : right;
  693. color : #555;
  694. padding : 5px 5px 0px 0px;
  695. margin : 0px;
  696. position : absolute;
  697. right : 0px;
  698. top : 0px;
  699. z-index : 5;
  700. }
  701. #footer {
  702. text-align : center;
  703. color : #555;
  704. padding : 4px 4px 8px 4px;
  705. border-width : 0px;
  706. }
  707. #content-insert {
  708. padding : 0px;
  709. border-color : #c0c0c0;
  710. border-bottom-width : 0px;
  711. border-right-width : 0px;
  712. border-left-width : 0px;
  713. line-height: 20px;
  714. overflow : auto;
  715. }
  716. #feedTree .dijitTreeRow .dijitTreeLabel.Unread {
  717. font-weight : bold;
  718. }
  719. #feedTree .dijitTreeRow.Error .dijitTreeLabel {
  720. color : red;
  721. }
  722. .dijitTreeLabel {
  723. outline : 0;
  724. }
  725. .feedParam {
  726. color : #555;
  727. float : right;
  728. margin-right : 1em;
  729. }
  730. .labelParam {
  731. float : right;
  732. margin-right : 1em;
  733. }
  734. .dijitTreeLabel.Disabled, .labelParam.Disabled {
  735. color : #555;
  736. }
  737. .dijitTreeRow.Error {
  738. color : red;
  739. }
  740. .dijitTreeRow.Hidden {
  741. display : none;
  742. }
  743. img.feedIcon, img.tinyFeedIcon {
  744. width : 16px;
  745. height : 16px;
  746. line-height : 16px;
  747. vertical-align : middle;
  748. display : inline-block;
  749. }
  750. .dijitToolbar {
  751. text-shadow : 1px 1px 2px #fff;
  752. }
  753. .dijitAccordionTitleFocus {
  754. text-shadow : 1px 1px 2px #fff;
  755. }
  756. .dijitDialog .dijitToolbar {
  757. border : 1px solid #c0c0c0;
  758. }
  759. .dijitDialog h2 {
  760. margin-top : 0px;
  761. margin-bottom : 4px;
  762. border-width : 0px;
  763. }
  764. .player {
  765. display : inline-block;
  766. color : #555;
  767. font-size : 11px;
  768. font-family : sans-serif;
  769. border : 1px solid #555;
  770. padding : 0px 4px 0px 4px;
  771. margin : 0px 2px 0px 2px;
  772. width : 50px;
  773. text-align : center;
  774. background : white;
  775. }
  776. .player.playing {
  777. color : #00c000;
  778. border-color : #00c000;
  779. }
  780. .player:hover {
  781. background : #f0f0f0;
  782. cursor : pointer;
  783. }
  784. #headlines-spacer {
  785. height : 100%;
  786. margin-left : 1px;
  787. text-align : center;
  788. padding : 1em;
  789. color : #555;
  790. }
  791. ul#filterDlg_Matches, ul#filterDlg_Actions {
  792. max-height : 100px;
  793. overflow : auto;
  794. list-style-type : none;
  795. border-style : solid;
  796. border-color : #c0c0c0;
  797. border-width : 0px 1px 1px 1px;
  798. background-color : #ecf4ff;
  799. margin : 0px 0px 5px 0px;
  800. padding : 0px;
  801. box-shadow : inset 0px 0px 2px rgba(0,0,0,0.1);
  802. }
  803. ul#filterDlg_Matches li, ul#filterDlg_Actions li {
  804. cursor : pointer;
  805. padding : 0px 0px 0px 5px;
  806. }
  807. ul#filterDlg_Matches li div.dijitCheckBox, ul#filterDlg_Actions li div.dijitCheckBox {
  808. margin-right : 5px;
  809. }
  810. ul.helpKbList {
  811. max-height : 300px;
  812. overflow : auto;
  813. list-style-type : none;
  814. border : 1px solid #c0c0c0;
  815. background-color : #ecf4ff;
  816. margin : 0px 0px 5px 0px;
  817. padding : 5px;
  818. border-radius : 4px;
  819. box-shadow : inset 0px 0px 2px rgba(0,0,0,0.1);
  820. }
  821. ul.helpKbList span.hksequence {
  822. width : 6em;
  823. margin-left : 20px;
  824. color : #88b0f0;
  825. font-weight : bold;
  826. display : inline-block;
  827. }
  828. ul.helpKbList h2 {
  829. margin-top : 0px;
  830. }
  831. .dijitTreeNode .loadingNode {
  832. margin-left : 3px;
  833. height : 9px;
  834. }
  835. span.collapseBtn {
  836. cursor : pointer;
  837. }
  838. div.postContent p {
  839. max-width : 650px;
  840. }
  841. div.postContent iframe {
  842. min-width : 50%;
  843. }
  844. div.postHeader span.author {
  845. color : #555;
  846. font-size : 11px;
  847. font-weight : normal;
  848. }
  849. body#ttrssZoom {
  850. margin-left : auto;
  851. margin-right : auto;
  852. padding : 20px;
  853. max-width : 800px;
  854. background : #f9fbff;
  855. }
  856. body#ttrssZoom div.postContent p {
  857. max-width : 650px;
  858. }
  859. body#ttrssZoom div.postHeader {
  860. margin : 10px;
  861. border : 1px solid #ccc;
  862. box-shadow : none;
  863. border-radius : 4px;
  864. }
  865. body#ttrssZoom div.postReply {
  866. border : 1px solid #ccc;
  867. border-radius : 4px;
  868. box-shadow : inset 0px 0px 3px rgba(0,0,0,0.1);
  869. background : white;
  870. }
  871. body#ttrssZoom div.postContent {
  872. }
  873. body#ttrssZoom div.footer {
  874. margin-top : 1em;
  875. text-align : center;
  876. }
  877. body#ttrssZoom div.postContent img {
  878. max-width : 650px;
  879. height : auto;
  880. }
  881. select.attachments {
  882. display : block;
  883. margin-top : 10px;
  884. max-width : 120px;
  885. }
  886. div.hl.active {
  887. border-color : #88b0f0;
  888. }
  889. #selected_prompt {
  890. margin-right : 25px;
  891. }
  892. #feedTree img.feedIcon {
  893. position : relative;
  894. top : -2px;
  895. }
  896. body#ttrssMain #feedTree .dijitTreeRow {
  897. padding : 2px 0px 2px;
  898. height : 22px;
  899. border-width : 1px;
  900. border-color : transparent;
  901. color : #333;
  902. }
  903. body#ttrssMain #feedTree .dijitFolderClosed,
  904. body#ttrssMain #feedTree .dijitFolderOpened {
  905. display : none;
  906. }
  907. .dijitTreeNode .dijitCheckBox {
  908. margin-left : 4px;
  909. }
  910. body#ttrssMain #feedTree .dijitTreeIsRoot > .dijitTreeRow > .dijitTreeExpando {
  911. margin-left : 5px;
  912. }
  913. body#ttrssMain #feedTree .dijitTreeExpando {
  914. margin-top : 0px;
  915. opacity : 0.6;
  916. }
  917. body#ttrssMain #feedTree .dijitTreeNode {
  918. padding : 0px;
  919. border-width : 0px;
  920. }
  921. body#ttrssMain #feedTree {
  922. height : 100%;
  923. overflow-x : hidden;
  924. font-family : "Segoe UI", Tahoma, sans-serif;
  925. }
  926. #feedTree .counterNode.aux {
  927. background : #f0f0f0;
  928. color : #999;
  929. border-color : #f0f0f0;
  930. text-shadow : none;
  931. }
  932. #feedTree .counterNode {
  933. font-weight : bold;
  934. display : inline-block;
  935. font-size : 9px;
  936. text-align : center;
  937. border : 1px solid #88b0f0;
  938. color : white;
  939. background : #88b0f0;
  940. border-radius : 4px;
  941. vertical-align : middle;
  942. float : right;
  943. line-height : 14px;
  944. margin-right : 4px;
  945. margin-top : 3px;
  946. min-width : 23px;
  947. height : 14px;
  948. text-shadow : 1px 1px rgba(0,0,0,0.2);
  949. }
  950. #feedTree .dijitTreeRow {
  951. max-width: 100%;
  952. overflow: hidden;
  953. text-overflow: ellipsis;
  954. }
  955. body#ttrssPrefs hr {
  956. border-color : #ecf4ff;
  957. max-width : 100%;
  958. }
  959. .dijitMenuItemLabel {
  960. font-size : 13px;
  961. }
  962. .dijitTreeRowSelected .dijitTreeLabel {
  963. text-shadow : 1px 1px 2px #fff;
  964. }
  965. #feedTree img[src*='indicator_white.gif'] {
  966. position : relative;
  967. top : -2px;
  968. }