tt-rss.css 19 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187
  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. 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, "DejaVu Sans", "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, "DejaVu Sans", "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, "DejaVu Sans", "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, "DejaVu Sans", "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 : 4px;
  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, "DejaVu Sans", "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, "DejaVu Sans", "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 : 2px 0px 2px;
  915. height : 22px;
  916. border-width : 1px;
  917. color : #333;
  918. }
  919. body#ttrssMain #feedTree.dijitTree img.tinyFeedIcon {
  920. position : relative;
  921. top : -2px;
  922. }
  923. ul#filterDlg_Matches li div.dijitCheckBox, ul#filterDlg_Actions li div.dijitCheckBox {
  924. margin-right : 5px;
  925. }
  926. body#ttrssMain #feedTree {
  927. height : 100%;
  928. overflow-x : hidden;
  929. text-rendering: optimizelegibility;
  930. font-family : "Segoe UI Web", "Segoe UI", Ubuntu, "DejaVu Sans", "Helvetica Neue",
  931. Helvetica, Arial, sans-serif;
  932. }
  933. body#ttrssMain #feedTree .counterNode.aux {
  934. background : #f0f0f0;
  935. color : #999;
  936. border-color : #f0f0f0;
  937. }
  938. body#ttrssMain #feedTree .counterNode {
  939. font-weight : bold;
  940. display : inline-block;
  941. font-size : 9px;
  942. text-align : center;
  943. border : 1px solid rgb(82, 168, 236);
  944. color : white;
  945. background : rgb(82, 168, 236);
  946. border-radius : 4px;
  947. vertical-align : middle;
  948. float : right;
  949. position : relative;
  950. line-height : 14px;
  951. margin-right : 8px;
  952. margin-top : 3px;
  953. min-width : 23px;
  954. height : 14px;
  955. }
  956. body#ttrssMain #feedTree .dijitTreeNode .loadingExpando {
  957. left : -3px;
  958. height : 22px;
  959. position : relative;
  960. top : -3px;
  961. }
  962. span.highlight {
  963. background-color : #ffff00;
  964. color : #cc90cc;
  965. }
  966. div.enclosure_title {
  967. }
  968. body#ttrssMain #headlines-frame .dijitCheckBox {
  969. border-width : 0px;
  970. opacity : 0.5;
  971. }
  972. body#ttrssMain #headlines-frame .dijitCheckBoxHover,
  973. body#ttrssMain #headlines-frame .dijitCheckBoxChecked {
  974. opacity : 1;
  975. }
  976. body#ttrssMain #feedTree .dijitTreeRow img.dijitTreeExpandoLeaf {
  977. width : 16px;
  978. height : 16px;
  979. vertical-align : middle;
  980. position : relative;
  981. }
  982. #headlines-frame {
  983. -webkit-transform: translateZ(0);
  984. -webkit-backface-visibility: hidden;
  985. }
  986. :focus {
  987. outline: none;
  988. }
  989. .dijitDropDownButton.attachments .dijitButtonText {
  990. font-size : 12px;
  991. }
  992. .dijitDropDownButton.attachments {
  993. display : inline-block;
  994. }
  995. #editTagsDlg{
  996. overflow: visible;
  997. }