adark.rtl.css 16 KB

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