adark.css 16 KB

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