flat.rtl.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. html, body {
  5. background: #fafafa;
  6. color: black;
  7. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", sans-serif;
  8. }
  9. /*=== Links */
  10. a, button.as-link {
  11. color: #2980b9;
  12. outline: none;
  13. }
  14. /*=== Forms */
  15. legend {
  16. margin: 20px 0 5px;
  17. padding: 5px 20px;
  18. background: #ecf0f1;
  19. display: inline-block;
  20. width: auto;
  21. font-size: 1.4em;
  22. border-radius: 20px;
  23. clear: both;
  24. }
  25. label {
  26. min-height: 25px;
  27. padding: 5px 0;
  28. cursor: pointer;
  29. color: #444;
  30. }
  31. input, select, textarea {
  32. padding: 5px;
  33. background: #fff;
  34. color: #666;
  35. border: none;
  36. border-bottom: 3px solid #ddd;
  37. border-right-color: #ddd;
  38. border-radius: 5px;
  39. min-height: 25px;
  40. line-height: 1;
  41. }
  42. option {
  43. padding: 0 .5em;
  44. }
  45. input:focus, select:focus, textarea:focus {
  46. color: #333;
  47. border-color: #2980b9;
  48. }
  49. input:invalid, select:invalid {
  50. color: #f00;
  51. border-color: #f00;
  52. box-shadow: none;
  53. }
  54. input:disabled, select:disabled {
  55. background: #eee;
  56. }
  57. /*=== Tables */
  58. table {
  59. border-collapse: collapse;
  60. }
  61. th, td {
  62. border: 1px solid #ddd;
  63. }
  64. th {
  65. background: #f6f6f6;
  66. }
  67. .config-articleicons td,
  68. .config-articleicons th {
  69. font-weight: normal;
  70. text-align: center;
  71. }
  72. /*=== COMPONENTS */
  73. /*===============*/
  74. /*=== Forms */
  75. .form-group {
  76. padding: 5px;
  77. border: 1px solid transparent;
  78. border-radius: 3px;
  79. }
  80. .form-group::after {
  81. display: block;
  82. clear: both;
  83. }
  84. .form-group:hover {
  85. background: #fff;
  86. border: 1px solid #eee;
  87. border-radius: 3px;
  88. }
  89. .form-group.form-actions {
  90. margin: 15px 0 25px;
  91. padding: 5px 0;
  92. background-color: #e6ecedaa;
  93. border-top: 3px solid #bdc3c7;
  94. border-radius: 5px 5px 0 0;
  95. }
  96. .form-group.form-actions .btn {
  97. margin: 0 10px;
  98. }
  99. .form-group .group-name {
  100. padding: 10px 0;
  101. }
  102. .form-group .group-controls {
  103. min-height: 25px;
  104. padding: 5px 0;
  105. }
  106. .form-group .group-controls .control {
  107. line-height: 2.0em;
  108. }
  109. /*=== Buttons */
  110. .stick input,
  111. .stick .btn,
  112. .group .btn {
  113. border-radius: 0;
  114. }
  115. .stick .btn:first-child,
  116. .group .btn:first-child,
  117. .stick input:first-child {
  118. border-radius: 0 5px 5px 0;
  119. }
  120. .stick .btn:last-child,
  121. .group .btn:last-child,
  122. .stick input:last-child,
  123. .stick .dropdown:last-child > .btn,
  124. .group .dropdown:last-child > .btn {
  125. border-radius: 5px 0 0 5px;
  126. }
  127. .group > .btn:only-child,
  128. .group > .dropdown:only-child > .btn {
  129. border-radius: 5px;
  130. }
  131. .stick .btn + .btn,
  132. .group .btn + .btn,
  133. .stick .btn + input,
  134. .stick .btn + .dropdown > .btn,
  135. .group .btn + .dropdown > .btn,
  136. .stick input + .btn,
  137. .stick input + input,
  138. .stick input + .dropdown > .btn,
  139. .stick .dropdown + .btn,
  140. .group .dropdown + .btn,
  141. .stick .dropdown + input,
  142. .stick .dropdown + .dropdown > .btn,
  143. .group .dropdown + .dropdown > .btn {
  144. border-right-width: 1px;
  145. border-right-style: solid;
  146. }
  147. .btn {
  148. margin: 0;
  149. padding: 0.25rem 0.5rem;
  150. background: #3498db;
  151. color: #fff;
  152. font-size: 0.9rem;
  153. border: none;
  154. border-bottom: 3px solid #2980b9;
  155. border-right-color: #2980b9;
  156. border-radius: 5px;
  157. min-height: 25px;
  158. min-width: 15px;
  159. line-height: 25px;
  160. vertical-align: middle;
  161. }
  162. .btn:hover {
  163. text-decoration: none;
  164. }
  165. .btn.active,
  166. .btn:active,
  167. .btn:hover,
  168. .dropdown-target:target ~ .btn.dropdown-toggle {
  169. background: #2980b9;
  170. }
  171. .btn .icon {
  172. filter: brightness(5);
  173. }
  174. #toggle-unread .icon,
  175. #toggle-starred .icon {
  176. filter: none;
  177. }
  178. .btn-important {
  179. font-weight: normal;
  180. background: #e67e22;
  181. color: #fff;
  182. border-bottom: 3px solid #d35400;
  183. border-right-color: #d35400;
  184. }
  185. .btn-important:hover,
  186. .btn-important:active {
  187. background: #d35400;
  188. }
  189. .btn-important .icon {
  190. filter: brightness(3);
  191. }
  192. .btn-attention {
  193. background: #e74c3c;
  194. color: #fff;
  195. border-bottom: 3px solid #c0392b;
  196. border-right-color: #c0392b;
  197. }
  198. .btn-attention:hover,
  199. .btn-attention:active {
  200. background: #c0392b;
  201. }
  202. .switch.active {
  203. background-color: #2980b9;
  204. }
  205. .switch.active:hover {
  206. background-image: url('./icons/disabled-light.svg');
  207. }
  208. /*=== Navigation */
  209. .nav-list {
  210. font-size: 0.9rem;
  211. }
  212. .nav-list .item,
  213. .nav-list .item.nav-header {
  214. min-height: 2.5em;
  215. line-height: 2.5;
  216. }
  217. .nav-list .item a:hover,
  218. .nav-list .item .as-link:hover,
  219. .nav-list .item.active {
  220. background: #2980b9;
  221. color: #fff;
  222. }
  223. .nav-list .item.active a,
  224. .nav-list .item.active .as-link {
  225. color: #fff;
  226. }
  227. .nav-list .item > a,
  228. .nav-list .item > .as-link {
  229. padding: 0 1rem;
  230. }
  231. .nav-list a:hover {
  232. text-decoration: none;
  233. }
  234. .nav-list .nav-header {
  235. padding: 0 1rem;
  236. font-weight: bold;
  237. background: #34495e;
  238. color: #fff;
  239. }
  240. .nav-list .nav-form {
  241. padding: 3px;
  242. text-align: center;
  243. }
  244. /*=== Dropdown */
  245. .dropdown-menu {
  246. margin: 0.5rem 0 0;
  247. padding: 0.5rem 0 0.25rem 0;
  248. background: #fafafa;
  249. font-size: 0.8rem;
  250. border: 1px solid #95a5a6;
  251. border-radius: 3px;
  252. text-align: right;
  253. }
  254. .dropdown-menu::after {
  255. border-color: #95a5a6;
  256. left: 12px;
  257. }
  258. .dropdown-header,
  259. .dropdown-section .dropdown-section-title {
  260. padding: 0 0.5rem 0.5rem;
  261. font-weight: bold;
  262. text-align: right;
  263. color: #34495e;
  264. }
  265. .dropdown-header a {
  266. position: absolute;
  267. left: 0.5rem;
  268. }
  269. .dropdown-menu .item > a,
  270. .dropdown-menu .item > span,
  271. .dropdown-menu .item > .as-link {
  272. padding: 0 22px;
  273. line-height: 2.5em;
  274. font-size: inherit;
  275. }
  276. .dropdown-menu .dropdown-section .item > a,
  277. .dropdown-menu .dropdown-section .item > span,
  278. .dropdown-menu .dropdown-section .item > .as-link {
  279. padding-right: 2rem;
  280. }
  281. .dropdown-menu .dropdown-section .item:last-child {
  282. margin-bottom: 0.5rem;
  283. }
  284. .dropdown-menu .item > a:focus,
  285. .dropdown-menu .item > a:hover,
  286. .dropdown-menu .item > button:focus:not([disabled]),
  287. .dropdown-menu .item > button:hover:not([disabled]),
  288. .dropdown-menu .item > label:focus:not(.noHover),
  289. .dropdown-menu .item > label:hover:not(.noHover) {
  290. background: #2980b9;
  291. color: #fff;
  292. }
  293. .dropdown-menu > .item a:hover .icon,
  294. .nav-list.aside .item a:hover .icon {
  295. filter: brightness(3);
  296. }
  297. .dropdown-menu > .item[aria-checked="true"] > a::before {
  298. font-weight: bold;
  299. margin: 0 -14px 0 0;
  300. }
  301. .dropdown-menu .input select,
  302. .dropdown-menu .input input {
  303. margin: 0 auto 5px;
  304. padding: 2px 5px;
  305. border-radius: 3px;
  306. }
  307. .item ~ .dropdown-header,
  308. .dropdown-section ~ .dropdown-section,
  309. .item.separator {
  310. border-top-color: #ddd;
  311. }
  312. /*=== Alerts */
  313. .alert {
  314. background: #f4f4f4;
  315. color: #aaa;
  316. font-size: 0.9em;
  317. border: 1px solid #ccc;
  318. border-left: 1px solid #aaa;
  319. border-bottom: 1px solid #aaa;
  320. border-radius: 5px;
  321. text-shadow: 0 0 1px #eee;
  322. }
  323. .alert-head {
  324. font-size: 1.15em;
  325. }
  326. .alert > a {
  327. text-decoration: underline;
  328. color: inherit;
  329. }
  330. .alert-warn {
  331. background: #ffe;
  332. color: #c95;
  333. border: 1px solid #eeb;
  334. }
  335. .alert-success {
  336. background: #dfd;
  337. color: #484;
  338. border: 1px solid #cec;
  339. }
  340. .alert-error {
  341. background: #fdd;
  342. color: #844;
  343. border: 1px solid #ecc;
  344. }
  345. /*=== Pagination */
  346. .pagination {
  347. background: #ecf0f1;
  348. color: #000;
  349. }
  350. .pagination .item a {
  351. color: #000;
  352. }
  353. #load_more.loading,
  354. #load_more.loading:hover {
  355. background: url("loader.gif") center center no-repeat #34495e;
  356. }
  357. /*=== Boxes */
  358. .box {
  359. border: 1px solid #ddd;
  360. border-radius: 5px;
  361. }
  362. .box .box-title {
  363. background: #ecf0f1;
  364. color: #333;
  365. border-bottom: 1px solid #ddd;
  366. border-radius: 5px 5px 0 0;
  367. }
  368. .box .box-title .configure {
  369. margin-left: 4px;
  370. }
  371. .box .box-content {
  372. padding-right: 30px;
  373. max-height: 260px;
  374. }
  375. .box .box-content .item {
  376. font-size: 0.9rem;
  377. }
  378. .box .box-title .configure .icon,
  379. .box .box-content .item .configure .icon {
  380. vertical-align: middle;
  381. background-color: #95a5a6;
  382. border-radius: 3px;
  383. }
  384. /*=== Tree */
  385. .tree {
  386. margin: 10px 0;
  387. }
  388. .tree-folder-title {
  389. position: relative;
  390. padding: 0 10px;
  391. background: #34495e;
  392. line-height: 2.5rem;
  393. font-size: 1rem;
  394. }
  395. .tree-folder-title .title {
  396. background: inherit;
  397. color: #fff;
  398. }
  399. .tree-folder-title .title:hover {
  400. text-decoration: none;
  401. }
  402. .tree-folder.active .tree-folder-title {
  403. background: #2980b9;
  404. font-weight: bold;
  405. }
  406. .tree-folder-items {
  407. background: #2c3e50;
  408. }
  409. .tree-folder-items > .item {
  410. font-size: 0.8rem;
  411. }
  412. .tree-folder-items > .item.active {
  413. background: #2980b9;
  414. }
  415. .tree-folder-items > .item > a {
  416. text-decoration: none;
  417. color: #fff;
  418. }
  419. /*=== Scrollbar */
  420. @supports (scrollbar-width: thin) {
  421. #sidebar {
  422. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  423. }
  424. #sidebar:hover {
  425. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  426. }
  427. }
  428. @supports not (scrollbar-width: thin) {
  429. #sidebar::-webkit-scrollbar-thumb {
  430. background: rgba(255, 255, 255, 0.1);
  431. }
  432. #sidebar:hover::-webkit-scrollbar-thumb {
  433. background: rgba(255, 255, 255, 0.3);
  434. }
  435. }
  436. /*=== STRUCTURE */
  437. /*===============*/
  438. /*=== Header */
  439. .header {
  440. background: #ecf0f1;
  441. }
  442. .header > .item {
  443. vertical-align: middle;
  444. text-align: center;
  445. }
  446. .header > .item.title a:hover .logo {
  447. filter: brightness(1.5);
  448. }
  449. .header > .item.title h1 {
  450. margin: 0.5em 0;
  451. }
  452. .header > .item.title h1 a {
  453. text-decoration: none;
  454. }
  455. .header > .item.search input {
  456. width: 350px;
  457. }
  458. .aside {
  459. background: #ecf0f1;
  460. }
  461. .aside.aside_feed {
  462. padding: 10px 0;
  463. text-align: center;
  464. background: #34495e;
  465. border-radius: 10px 0 0 0;
  466. }
  467. .aside.aside_feed .tree {
  468. margin: 10px 0 50px;
  469. }
  470. .aside.aside_feed .icon {
  471. filter: brightness(3);
  472. }
  473. /*=== Aside main page (categories) */
  474. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  475. background-color: #2c3e50;
  476. }
  477. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  478. background-color: #34495e;
  479. }
  480. .aside .about {
  481. margin: 1rem;
  482. display: block;
  483. color: #ecf0f1;
  484. font-style: italic;
  485. }
  486. /*=== Aside main page (feeds) */
  487. .feed.item.empty.active {
  488. background: #f39c12;
  489. }
  490. .feed.item.error.active {
  491. background: #bd362f;
  492. }
  493. .feed.item.empty,
  494. .feed.item.empty > a {
  495. color: #e67e22;
  496. }
  497. .feed.item.error,
  498. .feed.item.error > a {
  499. color: #bd362f;
  500. }
  501. .feed.item.empty.active,
  502. .feed.item.error.active,
  503. .feed.item.empty.active > a,
  504. .feed.item.error.active > a {
  505. color: #fff;
  506. }
  507. .aside_feed .tree-folder-items .dropdown-menu::after {
  508. right: 2px;
  509. }
  510. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  511. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  512. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  513. border-radius: 3px;
  514. }
  515. /*=== Prompt (centered) */
  516. .prompt .form-group {
  517. margin-bottom: 1rem;
  518. }
  519. .prompt .form-group::after {
  520. display: none;
  521. }
  522. .prompt .form-group.form-group-actions {
  523. display: flex;
  524. margin-top: 2rem;
  525. align-items: center;
  526. justify-content: space-between;
  527. }
  528. .prompt .btn.btn-important {
  529. padding-right: 1.5rem;
  530. padding-left: 1.5rem;
  531. font-size: 1.1rem;
  532. }
  533. /*=== New article notification */
  534. #new-article {
  535. background: #3498db;
  536. font-size: 0.9em;
  537. text-align: center;
  538. }
  539. #new-article > a {
  540. line-height: 3em;
  541. font-weight: bold;
  542. color: #fff;
  543. }
  544. #new-article > a:hover {
  545. text-decoration: none;
  546. background: #2980b9;
  547. }
  548. /*=== Transition indication, e.g. day */
  549. .transition {
  550. padding: 0 10px;
  551. font-weight: bold;
  552. line-height: 3em;
  553. border-right: 2px solid #ecf0f1;
  554. }
  555. .transition .name {
  556. padding: 0 0 0 10px;
  557. color: #aab;
  558. font-size: 1.8em;
  559. opacity: 0.3;
  560. font-style: italic;
  561. text-align: left;
  562. }
  563. /*=== Index menu */
  564. .nav_menu {
  565. text-align: center;
  566. padding: 5px 0;
  567. }
  568. .nav_menu #nav_menu_toggle_aside {
  569. position: static;
  570. }
  571. .nav_menu .btn {
  572. margin: 5px 10px;
  573. }
  574. .nav_menu .stick,
  575. .nav_menu .group {
  576. margin: 0 10px;
  577. }
  578. .nav_menu .stick .btn,
  579. .nav_menu .group .btn {
  580. margin: 5px 0;
  581. }
  582. .dropdown-menu .dropdown-header .icon {
  583. filter: invert(0.6);
  584. }
  585. .dropdown-menu .dropdown-header a:hover .icon {
  586. filter: invert(0.6) invert(77%) sepia(63%) saturate(4993%) hue-rotate(177deg) brightness(88%) contrast(96%);
  587. }
  588. /*=== Feed articles */
  589. .flux {
  590. border-right: 2px solid #ecf0f1;
  591. }
  592. .flux:not(.current):hover .flux_header .title,
  593. .flux .flux_header:hover {
  594. background: #fff;
  595. }
  596. .flux.current {
  597. background: #fff;
  598. border-right-color: #3498db;
  599. }
  600. .flux.not_read {
  601. border-right-color: #ff5300;
  602. }
  603. .flux.not_read:not(.current) {
  604. background: #fff3ed;
  605. }
  606. .flux.favorite {
  607. border-right-color: #ffc300;
  608. }
  609. .flux.favorite:not(.current) {
  610. background: #fff6da;
  611. }
  612. .flux_header {
  613. font-size: 0.8rem;
  614. cursor: pointer;
  615. border-top: 1px solid #ecf0f1;
  616. }
  617. .flux_header .title {
  618. font-size: 0.9rem;
  619. }
  620. .flux .flux_header .date,
  621. .flux .flux_content .bottom .date {
  622. color: #666;
  623. }
  624. .flux .bottom {
  625. font-size: 0.8rem;
  626. text-align: center;
  627. }
  628. /* stylelint-disable-next-line no-duplicate-selectors */
  629. .flux.current {
  630. border-right-width: 5px;
  631. border-right-style: double;
  632. }
  633. .flux.current > .flux_header {
  634. background: linear-gradient(to left, transparent 0, transparent 3px, #fff 3px);
  635. margin-right: -3px; /* Compensate increased border-left-width */
  636. }
  637. /*=== Content of feed articles */
  638. .content {
  639. padding: 20px 10px;
  640. }
  641. .content > h1.title > a {
  642. color: #000;
  643. }
  644. .content hr {
  645. margin: 30px 10px;
  646. background: #ddd;
  647. height: 1px;
  648. border: 0;
  649. box-shadow: 0 2px 5px #ccc;
  650. }
  651. .content pre {
  652. background: #222;
  653. color: #fff;
  654. border-radius: 3px;
  655. }
  656. .content code {
  657. background: #fafafa;
  658. color: #d14;
  659. border-color: #eee;
  660. border-radius: 3px;
  661. }
  662. .content pre code {
  663. background: transparent;
  664. color: #fff;
  665. border: none;
  666. }
  667. .content blockquote {
  668. margin: 0;
  669. padding: 5px 20px;
  670. background: #fafafa;
  671. display: block;
  672. color: #333;
  673. border-top: 1px solid #ddd;
  674. border-bottom: 1px solid #ddd;
  675. }
  676. .content blockquote p {
  677. margin: 0;
  678. }
  679. /*=== Notification and actualize notification */
  680. .notification {
  681. background: #ddd;
  682. color: #666;
  683. font-size: 0.9em;
  684. border: none;
  685. border-radius: 3px;
  686. text-align: center;
  687. font-weight: bold;
  688. vertical-align: middle;
  689. }
  690. .notification.good {
  691. background: #1abc9c;
  692. color: #fff;
  693. }
  694. .notification.bad {
  695. background: #e74c3c;
  696. color: #fff;
  697. }
  698. .notification a {
  699. color: #000;
  700. }
  701. .notification .close {
  702. border-radius: 3px 0 0 3px;
  703. }
  704. .notification.good .close:hover {
  705. background: #16a085;
  706. }
  707. .notification .close .icon {
  708. filter: brightness(2.5);
  709. }
  710. .notification.bad .close:hover {
  711. background: #c0392b;
  712. }
  713. .notification .close:hover .icon {
  714. filter: brightness(4);
  715. }
  716. /*=== "Load more" part */
  717. #bigMarkAsRead.big {
  718. text-align: center;
  719. text-decoration: none;
  720. background: #ecf0f1;
  721. }
  722. #bigMarkAsRead:hover {
  723. background: #34495e;
  724. color: #fff;
  725. }
  726. /*=== Navigation menu (for articles) */
  727. #nav_entries {
  728. background: #34495e;
  729. }
  730. /*=== READER VIEW */
  731. /*================*/
  732. #stream.reader .flux {
  733. background: #fafafa;
  734. color: #34495e;
  735. border: none;
  736. }
  737. #stream.reader .flux .flux_content {
  738. background-color: #fff;
  739. border-color: #ecf0f1;
  740. }
  741. #stream.reader .flux .author {
  742. color: #999;
  743. }
  744. /*=== GLOBAL VIEW */
  745. /*================*/
  746. .box.category .box-title .title {
  747. font-weight: normal;
  748. text-decoration: none;
  749. text-align: right;
  750. }
  751. .box.category:not([data-unread="0"]) .box-title {
  752. background: #3498db;
  753. }
  754. .box.category:not([data-unread="0"]) .box-title:active {
  755. background: #2980b9;
  756. }
  757. .box.category:not([data-unread="0"]) .box-title .title {
  758. font-weight: bold;
  759. color: #fff;
  760. }
  761. .box.category .title:not([data-unread="0"])::after {
  762. background: none;
  763. border: 0;
  764. position: absolute;
  765. top: 5px; left: 10px;
  766. font-weight: bold;
  767. box-shadow: none;
  768. text-shadow: none;
  769. }
  770. /*=== DIVERS */
  771. /*===========*/
  772. .aside.aside_feed .nav-form input,
  773. .aside.aside_feed .nav-form select {
  774. width: 140px;
  775. }
  776. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  777. left: -20px;
  778. }
  779. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  780. left: 33px;
  781. }
  782. /*=== STATISTICS */
  783. /*===============*/
  784. .stat {
  785. margin: 10px 0 20px;
  786. }
  787. .stat th,
  788. .stat td,
  789. .stat tr {
  790. border: none;
  791. }
  792. .stat > table td,
  793. .stat > table th {
  794. border-bottom: 1px solid #ddd;
  795. }
  796. /*=== MOBILE */
  797. /*===========*/
  798. @media (max-width: 840px) {
  799. .form-group .group-name {
  800. padding-bottom: 0;
  801. }
  802. .aside .toggle_aside,
  803. #overlay .close,
  804. .dropdown-menu .toggle_aside {
  805. background: #2c3e50;
  806. }
  807. .nav_menu .btn {
  808. padding: 3px 5px;
  809. min-height: 0;
  810. }
  811. .nav_menu .stick #mark-read-menu .dropdown-toggle.btn {
  812. border-right-width: 0;
  813. border-top-right-radius: 5px;
  814. border-bottom-right-radius: 5px;
  815. }
  816. .nav_menu .search {
  817. display: inline-block;
  818. max-width: 97%;
  819. }
  820. .nav_menu .search input {
  821. padding: 3px 5px;
  822. max-width: 97%;
  823. width: 90px;
  824. }
  825. .nav_menu .search input:focus {
  826. width: 400px;
  827. }
  828. .dropdown-target:target ~ .dropdown-toggle::after {
  829. background-color: #fafafa;
  830. border-top: 1px solid #95a5a6;
  831. border-right: 1px solid #95a5a6;
  832. }
  833. .dropdown-target:target ~ .btn.dropdown-toggle::after {
  834. bottom: -19px;
  835. }
  836. .transition .name {
  837. font-size: 1.1rem;
  838. }
  839. .notification {
  840. border-radius: 0;
  841. }
  842. .notification .close {
  843. background: transparent;
  844. display: block;
  845. right: 0;
  846. }
  847. .notification .close:hover {
  848. opacity: 0.5;
  849. }
  850. .notification .close .icon {
  851. display: none;
  852. }
  853. .post {
  854. padding-right: 15px;
  855. padding-left: 15px;
  856. }
  857. #close-slider.active {
  858. background: #2c3e50;
  859. }
  860. }