frss.rtl.css 48 KB

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