template.rtl.css 29 KB

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