template.css 30 KB

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