tt-rss.less 19 KB

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