tt-rss.css 19 KB

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