frss.css 47 KB

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