frss.rtl.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. :root {
  5. --frss-font-color-dark: #000;
  6. --frss-font-color-grey-dark: #666;
  7. --frss-font-color-grey-light: #aaa;
  8. --frss-font-color-light: #fff;
  9. --frss-background-color-error-transparent: #ff000040;
  10. --frss-font-color-error: #f00;
  11. --frss-background-color: #fff;
  12. --frss-background-color-transparent: #ffffff7f;
  13. --frss-background-color-middle: #eee;
  14. --frss-background-color-dark: #ccc;
  15. --frss-border-color: #999;
  16. --frss-border-color-error: #f00;
  17. --frss-switch-accent-color: #85d885;
  18. --frss-dragdrop-color: #ff0;
  19. --frss-dragdrop-color-transparent: #ff02;
  20. --frss-noThumbnailImage-background-color: #ddd;
  21. --frss-darken-background-hover-transparent: #6662;
  22. --frss-modal-background-color-transparent: #0007;
  23. --frss-box-shadow-color-transparent: #0003;
  24. --frss-scrollbar-handle: #0002;
  25. --frss-scrollbar-handle-hover: #0005;
  26. --frss-scrollbar-track: #0001;
  27. --frss-scrollbar-track-hover: #0001;
  28. --frss-loading-image: url("loader.gif");
  29. --frss-padding-flux-items: 0.75rem;
  30. --frss-padding-top-bottom: 0.5rem;
  31. line-height: 1.5;
  32. }
  33. @font-face {
  34. font-family: 'OpenSans';
  35. font-style: normal;
  36. font-weight: 400;
  37. src: local('Open Sans'), local('OpenSans'),
  38. url('../fonts/OpenSans.woff2') format('woff2'),
  39. url('../fonts/OpenSans.woff') format('woff');
  40. }
  41. html, body {
  42. margin: 0;
  43. padding: 0;
  44. background-color: var(--frss-background-color);
  45. height: 100%;
  46. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", sans-serif;
  47. font-size: 100%;
  48. }
  49. main.prompt {
  50. margin: 3rem auto 0;
  51. padding: 2rem;
  52. max-width: 400px;
  53. min-width: 300px;
  54. width: 33%;
  55. text-align: center;
  56. }
  57. main.prompt .link-registration {
  58. padding: 1rem 0 0;
  59. margin-bottom: 3rem;
  60. }
  61. footer.main-footer {
  62. margin: 0 2rem 2rem;
  63. padding: 1rem;
  64. text-align: center;
  65. }
  66. /*=== Links */
  67. a {
  68. text-decoration: none;
  69. }
  70. a:hover {
  71. text-decoration: underline;
  72. }
  73. /*=== Lists */
  74. ul, ol, dd {
  75. margin: 0;
  76. padding: 0;
  77. }
  78. ul.listInColumns {
  79. column-count: 5;
  80. column-width: 250px;
  81. max-width: 1700px;
  82. }
  83. ul.listInColumns li {
  84. white-space: nowrap;
  85. text-overflow: ellipsis;
  86. overflow: hidden;
  87. }
  88. #tagsList {
  89. list-style: none;
  90. }
  91. /*=== Titles */
  92. h1 {
  93. margin: 1rem 0 0.5rem;
  94. font-size: 1.6rem;
  95. line-height: 1.5;
  96. }
  97. h2 {
  98. margin: 0.5rem 0 0.25rem;
  99. font-size: 1.4rem;
  100. line-height: 1.5;
  101. }
  102. .api > h2 {
  103. text-align: center;
  104. }
  105. h2 .icon,
  106. legend .icon {
  107. height: 0.8em;
  108. vertical-align: baseline;
  109. }
  110. h3 {
  111. margin: 0.5rem 0 0.25rem;
  112. font-size: 1.2rem;
  113. line-height: 1.5;
  114. }
  115. h4,
  116. h5,
  117. h6 {
  118. font-size: 1em;
  119. }
  120. .title_hidden {
  121. display: none;
  122. }
  123. .only-mobile {
  124. display: none !important;
  125. }
  126. /*=== Paragraphs */
  127. p {
  128. margin: 1rem 0 0.5rem;
  129. }
  130. p.help, .prompt p.help {
  131. margin: 0.25rem 0 0.5rem;
  132. text-align: right;
  133. }
  134. p.help .icon {
  135. filter: brightness(2);
  136. }
  137. kbd {
  138. background-color: var(--frss-background-color-middle);
  139. padding: 0 0.5rem 0 0.5rem;
  140. display: inline-block;
  141. color: var(--frss-font-color-grey-dark);
  142. font-size: 0.9rem;
  143. border: 1px solid var(--frss-border-color);
  144. border-radius: 3px;
  145. white-space: pre-wrap;
  146. overflow-wrap: anywhere;
  147. }
  148. /*=== Images */
  149. img {
  150. max-width: 100%;
  151. height: auto;
  152. }
  153. img.favicon {
  154. margin: 0 0 0 0.25rem;
  155. width: 1rem;
  156. height: 1rem;
  157. vertical-align: middle;
  158. }
  159. .content.thin figure,
  160. .content.medium figure {
  161. margin: 8px 0px;
  162. }
  163. .content figure figcaption {
  164. font-style: italic;
  165. }
  166. .feed.mute::before {
  167. content: '🔇';
  168. }
  169. /*=== Videos */
  170. audio, iframe, embed, object, video {
  171. max-width: 100%;
  172. }
  173. audio {
  174. width: 100%;
  175. }
  176. /*=== Forms */
  177. fieldset {
  178. margin: 0;
  179. padding: 0;
  180. border: 0;
  181. }
  182. legend {
  183. display: block;
  184. width: 100%;
  185. clear: both;
  186. }
  187. label {
  188. display: block;
  189. }
  190. input:not(.w50,.w100) {
  191. max-width: 90%;
  192. width: 300px;
  193. }
  194. input[type=number] {
  195. width: 6em;
  196. }
  197. textarea,
  198. input[type="file"],
  199. input.long {
  200. width: 300px;
  201. }
  202. input, select, textarea {
  203. display: inline-block;
  204. max-width: 100%;
  205. font-size: 0.8rem;
  206. box-sizing: border-box;
  207. }
  208. select {
  209. min-width: 6em;
  210. }
  211. input.w50,
  212. select.w50,
  213. textarea.w50 {
  214. min-width: 50%;
  215. box-sizing: border-box;
  216. }
  217. input.w100,
  218. select.w100,
  219. textarea.w100 {
  220. width: 100%;
  221. box-sizing: border-box;
  222. }
  223. .stick.w50 {
  224. width: 50%;
  225. }
  226. .stick.w100 {
  227. width: 100%;
  228. }
  229. .stick.w50 input,
  230. .stick.w100 input {
  231. width: 100%;
  232. }
  233. .stick.w100 input + .btn {
  234. width: 29px;
  235. padding-right: 3px;
  236. padding-left: 3px;
  237. text-align: center;
  238. }
  239. textarea[rows="2"] {
  240. height: 4em;
  241. }
  242. textarea:invalid {
  243. border: 2px dashed var(--frss-border-color-error);
  244. }
  245. .prompt textarea,
  246. .prompt input,
  247. .prompt select,
  248. .prompt .stick {
  249. margin: 5px auto;
  250. width: 100%;
  251. box-sizing: border-box;
  252. }
  253. input:disabled,
  254. select:disabled {
  255. background-color: transparent;
  256. min-width: 75px;
  257. color: var(--frss-font-color-grey-light);
  258. font-style: italic;
  259. border: 1px dashed var(--frss-border-color);
  260. }
  261. input[type="radio"],
  262. input[type="checkbox"] {
  263. min-width: auto;
  264. width: 15px !important;
  265. min-height: 15px !important;
  266. }
  267. .dropdown-menu label > input[type="text"] {
  268. width: 150px;
  269. width: calc(99% - 5em);
  270. }
  271. .dropdown-menu .item > a:hover,
  272. .dropdown-menu .item > button:hover {
  273. text-decoration: none;
  274. }
  275. .dropdown-menu input[type="checkbox"] {
  276. margin-right: 1em;
  277. margin-left: .5em;
  278. }
  279. .dropdown-menu .item .checkboxNewTag {
  280. display: none;
  281. }
  282. .dropdown-menu .item.addItem {
  283. padding: 0 0.5em;
  284. }
  285. .dropdown-menu .item.addItem .stick {
  286. width: 100%
  287. }
  288. .dropdown-menu .item.addItem .stick input[type=text] {
  289. width: 100%;
  290. }
  291. button.as-link,
  292. button.as-link:hover,
  293. button.as-link:active {
  294. background: transparent;
  295. color: inherit;
  296. border: none;
  297. cursor: pointer;
  298. text-align: right;
  299. }
  300. button.as-link[disabled] {
  301. color: var(--frss-font-color-grey-light) !important;
  302. }
  303. /*=== Tables */
  304. .table-wrapper {
  305. overflow-x: auto;
  306. }
  307. table {
  308. margin: 0.5rem 0;
  309. max-width: 100%;
  310. }
  311. th, td {
  312. padding: 0.5rem;
  313. }
  314. th.numeric,
  315. td.numeric {
  316. text-align: center;
  317. }
  318. /*=== COMPONENTS */
  319. /*===============*/
  320. [aria-hidden="true"] {
  321. display: none !important;
  322. }
  323. /* prompt: login + register form + alert message banner */
  324. .prompt {
  325. text-align: center;
  326. }
  327. .prompt form {
  328. margin-top: 2rem;
  329. text-align: right;
  330. }
  331. .prompt label,
  332. .prompt .help {
  333. text-align: right;
  334. }
  335. .prompt input,
  336. .prompt select,
  337. .prompt .stick {
  338. width: 100%;
  339. box-sizing: border-box;
  340. }
  341. .prompt p {
  342. margin: 20px 0;
  343. }
  344. /*=== Forms */
  345. .form-group::after {
  346. content: "";
  347. display: block;
  348. clear: both;
  349. }
  350. .form-group.form-actions {
  351. min-width: 250px;
  352. }
  353. .form-group .group-name {
  354. display: block;
  355. float: right;
  356. width: 200px;
  357. text-align: left;
  358. }
  359. .form-group .group-controls {
  360. min-width: 200px;
  361. margin: 0 220px 0 0;
  362. overflow-x: auto;
  363. }
  364. .form-group .group-controls .control {
  365. display: block;
  366. }
  367. .form-advanced-title {
  368. padding: 15px 0;
  369. width: 200px;
  370. font-weight: bold;
  371. text-align: left;
  372. cursor: pointer;
  373. }
  374. @supports (position: sticky) {
  375. #mark-read-aside {
  376. position: sticky;
  377. top: 0;
  378. }
  379. }
  380. /*=== Buttons */
  381. .stick,
  382. .group {
  383. display: inline-flex;
  384. max-width: 100%;
  385. white-space: nowrap;
  386. vertical-align: middle;
  387. }
  388. .stick > input {
  389. margin-top: 0;
  390. margin-bottom: 0;
  391. }
  392. .stick > input.long {
  393. flex-shrink: 1;
  394. }
  395. .stick > .btn,
  396. .group > .btn {
  397. flex-shrink: 0;
  398. }
  399. #nav_menu_read_all form {
  400. display: inline-flex;
  401. }
  402. .btn {
  403. display: inline-block;
  404. cursor: pointer;
  405. overflow: hidden;
  406. }
  407. .btn-important {
  408. font-weight: bold;
  409. }
  410. .btn-state1.hide {
  411. display: none;
  412. }
  413. .btn-state2 {
  414. display: none;
  415. }
  416. .btn-state2.show {
  417. display: inline-block;
  418. }
  419. #button-update-loading {
  420. background: var(--frss-loading-image) 0.5rem center no-repeat;
  421. background-size: 1rem;
  422. padding-right: 2rem;
  423. }
  424. /*=== switch */
  425. .switch {
  426. margin: 0 0.5em;
  427. padding: revert;
  428. position: relative;
  429. width: 3.5em;
  430. height: 1.75em;
  431. border: 0;
  432. border-radius: 1em;
  433. background-color: var(--frss-background-color-dark);
  434. cursor: pointer;
  435. box-sizing: content-box;
  436. background-repeat: no-repeat;
  437. background-position: center center;
  438. background-image: url('../icons/disabled.svg');
  439. transition: background-position 0.5s;
  440. }
  441. .switch:not([disabled]):hover {
  442. background-image: url('../icons/enabled.svg');
  443. background-repeat: no-repeat;
  444. background-position: left 7px center;
  445. }
  446. .switch.active {
  447. background-color: var(--frss-switch-accent-color);
  448. background-repeat: no-repeat;
  449. background-position: center center;
  450. background-image: url('../icons/enabled.svg');
  451. }
  452. .switch.active:not([disabled]):hover {
  453. background-position: right 7px center;
  454. background-repeat: no-repeat;
  455. background-image: url('../icons/disabled.svg');
  456. }
  457. @supports selector(.switch::before) {
  458. .switch {
  459. background-image: none;
  460. }
  461. .switch.active {
  462. background-image: none;
  463. }
  464. }
  465. /* ::before = circle */
  466. .switch::before {
  467. content: "";
  468. position: absolute;
  469. right: 5px;
  470. left: unset;
  471. top: 0.2em;
  472. width: 1.5em;
  473. height: 1.5em;
  474. background-color: var(--frss-background-color);
  475. background-image: url('../icons/disabled.svg');
  476. background-repeat: no-repeat;
  477. background-position: center center;
  478. border-radius: 50%;
  479. transition: right 0.6s, left 0.6s;
  480. }
  481. .switch:not([disabled]):hover::before {
  482. background-color: var(--frss-background-color-middle);
  483. }
  484. .switch.active::before {
  485. background-image: url('../icons/enabled.svg');
  486. background-position: center center;
  487. right: unset;
  488. left: 5px;
  489. }
  490. .switch.active:not([disabled]):hover::before {
  491. left: 8px;
  492. }
  493. /* ::after = background */
  494. .switch::after {
  495. content: "";
  496. position: absolute;
  497. top: 50%;
  498. left: 8px;
  499. width: 12px;
  500. height: 12px;
  501. transform: translateY(-50%);
  502. }
  503. .switch.active::after {
  504. width: 14px;
  505. height: 14px;
  506. right: 8px;
  507. }
  508. .btn:focus-visible,
  509. input[type="checkbox"]:focus-visible {
  510. outline: 2px solid var(--frss-border-color);
  511. }
  512. /*=== Navigation */
  513. .nav-list {
  514. padding-bottom: 3rem;
  515. }
  516. .nav-list .nav-header,
  517. .nav-list .item {
  518. display: block;
  519. }
  520. .nav-list .item,
  521. .nav-list .item > a,
  522. .nav-list .item > span {
  523. display: block;
  524. overflow: hidden;
  525. white-space: nowrap;
  526. text-overflow: ellipsis;
  527. }
  528. /*=== Horizontal-list */
  529. .horizontal-list {
  530. margin: 0;
  531. padding: 0;
  532. display: table;
  533. table-layout: fixed;
  534. width: 100%;
  535. }
  536. .horizontal-list .item {
  537. display: table-cell;
  538. vertical-align: middle;
  539. }
  540. .horizontal-list .item .item-element {
  541. padding: var(--frss-padding-top-bottom) 0;
  542. }
  543. .horizontal-list .item .item-element.dropdown .dropdown-toggle,
  544. .horizontal-list .item .item-element.dropdown .dropdown-toggle-close {
  545. padding: var(--frss-padding-top-bottom) var(--frss-padding-flux-items);
  546. }
  547. /*=== manage-list */
  548. .manage-list {
  549. list-style: none;
  550. }
  551. .manage-list li {
  552. line-height: 2;
  553. }
  554. .manage-list li * {
  555. vertical-align: middle;
  556. }
  557. .manage-list .disabled {
  558. font-style: italic;
  559. }
  560. /*=== Dropdown */
  561. .dropdown {
  562. position: relative;
  563. display: inline-block;
  564. vertical-align: middle;
  565. }
  566. .dropdown-target {
  567. display: none;
  568. }
  569. .dropdown-menu {
  570. margin: 0;
  571. background-color: var(--frss-background-color);
  572. display: none;
  573. border: 1px solid var(--frss-border-color);
  574. min-width: 200px;
  575. position: absolute;
  576. left: 0;
  577. }
  578. .dropdown-menu::after {
  579. background-color: inherit;
  580. width: 10px;
  581. height: 10px;
  582. border-width: 1px 1px 0 0;
  583. border-style: solid;
  584. border-color: var(--frss-border-color);
  585. content: "";
  586. position: absolute;
  587. top: -6px;
  588. left: 13px;
  589. z-index: -10;
  590. transform: rotate(-45deg);
  591. }
  592. .dropdown-menu-scrollable {
  593. max-height: min(75vh, 50em);
  594. overflow-x: hidden;
  595. overflow-y: auto;
  596. }
  597. .dropdown-header {
  598. display: block;
  599. }
  600. .dropdown-menu .item {
  601. display: block;
  602. }
  603. .dropdown-menu .item > a,
  604. .dropdown-menu .item > .as-link,
  605. .dropdown-menu .item > span {
  606. display: block;
  607. width: 100%;
  608. white-space: nowrap;
  609. box-sizing: border-box;
  610. }
  611. .dropdown-menu > .item[aria-checked="true"] > a::before {
  612. content: '✓';
  613. }
  614. .dropdown-menu .input {
  615. display: block;
  616. }
  617. .dropdown-menu .input select,
  618. .dropdown-menu .input input {
  619. display: block;
  620. max-width: 95%;
  621. }
  622. .dropdown-target:target ~ .dropdown-menu {
  623. display: block;
  624. z-index: 1000;
  625. }
  626. .dropdown-menu + .dropdown-close {
  627. display: none;
  628. }
  629. .dropdown-target:target ~ .dropdown-close {
  630. display: block;
  631. font-size: 0;
  632. position: fixed;
  633. top: 0; bottom: 0;
  634. right: 0; left: 0;
  635. z-index: 999;
  636. cursor: default;
  637. }
  638. .item ~ .dropdown-header,
  639. .dropdown-section ~ .dropdown-section,
  640. .item.separator {
  641. margin-top: 5px;
  642. padding-top: 5px;
  643. border-top-width: 1px;
  644. border-top-style: solid;
  645. }
  646. /*=== Alerts */
  647. .alert {
  648. margin: 1rem auto;
  649. padding: 0.75rem 1rem;
  650. display: block;
  651. width: 90%;
  652. }
  653. .alert-warn {
  654. background: inherit;
  655. }
  656. .group-controls .alert {
  657. width: 100%
  658. }
  659. .group-controls .next-step {
  660. display: inline-block;
  661. padding-top: 6px;
  662. padding-bottom: 6px;
  663. }
  664. .alert-head {
  665. margin: 0;
  666. font-weight: bold;
  667. }
  668. .alert ul {
  669. margin: 5px 20px;
  670. }
  671. .alert.hide {
  672. display: none;
  673. }
  674. /*=== Icons */
  675. .icon {
  676. display: inline-block;
  677. max-width: none;
  678. height: 1rem;
  679. vertical-align: middle;
  680. line-height: 1;
  681. }
  682. /* === stream-footer **/
  683. #stream-footer {
  684. margin: 0 0 5em;
  685. padding: 1em 0;
  686. width: 100%;
  687. border-top: 1px solid var(--frss-border-color);
  688. text-align: center;
  689. }
  690. /*=== Pagination */
  691. .nav-pagination {
  692. margin: 2em auto;
  693. }
  694. .pagination {
  695. margin: 0 auto;
  696. padding: 0;
  697. display: table;
  698. table-layout: fixed;
  699. text-align: center;
  700. }
  701. .pagination .item {
  702. display: table-cell;
  703. width: 3em;
  704. font-style: italic;
  705. }
  706. .pagination .item.active {
  707. min-width: 3em;
  708. font-weight: bold;
  709. font-style: normal;
  710. }
  711. .pagination .item a {
  712. display: block;
  713. text-decoration: none;
  714. }
  715. .pagination .pager-previous,
  716. .pagination .pager-next {
  717. width: 6em;
  718. }
  719. .pagination .pager-first,
  720. .pagination .pager-last {
  721. width: 7.5em;
  722. }
  723. /*=== Boxes */
  724. .box {
  725. margin: 20px 0 20px 20px;
  726. display: inline-block;
  727. max-width: 95%;
  728. width: 20rem;
  729. vertical-align: top;
  730. }
  731. .box.visible-semi {
  732. border-style: dashed;
  733. opacity: 0.5;
  734. }
  735. .box .box-title {
  736. position: relative;
  737. }
  738. .box .box-title h2 {
  739. display: inline;
  740. font-size: 1.2rem;
  741. font-weight: bold;
  742. }
  743. .box .box-title form {
  744. margin: 0;
  745. }
  746. .box .box-content {
  747. padding: 8px 16px 8px 8px;
  748. display: block;
  749. min-height: 2.5em;
  750. max-height: 260px;
  751. overflow: auto;
  752. }
  753. .box .box-content .item.feed {
  754. display: block;
  755. padding-top: var(--frss-padding-top-bottom);
  756. }
  757. .box .box-content .item.feed.moved {
  758. font-style: italic;
  759. }
  760. .box .box-content .item.feed.moved .favicon {
  761. opacity: 0.4;
  762. }
  763. .box .box-content .item.disabled {
  764. text-align: center;
  765. font-style: italic;
  766. }
  767. .box .box-content-centered {
  768. padding: 30px 5px;
  769. text-align: center;
  770. }
  771. .box .box-content-centered .btn {
  772. margin: 20px 0 0;
  773. }
  774. /*=== Draggable */
  775. [draggable=true]:hover {
  776. cursor: move;
  777. }
  778. .dragging {
  779. background-color: var(--frss-dragdrop-color)
  780. }
  781. .dragging .icon {
  782. visibility: hidden;
  783. }
  784. .drag-disallowed {
  785. opacity: 0.5;
  786. }
  787. .drag-active .drop-zone:not(.drag-disallowed) {
  788. background: repeating-linear-gradient(-45deg, transparent, transparent 40px, var(--frss-dragdrop-color-transparent) 40px, var(--frss-dragdrop-color-transparent) 60px);
  789. }
  790. .drag-active .drag-hover.drop-zone {
  791. background-color: var(--frss-dragdrop-color-transparent);
  792. transition: background 0.5s;
  793. }
  794. li.drag-hover {
  795. margin: 0 0 5px;
  796. border-bottom: 2px solid var(--frss-border-color);
  797. }
  798. .drag-drop {
  799. animation-name: droppedKeyframe;
  800. animation-duration: 0.7s;
  801. }
  802. @keyframes droppedKeyframe {
  803. 0% {
  804. background-color: var(--frss-dragdrop-color-transparent);
  805. }
  806. 50% {
  807. background-color: var(--frss-dragdrop-color);
  808. }
  809. 100% {
  810. background-color: none;
  811. }
  812. }
  813. /*=== Scrollbar */
  814. @supports (scrollbar-width: thin) {
  815. .scrollbar-thin {
  816. scrollbar-color: var(--frss-scrollbar-handle) var(--frss-scrollbar-track);
  817. scrollbar-width: thin;
  818. }
  819. .scrollbar-thin:hover {
  820. scrollbar-color: var(--frss-scrollbar-handle-hover) var(--frss-scrollbar-track-hover);
  821. }
  822. }
  823. @supports not (scrollbar-width: thin) {
  824. .scrollbar-thin::-webkit-scrollbar {
  825. background-color: var(--frss-scrollbar-track);
  826. width: 8px;
  827. }
  828. .scrollbar-thin:hover::-webkit-scrollbar {
  829. background-color: var(--frss-scrollbar-track-hover);
  830. }
  831. .scrollbar-thin::-webkit-scrollbar-thumb {
  832. background-color: var(--frss-scrollbar-handle);
  833. display: unset;
  834. border-radius: 5px;
  835. }
  836. .scrollbar-thin:hover::-webkit-scrollbar-thumb {
  837. background-color: var(--frss-scrollbar-handle-hover);
  838. }
  839. }
  840. /*=== Tree */
  841. .tree {
  842. margin: 0;
  843. max-height: 99vh;
  844. list-style: none;
  845. text-align: right;
  846. overflow-x: hidden;
  847. }
  848. .tree-folder-items {
  849. padding: 0;
  850. list-style: none;
  851. transition: max-height .3s linear;
  852. }
  853. .tree-folder-title {
  854. padding-top: var(--frss-padding-top-bottom);
  855. padding-bottom: var(--frss-padding-top-bottom);
  856. }
  857. .tree-folder-title .title {
  858. display: inline-block;
  859. width: 100%;
  860. vertical-align: middle;
  861. overflow: hidden;
  862. white-space: nowrap;
  863. text-overflow: ellipsis;
  864. }
  865. .tree-folder-items > .item {
  866. display: block;
  867. white-space: nowrap;
  868. }
  869. .tree-folder-items > .item > a {
  870. display: inline-block;
  871. vertical-align: middle;
  872. width: calc(100% - 32px);
  873. overflow: hidden;
  874. white-space: nowrap;
  875. text-overflow: ellipsis;
  876. }
  877. .tree-folder-items .item.feed {
  878. position: relative;
  879. }
  880. .tree-bottom {
  881. visibility: hidden;
  882. margin-bottom: 18em;
  883. }
  884. /*=== STRUCTURE */
  885. /*===============*/
  886. /*=== Header */
  887. .header {
  888. display: table;
  889. width: 100%;
  890. height: calc(2.5rem + 2 * var(--frss-padding-top-bottom));
  891. table-layout: fixed;
  892. }
  893. .header > .item {
  894. padding-top: var(--frss-padding-top-bottom);
  895. padding-bottom: var(--frss-padding-top-bottom);
  896. display: table-cell;
  897. }
  898. .header > .item.title {
  899. width: 300px;
  900. text-align: center;
  901. white-space: nowrap;
  902. }
  903. .header > .item.title h1 {
  904. display: inline-block;
  905. }
  906. .header > .item.title a {
  907. padding: 0.25rem 1rem;
  908. display: inline-block;
  909. }
  910. .header > .item.title .logo {
  911. display: inline-block;
  912. height: 2rem;
  913. vertical-align: middle;
  914. }
  915. .header > .item.title a:hover .logo {
  916. filter: brightness(1.4);
  917. transition: filter 0.1s linear;
  918. }
  919. .header > .item.configure {
  920. width: 100px;
  921. }
  922. input[type="search"] {
  923. -webkit-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
  924. }
  925. /*=== Body */
  926. #global {
  927. background: inherit;
  928. display: table;
  929. width: 100%;
  930. height: calc(100vh - (calc(2.5rem + 2 * var(--frss-padding-top-bottom) + 1px)));
  931. table-layout: fixed;
  932. }
  933. #stream:not(.alert-warn) {
  934. background: inherit;
  935. }
  936. .aside {
  937. display: table-cell;
  938. width: 300px;
  939. vertical-align: top;
  940. }
  941. .aside + .close-aside {
  942. display: none;
  943. }
  944. /*=== Aside main page */
  945. .aside_feed .category .title {
  946. width: calc(100% - 35px);
  947. }
  948. .aside_feed .category .title:not([data-unread="0"]) {
  949. width: calc(100% - 75px);
  950. }
  951. .aside_feed .tree-folder.category .tree-folder-title .title.error .icon {
  952. margin: 0 0.5rem;
  953. padding: 0;
  954. }
  955. .aside_feed .tree-folder-title .icon,
  956. .aside_feed .tree-folder-items .feed .icon {
  957. margin: 0 0 0 0.5rem;
  958. }
  959. .aside_feed .tree-folder-items .feed .favicon {
  960. padding: 0;
  961. }
  962. .aside_feed .tree-folder-items .item.feed {
  963. padding: var(--frss-padding-top-bottom) 0.75rem;
  964. }
  965. .aside_feed .tree-folder-items:not(.active) {
  966. margin: 0;
  967. padding: 0;
  968. max-height: 0;
  969. border: none;
  970. overflow: hidden;
  971. }
  972. .aside_feed .tree-folder-items .dropdown {
  973. vertical-align: top;
  974. }
  975. .aside_feed .tree-folder-items .dropdown-menu {
  976. right: 0;
  977. }
  978. .aside_feed .tree-folder-items .item .dropdown-toggle > .icon {
  979. visibility: hidden;
  980. cursor: pointer;
  981. }
  982. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  983. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  984. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  985. visibility: visible;
  986. }
  987. .aside .toggle_aside:hover,
  988. #slider .toggle_aside:hover,
  989. #overlay .close:hover,
  990. .dropdown-menu .toggle_aside:hover {
  991. background-color: var(--frss-darken-background-hover-transparent);
  992. }
  993. /*=== New article notification */
  994. #new-article {
  995. display: none;
  996. }
  997. #new-article > a {
  998. padding: calc(0.25rem + var(--frss-padding-top-bottom)) 1rem;
  999. display: block;
  1000. }
  1001. /*=== Day indication */
  1002. .day {
  1003. background: inherit;
  1004. }
  1005. .day .name {
  1006. position: absolute;
  1007. left: 0;
  1008. width: 50%;
  1009. overflow: hidden;
  1010. white-space: nowrap;
  1011. text-overflow: ellipsis;
  1012. }
  1013. /*=== Feed article header and footer */
  1014. .flux_header {
  1015. background: inherit;
  1016. position: relative;
  1017. }
  1018. .flux .flux_header .item {
  1019. white-space: nowrap;
  1020. }
  1021. .flux .flux_header .item .item-element {
  1022. padding: var(--frss-padding-top-bottom) 0;
  1023. line-height: 1.5rem;
  1024. }
  1025. .flux .flux_header .item.manage .item-element,
  1026. .flux .flux_header .item.website .item-element,
  1027. .flux .flux_header .item.link .item-element {
  1028. padding-right: var(--frss-padding-flux-items);
  1029. padding-left: var(--frss-padding-flux-items);
  1030. }
  1031. .flux .item.manage,
  1032. .flux .item.link {
  1033. width: calc(1rem + 2 * var(--frss-padding-flux-items));
  1034. }
  1035. .flux .item.website {
  1036. width: 200px;
  1037. }
  1038. .flux .websiteicon .item.website {
  1039. width: calc(2 * var(--frss-padding-flux-items) + 16px);
  1040. }
  1041. .flux .websitename .item.website {
  1042. width: 150px;
  1043. }
  1044. .website a:hover .favicon,
  1045. a.website:hover .favicon {
  1046. filter: grayscale(100%);
  1047. }
  1048. .flux.not_read .item .title,
  1049. .flux.current .item .title {
  1050. font-weight: bold;
  1051. }
  1052. .flux:not(.current):hover .flux_header .item .title:has(~ .date) {
  1053. padding-left: 0.5rem;
  1054. z-index: 2;
  1055. }
  1056. .flux:not(.current):hover .flux_header .item .date {
  1057. opacity: 0.3;
  1058. }
  1059. .flux:not(.current):hover .item .title {
  1060. background-color: inherit;
  1061. }
  1062. .flux .item:has(.multiline) {
  1063. vertical-align: top;
  1064. }
  1065. .flux .flux_header .item .title a {
  1066. color: var(--frss-font-color-dark);
  1067. text-decoration: none;
  1068. }
  1069. .flux .flux_header .item.thumbnail {
  1070. line-height: 0;
  1071. padding: var(--frss-padding-top-bottom) var(--frss-padding-flux-items);
  1072. height: 80px;
  1073. }
  1074. .flux .flux_header .item.thumbnail .item-element {
  1075. padding: 0;
  1076. }
  1077. .flux .flux_header .item.thumbnail.small {
  1078. height: 40px;
  1079. }
  1080. .flux .flux_header .item.thumbnail.portrait {
  1081. width: 60px;
  1082. }
  1083. .flux .flux_header .item.thumbnail.square {
  1084. width: 80px;
  1085. }
  1086. .flux .flux_header .item.thumbnail.landscape {
  1087. width: 128px;
  1088. }
  1089. .flux .flux_header .item.thumbnail.portrait.small {
  1090. width: 30px;
  1091. }
  1092. .flux .flux_header .item.thumbnail.square.small {
  1093. width: 40px;
  1094. }
  1095. .flux .flux_header .item.thumbnail.landscape.small {
  1096. width: 64px;
  1097. }
  1098. .flux .flux_header .item.thumbnail img {
  1099. background: repeating-linear-gradient( 45deg, var(--frss-noThumbnailImage-background-color), var(--frss-noThumbnailImage-background-color) 5px, transparent 5px, transparent 10px );
  1100. display: inline-block;
  1101. width: 100%;
  1102. height: 100%;
  1103. overflow: hidden;
  1104. object-fit: cover;
  1105. }
  1106. .flux .flux_header .item.titleAuthorSummaryDate {
  1107. position: relative;
  1108. overflow: hidden;
  1109. }
  1110. .flux .flux_header .item .title {
  1111. position: absolute;
  1112. top: 0;
  1113. overflow: hidden;
  1114. text-overflow: ellipsis;
  1115. display: inline-block;
  1116. box-sizing: border-box;
  1117. max-width: 100%;
  1118. }
  1119. .flux .flux_header .item .title:has(~.date) {
  1120. padding-left: 155px;
  1121. }
  1122. .flux .flux_header .item .summary {
  1123. display: -webkit-box;
  1124. color: var(--frss-font-color-grey-dark);
  1125. font-size: 0.9rem;
  1126. font-weight: normal;
  1127. overflow: hidden;
  1128. text-overflow: ellipsis;
  1129. -webkit-line-clamp: 2;
  1130. -webkit-box-orient: vertical;
  1131. white-space: break-spaces;
  1132. margin-top: 2.25rem;
  1133. margin-bottom: 0.5rem;
  1134. }
  1135. .flux .flux_header .item .summary:has(~.date) {
  1136. max-width: 90%;
  1137. }
  1138. .flux .flux_header .item .title .author {
  1139. padding-right: 1rem;
  1140. color: var(--frss-font-color-grey-dark);
  1141. font-weight: normal;
  1142. }
  1143. .flux .flux_header .item .date {
  1144. position: absolute;
  1145. left: 0;
  1146. top: 0;
  1147. width: 155px;
  1148. text-align: left;
  1149. overflow: hidden;
  1150. z-index: 1;
  1151. }
  1152. .flux .flux_header .item > a {
  1153. display: block;
  1154. white-space: nowrap;
  1155. text-overflow: ellipsis;
  1156. overflow: hidden;
  1157. }
  1158. .flux .flux_header .date,
  1159. .flux .flux_content .bottom .date {
  1160. font-size: 0.7rem;
  1161. }
  1162. .item.query > a {
  1163. display: list-item;
  1164. list-style-position: inside;
  1165. list-style-type: decimal;
  1166. }
  1167. .flux_content .bottom .dropdown-toggle .icon {
  1168. margin-left: 0.25rem;
  1169. }
  1170. /*=== Feed article content */
  1171. .hide_posts > .flux:not(.active) > .flux_content {
  1172. display: none;
  1173. }
  1174. .content {
  1175. min-height: 20rem;
  1176. margin: auto;
  1177. line-height: 1.5;
  1178. word-wrap: break-word;
  1179. }
  1180. .content .text {
  1181. overflow-x: auto;
  1182. }
  1183. .content .text div {
  1184. overflow-x: auto;
  1185. }
  1186. .content header,
  1187. .content .text,
  1188. .content footer {
  1189. padding: 0 3rem;
  1190. }
  1191. .content header {
  1192. padding-top: calc(2 * var(--frss-padding-top-bottom));
  1193. padding-bottom: calc(var(--frss-padding-top-bottom));
  1194. }
  1195. .content footer {
  1196. padding-bottom: calc(2 * var(--frss-padding-top-bottom));
  1197. }
  1198. .content.large {
  1199. max-width: 1100px;
  1200. }
  1201. .content.medium {
  1202. max-width: 900px;
  1203. }
  1204. .content.thin {
  1205. max-width: 650px;
  1206. }
  1207. .content .article-header-topline {
  1208. margin-bottom: 0.75rem;
  1209. }
  1210. .content > header,
  1211. .content > footer {
  1212. color: var(--frss-font-color-grey-light);
  1213. font-size: 0.9rem;
  1214. }
  1215. .content > footer {
  1216. padding-top: 1rem;
  1217. clear: both;
  1218. }
  1219. .content > footer .subtitle {
  1220. padding: 2rem 0 1rem;
  1221. border-top: 2px solid var(--frss-border-color);
  1222. }
  1223. .content > header .tags,
  1224. .content > footer .tags {
  1225. display: flex;
  1226. line-height: 1;
  1227. }
  1228. .content > header .tags .icon,
  1229. .content > header .website .favicon,
  1230. .content > footer .tags .icon {
  1231. margin: 0 0 0 0.5rem;
  1232. line-height: 1.5;
  1233. }
  1234. .content > header .tags .list-tags,
  1235. .content > footer .tags .list-tags {
  1236. margin: 0;
  1237. padding: 0;
  1238. display: inline-block;
  1239. list-style: none;
  1240. }
  1241. .content > header .tags .list-tags .item.tag,
  1242. .content > footer .tags .list-tags .item.tag {
  1243. padding: 0 0 0 0.75rem;
  1244. display: inline-block;
  1245. line-height: 1.5;
  1246. }
  1247. .content > header .tags .list-tags .item.tag a.link-tag,
  1248. .content > footer .tags .list-tags .item.tag a.link-tag {
  1249. display: inline;
  1250. }
  1251. .content > header h1 {
  1252. margin: 0.5rem 0;
  1253. }
  1254. .content .text ul,
  1255. .content .text ol,
  1256. .content .text dd {
  1257. margin: 0 1rem 0 0;
  1258. padding: 0 1rem 0.25rem 0;
  1259. }
  1260. .content pre {
  1261. overflow: auto;
  1262. }
  1263. .subtitle > div {
  1264. display: inline;
  1265. }
  1266. .subtitle > div:not(:first-of-type)::before {
  1267. content: ' · ';
  1268. }
  1269. /*=== Notification and actualize notification */
  1270. .notification {
  1271. padding: 1rem 1rem 1rem 3.5rem;
  1272. position: absolute;
  1273. top: 1rem;
  1274. right: 25%; left: 25%;
  1275. z-index: 9999;
  1276. background-color: var(--frss-background-color);
  1277. font-weight: bold;
  1278. font-size: 0.9rem;
  1279. border: 1px solid var(--frss-border-color);
  1280. opacity: 1;
  1281. text-align: center;
  1282. line-height: 2;
  1283. vertical-align: middle;
  1284. visibility: visible;
  1285. transition: visibility 0s, opacity .3s linear;
  1286. }
  1287. .notification.closed {
  1288. opacity: 0;
  1289. visibility: hidden;
  1290. }
  1291. .notification a.close {
  1292. padding: 0 1rem;
  1293. position: absolute;
  1294. top: 0; bottom: 0;
  1295. left: 0;
  1296. display: inline-block;
  1297. line-height: 3;
  1298. }
  1299. .notification a.close:hover {
  1300. background-color: var(--frss-darken-background-hover-transparent);
  1301. }
  1302. .notification a.close:hover .icon {
  1303. filter: brightness(2);
  1304. }
  1305. #actualizeProgress {
  1306. position: fixed;
  1307. }
  1308. #actualizeProgress progress {
  1309. max-width: 100%;
  1310. vertical-align: middle;
  1311. }
  1312. #actualizeProgress .progress {
  1313. vertical-align: middle;
  1314. }
  1315. /*=== Popup */
  1316. #popup {
  1317. display: none;
  1318. position: fixed;
  1319. z-index: 200;
  1320. right: 0;
  1321. top: 0;
  1322. width: 100%;
  1323. height: 100%;
  1324. overflow: auto;
  1325. background-color: var(--frss-modal-background-color-transparent);
  1326. }
  1327. #popup-content {
  1328. margin: 5rem auto;
  1329. display: table;
  1330. width: 80%;
  1331. height: 80%;
  1332. overflow: hidden;
  1333. background-color: var(--frss-background-color);
  1334. border-radius: .25rem;
  1335. box-shadow: -3px 3px 5px var(--frss-box-shadow-color-transparent);
  1336. }
  1337. .popup-row {
  1338. display: table-row;
  1339. width: 100%;
  1340. }
  1341. #popup-close {
  1342. float: left;
  1343. width: 27px;
  1344. height: 22px;
  1345. padding-top: 5px;
  1346. }
  1347. #popup-close:hover,
  1348. #popup-close:focus {
  1349. color: var(--frss-font-color-dark);
  1350. text-decoration: none;
  1351. cursor: pointer;
  1352. }
  1353. #popup-iframe-container {
  1354. display: none;
  1355. height: 100%;
  1356. }
  1357. #popup-iframe-sub {
  1358. padding: 10px;
  1359. height: 100%;
  1360. }
  1361. #popup-iframe {
  1362. width: 100%;
  1363. height: 100%;
  1364. }
  1365. /*=== Navigation menu (for articles) */
  1366. #nav_entries {
  1367. display: table;
  1368. position: fixed;
  1369. bottom: 0; right: 0;
  1370. width: 300px;
  1371. table-layout: fixed;
  1372. padding-bottom: env(safe-area-inset-bottom);
  1373. }
  1374. #nav_entries .item {
  1375. display: table-cell;
  1376. width: 30%;
  1377. }
  1378. #nav_entries a {
  1379. display: block;
  1380. }
  1381. /*=== "Load" parts */
  1382. #first_load {
  1383. margin: 130px auto -170px auto;
  1384. height: 40px;
  1385. }
  1386. #load_more {
  1387. min-height: 40px;
  1388. }
  1389. #load_more.loading,
  1390. #load_more.loading:hover {
  1391. padding: 10px 20px;
  1392. background: var(--frss-loading-image) center center no-repeat var(--frss-background-color);
  1393. font-size: 0;
  1394. }
  1395. .loading {
  1396. background: var(--frss-loading-image) center center no-repeat;
  1397. font-size: 0;
  1398. }
  1399. #bigMarkAsRead {
  1400. margin: 0 0 100% 0;
  1401. margin: 0 0 100vh 0;
  1402. padding: 1em 0 50px 0;
  1403. display: block;
  1404. width: 100%;
  1405. text-align: center;
  1406. font-size: 1.25rem;
  1407. }
  1408. .bigTick {
  1409. font-size: 4rem;
  1410. }
  1411. /*=== Statistiques */
  1412. .stat-grid {
  1413. display: grid;
  1414. grid-template-columns: 1fr 1fr;
  1415. grid-gap: 20px;
  1416. }
  1417. .stat {
  1418. grid-column: 1 / span 2;
  1419. }
  1420. .stat.half {
  1421. grid-column: auto;
  1422. }
  1423. .stat > table {
  1424. width: 100%;
  1425. }
  1426. .statGraph {
  1427. height: 300px;
  1428. }
  1429. /*=== GLOBAL VIEW */
  1430. /*================*/
  1431. #stream.global {
  1432. text-align: center;
  1433. }
  1434. #stream.global .box {
  1435. text-align: right;
  1436. }
  1437. #global #panel {
  1438. bottom: 99vh;
  1439. display: block;
  1440. transition: visibility .3s, bottom .3s;
  1441. visibility: hidden;
  1442. }
  1443. #global #panel.visible {
  1444. bottom: 2%;
  1445. visibility: visible;
  1446. }
  1447. /*=== Panel */
  1448. #overlay {
  1449. position: fixed;
  1450. top: 0; bottom: 0;
  1451. right: 0; left: 0;
  1452. background-color: var(--frss-modal-background-color-transparent);
  1453. opacity: 0;
  1454. transition: visibility .3s, opacity .3s;
  1455. visibility: hidden;
  1456. }
  1457. #overlay.visible {
  1458. opacity: 1;
  1459. visibility: visible;
  1460. }
  1461. #panel {
  1462. background-color: var(--frss-background-color);
  1463. display: none;
  1464. position: fixed;
  1465. top: 2%; bottom: 2%;
  1466. right: 3%; left: 3%;
  1467. overflow: auto;
  1468. }
  1469. #overlay .close {
  1470. position: fixed;
  1471. top: 0; bottom: 0;
  1472. right: 0; left: 0;
  1473. display: block;
  1474. }
  1475. /*=== Slider */
  1476. html.slider-active {
  1477. overflow: hidden;
  1478. }
  1479. #slider {
  1480. background-color: var(--frss-background-color);
  1481. width: 0;
  1482. position: fixed;
  1483. top: 0; bottom: 0;
  1484. left: 0;
  1485. overflow: auto;
  1486. z-index: 100;
  1487. }
  1488. #slider.active:target {
  1489. width: 750px;
  1490. box-shadow: 3px 3px 5px var(--frss-box-shadow-color-transparent);
  1491. }
  1492. #slider.sliding {
  1493. transition: width 200ms linear;
  1494. }
  1495. #close-slider {
  1496. position: fixed;
  1497. top: 0; bottom: 0;
  1498. right: 100%; left: 0;
  1499. cursor: pointer;
  1500. }
  1501. #slider.active:target + #close-slider {
  1502. background-color: var(--frss-modal-background-color-transparent);
  1503. font-size: 0;
  1504. right: 0;
  1505. z-index: 99;
  1506. }
  1507. #close-slider img {
  1508. display: none;
  1509. }
  1510. #slider.active:target + #close-slider img {
  1511. padding: 0.5rem;
  1512. display: inline-block;
  1513. position: absolute;
  1514. top: 0.5rem;
  1515. right: 0.5rem;
  1516. filter: grayscale(100%) brightness(2.5);
  1517. }
  1518. #slider-content .loader {
  1519. height: 90vh;
  1520. background-image: url('loader.gif');
  1521. background-repeat: no-repeat;
  1522. background-position: center;
  1523. }
  1524. /*=== Configuration pages */
  1525. .post {
  1526. padding: 1rem 2rem;
  1527. font-size: 0.9em;
  1528. }
  1529. .post form {
  1530. margin: 1rem 0;
  1531. }
  1532. .post.content.centered {
  1533. max-width: 550px;
  1534. }
  1535. /*=== SLIDESHOW Theme Preview */
  1536. /*==============*/
  1537. .theme-preview-list {
  1538. padding: 0;
  1539. display: block;
  1540. max-width: 640px;
  1541. height: 320px;
  1542. border: 1px solid var(--frss-border-color);
  1543. position: relative;
  1544. min-width: 260px;
  1545. margin-bottom: 30px;
  1546. }
  1547. .theme-preview-list input {
  1548. display: none;
  1549. }
  1550. .theme-preview-list .preview-container {
  1551. display: block;
  1552. }
  1553. .theme-preview-list .preview {
  1554. display: block;
  1555. width: 100%;
  1556. height: 100%;
  1557. top: 0;
  1558. opacity: 0;
  1559. position: absolute;
  1560. transform: scale(0);
  1561. transition: all .7s ease-in-out;
  1562. }
  1563. .theme-preview-list .preview img {
  1564. width: 100%;
  1565. height: 100%;
  1566. }
  1567. .theme-preview-list .nav label {
  1568. padding: 0;
  1569. display: none;
  1570. width: 65px;
  1571. height: 100%;
  1572. color: var(--frss-font-color-light);
  1573. font-family: "Varela Round", sans-serif;
  1574. font-size: 9rem;
  1575. position: absolute;
  1576. opacity: 0;
  1577. z-index: 9;
  1578. cursor: pointer;
  1579. transition: opacity .2s;
  1580. text-align: center;
  1581. line-height: 2;
  1582. background-color: var(--frss-background-color-transparent);
  1583. text-shadow: 0px 0px 15px rgb(119, 119, 119);
  1584. }
  1585. .theme-preview-list .properties {
  1586. padding: 5px;
  1587. background-color: var(--frss-background-color-transparent);
  1588. display: none;
  1589. border-top: 1px solid var(--frss-border-color);
  1590. bottom: 0;
  1591. right: 0; left: 0;
  1592. position: absolute;
  1593. z-index: 10;
  1594. backdrop-filter: blur(3px);
  1595. }
  1596. .theme-preview-list .properties .page-number {
  1597. left: 5px;
  1598. top: 0;
  1599. position: absolute;
  1600. }
  1601. .theme-preview-list .preview + .nav label {
  1602. opacity: 0.5;
  1603. }
  1604. .theme-preview-list .nav label:hover {
  1605. opacity: 1;
  1606. }
  1607. .theme-preview-list .nav .next {
  1608. left: 0;
  1609. }
  1610. .theme-preview-list input:checked + .preview-container .preview {
  1611. opacity: 1;
  1612. transform: scale(1);
  1613. transition: opacity 1s ease-in-out;
  1614. }
  1615. .theme-preview-list input:checked + .preview-container .nav label {
  1616. display: block;
  1617. }
  1618. .theme-preview-list input:checked + .preview-container .properties {
  1619. display: block;
  1620. }
  1621. /*=== DIVERS */
  1622. /*===========*/
  1623. .log-level {
  1624. text-align: center;
  1625. }
  1626. .log-item.log-error {
  1627. background-color: var(--frss-background-color-error-transparent);
  1628. }
  1629. .item.share.error a::after,
  1630. .category .title.error::before,
  1631. .item.feed.error .item-title::before,
  1632. .theme-preview-list .properties .error::before {
  1633. content: " ⚠ ";
  1634. color: var(--frss-font-color-error);
  1635. }
  1636. .item.share button {
  1637. position: relative;
  1638. }
  1639. .item.share button::after {
  1640. content: "";
  1641. background: var(--frss-background-color-transparent);
  1642. display: inline-block;
  1643. position: absolute;
  1644. padding-top: 1rem;
  1645. opacity: 0;
  1646. transition: all 0.6s;
  1647. right: 0px;
  1648. width: 100%;
  1649. height: 1rem;
  1650. }
  1651. .item.share button:active::after {
  1652. opacity: 1;
  1653. width: 0;
  1654. transition: 0s
  1655. }
  1656. .item.share button.ok::before {
  1657. content: "✓";
  1658. position: absolute;
  1659. right: 0.5rem;
  1660. animation-duration: 10s;
  1661. animation-fill-mode: both;
  1662. animation-name: easeOut;
  1663. }
  1664. .item.share button.error::before {
  1665. content: "❌";
  1666. position: absolute;
  1667. right: 0.25rem;
  1668. }
  1669. .item.share button.error {
  1670. text-decoration: line-through;
  1671. }
  1672. @keyframes easeOut {
  1673. 0% {opacity: 1;}
  1674. 80% {opacity: 1;}
  1675. 100% {opacity: 0;}
  1676. }
  1677. .deprecated {
  1678. font-weight: bold;
  1679. }
  1680. .feed.item.error.active .item-title::before {
  1681. color: var(--frss-font-color-light);
  1682. }
  1683. .feed[data-priority="20"] .item-title,
  1684. .flux[data-priority="20"] .website > a {
  1685. text-decoration: underline double;
  1686. }
  1687. .aside .category .title:not([data-unread="0"])::after,
  1688. .aside .feed .item-title:not([data-unread="0"])::after {
  1689. margin: calc(0.125rem + var(--frss-padding-top-bottom)) 0 0 0;
  1690. padding: 0.25rem 0.5rem;
  1691. min-width: 2rem;
  1692. display: block;
  1693. content: attr(data-unread);
  1694. position: absolute;
  1695. top: 0;
  1696. left: 0.75rem;
  1697. text-align: center;
  1698. font-size: 0.9rem;
  1699. border-radius: 0.75rem;
  1700. line-height: 1;
  1701. font-weight: initial;
  1702. }
  1703. .global .box.category .title:not([data-unread="0"])::after {
  1704. margin: 0.5rem 0 0 0;
  1705. padding: 5px 10px;
  1706. min-width: 20px;
  1707. display: block;
  1708. content: attr(data-unread);
  1709. position: absolute;
  1710. top: 0;
  1711. left: 10px;
  1712. text-align: center;
  1713. font-size: 0.75rem;
  1714. border-radius: 12px;
  1715. line-height: 1;
  1716. font-weight: initial;
  1717. }
  1718. .box .box-title .configure:not([data-cat-position=""])::after {
  1719. margin: 0.5rem 0px 0px;
  1720. padding: 5px 10px;
  1721. min-width: 20px;
  1722. display: block;
  1723. content: attr(data-cat-position);
  1724. position: absolute;
  1725. top: 0px;
  1726. left: 10px;
  1727. text-align: center;
  1728. font-size: 0.75rem;
  1729. border-radius: 12px;
  1730. line-height: 1;
  1731. font-weight: initial;
  1732. }
  1733. .feed .item-title:not([data-unread="0"])::after {
  1734. margin: 1em 0 0 0;
  1735. }
  1736. #stream.global .feed {
  1737. position: relative;
  1738. }
  1739. #stream.global .feed .item-title:not([data-unread="0"])::after {
  1740. margin: 0.5rem 0px 0px;
  1741. padding: 5px 10px;
  1742. min-width: 20px;
  1743. display: block;
  1744. content: attr(data-unread);
  1745. position: absolute;
  1746. top: 0px;
  1747. left: 0px;
  1748. text-align: center;
  1749. font-size: 0.75rem;
  1750. border-radius: 12px;
  1751. line-height: 1;
  1752. font-weight: initial;
  1753. }
  1754. .feed.active .item-title:not([data-unread="0"])::after {
  1755. color: var(--frss-font-color-light);
  1756. border: 1px solid var(--frss-border-color);
  1757. font-weight: bold;
  1758. }
  1759. .feed .item-title:not([data-unread="0"]) {
  1760. font-weight: bold;
  1761. width: calc(100% - 5.5rem);
  1762. }
  1763. .state_unread .category:not(.active)[data-unread="0"],
  1764. .state_unread .feed:not(.active)[data-unread="0"] {
  1765. display: none;
  1766. }
  1767. .nav_menu {
  1768. padding-top: var(--frss-padding-top-bottom);
  1769. padding-bottom: var(--frss-padding-top-bottom);
  1770. background: inherit;
  1771. text-align: center;
  1772. }
  1773. .nav_mobile {
  1774. display: none;
  1775. }
  1776. .nav-login,
  1777. .aside .toggle_aside,
  1778. #slider .toggle_aside,
  1779. .nav_menu .toggle_aside,
  1780. .configure .dropdown-header-close {
  1781. display: none;
  1782. }
  1783. .enclosure [download] {
  1784. font-size: 3rem;
  1785. margin-right: .8em;
  1786. }
  1787. .default-user {
  1788. font-style: italic;
  1789. }
  1790. /*=== READER */
  1791. /*===========*/
  1792. .reader .nav_menu .toggle_aside {
  1793. display: inline-block;
  1794. }
  1795. .reader .aside .toggle_aside {
  1796. display: block;
  1797. width: 100%;
  1798. }
  1799. .reader .aside {
  1800. display: none;
  1801. width: 0;
  1802. }
  1803. .reader .aside:target {
  1804. display: table-cell;
  1805. width: 300px;
  1806. }
  1807. .reader .aside .stick {
  1808. display: none;
  1809. }
  1810. .reader .flux {
  1811. padding: 1rem 0 2rem;
  1812. }
  1813. .reader .flux .content {
  1814. padding: 3rem 0;
  1815. background-color: var(--frss-background-color);
  1816. border: 1px solid var(--frss-border-color);
  1817. }
  1818. #loglist-wrapper {
  1819. overflow-x: auto;
  1820. }
  1821. /*=== MOBILE */
  1822. /*===========*/
  1823. @media (max-width: 840px) {
  1824. :root {
  1825. --frss-padding-flux-items: 0.5rem;
  1826. }
  1827. .flux_header .item.website span,
  1828. .item .date, .day .date,
  1829. .dropdown-menu > .no-mobile,
  1830. .no-mobile {
  1831. display: none;
  1832. }
  1833. .only-mobile {
  1834. display: unset !important;
  1835. }
  1836. .header > .item {
  1837. padding: 5px;
  1838. }
  1839. .header > .item.title {
  1840. width: 75%;
  1841. text-align: right;
  1842. }
  1843. .header > .item.title .logo {
  1844. height: 24px;
  1845. }
  1846. header .item.search form {
  1847. display: none;
  1848. }
  1849. .aside:target {
  1850. box-shadow: -3px 3px 5px var(--frss-box-shadow-color-transparent);
  1851. }
  1852. .aside .toggle_aside,
  1853. #overlay .close,
  1854. .dropdown-menu .toggle_aside,
  1855. #slider .toggle_aside {
  1856. padding: 1rem 0;
  1857. display: block;
  1858. width: 100%;
  1859. border-bottom: 1px solid var(--frss-border-color);
  1860. text-align: center;
  1861. }
  1862. .flux .flux_header .item .title:has(~.date) {
  1863. padding-left: 1rem;
  1864. }
  1865. #overlay .close {
  1866. position: relative;
  1867. }
  1868. .form-group {
  1869. margin-bottom: 10px;
  1870. }
  1871. .form-group .group-name {
  1872. float: none;
  1873. width: auto;
  1874. text-align: right;
  1875. }
  1876. .form-group .group-controls {
  1877. margin-right: 0;
  1878. }
  1879. .dropdown {
  1880. position: inherit;
  1881. }
  1882. .dropdown .dropdown-header,
  1883. .dropdown .dropdown-section {
  1884. line-height: 2;
  1885. }
  1886. .dropdown .dropdown-menu {
  1887. width: 94%;
  1888. border-radius: 0;
  1889. right: 3%;
  1890. left: 3%;
  1891. position: absolute;
  1892. }
  1893. .dropdown .dropdown-menu .item {
  1894. margin: 2px 0;
  1895. }
  1896. .dropdown .dropdown-menu .item .stick .btn {
  1897. margin: 0;
  1898. }
  1899. .dropdown .dropdown-menu .item form {
  1900. display: block;
  1901. text-align: center;
  1902. }
  1903. .dropdown .dropdown-menu .item .stick.search {
  1904. width: calc(100% - 20px);
  1905. }
  1906. .dropdown .dropdown-menu .item .stick.search input {
  1907. width: 95%;
  1908. }
  1909. .dropdown .dropdown-menu .item button.as-link,
  1910. .dropdown .dropdown-menu .item button.as-link:hover, button.as-link:active {
  1911. width: 100%;
  1912. }
  1913. .dropdown-target:target ~ .dropdown-toggle {
  1914. position: relative;
  1915. overflow: visible;
  1916. }
  1917. .dropdown-target:target ~ .dropdown-toggle::after {
  1918. background-color: var(--frss-background-color);
  1919. width: 10px;
  1920. height: 10px;
  1921. content: "";
  1922. position: absolute;
  1923. left: 8px;
  1924. bottom: -17px;
  1925. transform: rotate(-45deg);
  1926. z-index: 9999;
  1927. cursor: default;
  1928. }
  1929. .dropdown-target:target ~ .dropdown-toggle:not(.btn) ~ .dropdown-menu {
  1930. margin-top: 10px;
  1931. }
  1932. .configure .dropdown .dropdown-menu {
  1933. width: 90%;
  1934. height: 100vh;
  1935. top: 0;
  1936. left: 0;
  1937. bottom: 0;
  1938. right: auto;
  1939. position: fixed;
  1940. padding-top: 0;
  1941. margin-top: 0;
  1942. overflow: auto;
  1943. box-shadow: 3px 0 3px var(--frss-box-shadow-color-transparent);
  1944. }
  1945. .configure .dropdown-target:target ~ .dropdown-toggle::after {
  1946. content: none;
  1947. }
  1948. .dropdown-target:target ~ .dropdown-menu {
  1949. display: table-cell;
  1950. z-index: 1000;
  1951. }
  1952. .dropdown-menu::after {
  1953. display: none;
  1954. }
  1955. .configure .dropdown-header-close,
  1956. .nav-login {
  1957. display: block;
  1958. }
  1959. .nav_menu .toggle_aside {
  1960. display: inline-block;
  1961. }
  1962. .aside:target + .close-aside,
  1963. .configure .dropdown-target:target ~ .dropdown-close {
  1964. background-color: var(--frss-modal-background-color-transparent);
  1965. display: block;
  1966. font-size: 0;
  1967. position: fixed;
  1968. top: 0;
  1969. bottom: 0;
  1970. right: 0;
  1971. left: 0;
  1972. cursor: default;
  1973. z-index: 99;
  1974. }
  1975. .nav_mobile {
  1976. display: block;
  1977. }
  1978. .aside {
  1979. position: fixed;
  1980. top: 0; bottom: 0;
  1981. right: -1px;
  1982. width: 0;
  1983. overflow: hidden;
  1984. z-index: 100;
  1985. }
  1986. .aside:target,
  1987. .reader .aside:target {
  1988. width: 90%;
  1989. height: 100vh;
  1990. }
  1991. .aside_feed .configure-feeds {
  1992. margin-top: 10px;
  1993. }
  1994. .aside_feed .tree-folder-items .feed .favicon {
  1995. margin: 0 0 0 0.5rem;
  1996. padding: 0;
  1997. }
  1998. .flux_header .item.website {
  1999. width: 40px;
  2000. }
  2001. .flux:not(.current):hover .item.title {
  2002. position: relative;
  2003. width: auto;
  2004. white-space: nowrap;
  2005. top: 0;
  2006. }
  2007. .content header,
  2008. .content .text,
  2009. .content footer {
  2010. padding: 1rem;
  2011. }
  2012. table {
  2013. font-size: 0.9rem;
  2014. }
  2015. th, td {
  2016. padding: 0.25rem;
  2017. }
  2018. .notification {
  2019. padding: 0.75rem;
  2020. top: 0;
  2021. right: 0;
  2022. left: 0;
  2023. }
  2024. #nav_entries {
  2025. width: 100%;
  2026. }
  2027. #panel {
  2028. top: 0; bottom: 0;
  2029. right: 0; left: 0;
  2030. position: relative;
  2031. height: calc(100vh - 3.5rem);
  2032. }
  2033. #slider.active:target {
  2034. width: 100%;
  2035. }
  2036. #close-slider img {
  2037. display: initial;
  2038. }
  2039. #slider.active:target #close-slider img {
  2040. display: initial;
  2041. position: initial;
  2042. filter: initial;
  2043. }
  2044. #slider.active:target + #close-slider {
  2045. display: none;
  2046. }
  2047. .stat.half {
  2048. grid-column: 1 / span 2;
  2049. }
  2050. }
  2051. /*=== PRINTER */
  2052. /*============*/
  2053. @media print {
  2054. .header, .aside,
  2055. .nav_menu, .day,
  2056. .flux_header,
  2057. .flux_content .bottom,
  2058. .pagination,
  2059. #stream-footer,
  2060. #nav_entries {
  2061. display: none;
  2062. }
  2063. html, body {
  2064. background-color: var(--frss-background-color);
  2065. font-family: Serif;
  2066. }
  2067. #global,
  2068. .flux_content {
  2069. display: block !important;
  2070. }
  2071. .flux_content .content {
  2072. width: 100% !important;
  2073. }
  2074. .flux_content .content a {
  2075. color: var(--frss-font-color-dark);
  2076. }
  2077. .flux_content .content a::after {
  2078. content: " [" attr(href) "] ";
  2079. font-style: italic;
  2080. }
  2081. }
  2082. /*=== PREVIEW */
  2083. /*===========*/
  2084. .preview_controls {
  2085. margin-right: auto;
  2086. margin-left: auto;
  2087. padding: 1rem;
  2088. max-width: 1000px;
  2089. text-align: center;
  2090. background-color: var(--frss-background-color-middle);
  2091. border: 1px solid var(--frss-border-color);
  2092. border-radius: .25rem;
  2093. }
  2094. .preview_controls label {
  2095. display: inline;
  2096. }
  2097. .preview_controls label input[type="radio"] {
  2098. margin-top: -4px;
  2099. }
  2100. .preview_controls label + label {
  2101. margin-right: 1rem;
  2102. }
  2103. .drag-drop-marker {
  2104. margin: -1px;
  2105. }