frss.css 47 KB

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