template.rtl.css 28 KB

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