frss.rtl.css 46 KB

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