tt-rss.css 19 KB

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