dark.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. /*
  2. Theme Name: Dark
  3. Author: Kristan Kenney (@kristankenney)
  4. Website: www.hestiacp.com
  5. */
  6. @import url("../media_queries");
  7. :root {
  8. --color-text: #cdcdcd;
  9. --color-text-link: #4fabe9;
  10. --color-text-link-hover: #ff3478;
  11. --color-background: #282828;
  12. --alert-border-color: #212121;
  13. /* Alerts */
  14. --alert-danger-color: #d13535;
  15. /* Icons */
  16. --icon-color-purple: #c364ff;
  17. --icon-color-maroon: #ff3478;
  18. --icon-color-green: #37cf39;
  19. --icon-color-blue: #0092f4;
  20. }
  21. b,
  22. strong {
  23. color: #cacaca;
  24. }
  25. /* Top bar
  26. ========================================================================== */
  27. .top-bar {
  28. background: #454545;
  29. border-bottom: 1px solid #505050;
  30. box-shadow: 0 8px 15px rgb(0 0 0 / 25%);
  31. }
  32. .top-bar-usage-inner {
  33. color: #909090;
  34. }
  35. .top-bar-notifications-list {
  36. background-color: rgb(50 50 50 / 99%);
  37. border: 1px solid #404040;
  38. }
  39. .top-bar-notification-item {
  40. text-shadow: 0 1px rgb(0 0 0 / 50%);
  41. color: #dadada;
  42. border-bottom: 1px solid #282828;
  43. &.empty {
  44. & .fas {
  45. color: #dadada;
  46. }
  47. }
  48. &.unseen .top-bar-notification-title {
  49. color: #fff;
  50. }
  51. }
  52. .top-bar-notification-delete {
  53. & .fas {
  54. color: #ff3478;
  55. }
  56. }
  57. .top-bar-menu-list {
  58. background-color: #454545;
  59. }
  60. .top-bar-menu-link {
  61. &:hover {
  62. color: #dadada;
  63. text-shadow: 1px 1px rgb(0 0 0 / 50%);
  64. background: linear-gradient(
  65. to bottom,
  66. rgb(15 15 15 / 60%) 0%,
  67. rgb(45 45 45 / 75%) 30%,
  68. rgb(60 60 60 / 100%) 95%
  69. );
  70. box-shadow: none;
  71. }
  72. &:active {
  73. background: linear-gradient(
  74. to bottom,
  75. rgb(15 15 15 / 70%) 0%,
  76. rgb(45 45 45 / 85%) 30%,
  77. rgb(50 50 50 / 100%) 95%
  78. );
  79. color: #fff;
  80. text-shadow: 0 -1px 1px rgb(0 0 0 / 50%);
  81. }
  82. &.active {
  83. color: #dadada;
  84. background: linear-gradient(
  85. to bottom,
  86. rgb(15 15 15 / 60%) 0%,
  87. rgb(45 45 45 / 75%) 30%,
  88. rgb(60 60 60 / 100%) 95%
  89. );
  90. text-shadow: 0 1px rgb(0 0 0 / 50%);
  91. border-left-color: #353535;
  92. border-right-color: #353535;
  93. }
  94. }
  95. .top-bar-menu-link-logout {
  96. color: #e7e7e7;
  97. }
  98. /* Main menu
  99. ========================================================================== */
  100. .main-menu-toggle {
  101. &:hover {
  102. & .main-menu-toggle-label {
  103. color: #d7d7d7;
  104. }
  105. }
  106. & .fas {
  107. color: #d7d7d7;
  108. }
  109. }
  110. .main-menu-toggle-label {
  111. color: #bcbcbc;
  112. }
  113. .main-menu-list {
  114. border-top-color: #454545;
  115. }
  116. .main-menu-item-link {
  117. &:hover {
  118. & .main-menu-item-label {
  119. color: #d7d7d7;
  120. }
  121. }
  122. &.active {
  123. & .main-menu-item-label {
  124. color: #c36;
  125. & .fas {
  126. color: #d7d7d7;
  127. }
  128. }
  129. }
  130. @media (--viewport-medium) {
  131. border-bottom-color: #282828;
  132. &:hover {
  133. border-bottom-color: #d7d7d7;
  134. }
  135. &.active {
  136. border-bottom-color: #c36;
  137. }
  138. }
  139. }
  140. .main-menu-item-label {
  141. font-weight: 500;
  142. color: #bcbcbc;
  143. & .fas {
  144. color: #707070;
  145. }
  146. }
  147. /* Toolbar
  148. ========================================================================== */
  149. .toolbar {
  150. border-color: #454545;
  151. background-color: #282828;
  152. &.active {
  153. box-shadow: 0 4px 6px rgb(0 0 0 / 25%);
  154. }
  155. & .form-select {
  156. border-color: #454545;
  157. background-color: #212121;
  158. &:hover {
  159. background-color: #212121;
  160. }
  161. }
  162. & .form-control {
  163. border-color: #454545;
  164. background-color: #212121;
  165. &:hover {
  166. background-color: #212121;
  167. border-right-color: #0090ff;
  168. }
  169. &:focus {
  170. border-right-color: #0080df;
  171. }
  172. }
  173. }
  174. .toolbar-sorting-toggle {
  175. &:hover {
  176. color: #bcbcbc;
  177. & b {
  178. color: #bcbcbc;
  179. }
  180. }
  181. }
  182. .toolbar-sorting-menu {
  183. background-color: rgb(40 40 40 / 95%);
  184. box-shadow: 0 2px 16px 0 rgb(20 20 20 / 65%);
  185. border-color: rgb(90 90 90 / 100%);
  186. & li {
  187. border-bottom: 1px solid #454545;
  188. color: #dadada;
  189. }
  190. & span {
  191. &:hover {
  192. color: #fff;
  193. background: linear-gradient(
  194. to bottom,
  195. rgb(25 25 25 / 60%) 0%,
  196. rgb(55 55 55 / 75%) 30%,
  197. rgb(70 70 70 / 100%) 95%
  198. );
  199. text-shadow: 0 -1px 1px rgb(0 0 0 / 50%);
  200. box-shadow: inset 0 0 1px rgb(0 0 0 / 40%), inset -1px -1px 4px rgb(40 40 40 / 40%);
  201. }
  202. &:active,
  203. &:focus {
  204. background: linear-gradient(
  205. to bottom,
  206. rgb(35 35 35 / 60%) 0%,
  207. rgb(65 65 65 / 75%) 30%,
  208. rgb(80 80 80 / 100%) 95%
  209. );
  210. color: #fff;
  211. text-shadow: 0 -1px 1px rgb(0 0 0 / 50%);
  212. box-shadow: inset 0 0 1px rgb(0 0 0 / 40%), inset -1px -1px 4px rgb(40 40 40 / 40%);
  213. }
  214. &.active {
  215. background-color: #454545 !important;
  216. color: #fff;
  217. background: linear-gradient(
  218. to bottom,
  219. rgb(15 15 15 / 60%) 0%,
  220. rgb(45 45 45 / 75%) 30%,
  221. rgb(60 60 60 / 100%) 95%
  222. );
  223. text-shadow: 0 1px rgb(0 0 0 / 80%);
  224. }
  225. }
  226. }
  227. .toolbar-input-submit {
  228. border-color: #454545;
  229. background-color: #424242;
  230. text-shadow: 1px 1px rgb(0 0 0 / 90%);
  231. box-shadow: 0 1px 1px rgb(0 0 0 / 40%);
  232. color: #cacaca;
  233. &:hover {
  234. color: #09f;
  235. background-color: #454545;
  236. }
  237. &:active {
  238. color: #0074c2;
  239. text-shadow: 0 -1px rgb(255 255 255 / 20%);
  240. box-shadow: inset 1px 1px 0 rgb(0 0 0 / 20%);
  241. }
  242. }
  243. .toolbar-link {
  244. color: #dadada;
  245. &.selected {
  246. color: #ff3478;
  247. }
  248. &:hover {
  249. color: #ff3478;
  250. }
  251. }
  252. /* Cards
  253. ========================================================================== */
  254. .card {
  255. background-color: #454545;
  256. border-color: #606060;
  257. box-shadow: 0 1px 4px rgb(0 0 0 / 20%), inset 0 0 60px rgb(0 0 0 / 25%);
  258. }
  259. .card-content {
  260. color: #fafafa;
  261. text-shadow: 0 1px rgb(0 0 0 / 95%);
  262. }
  263. /* Server summary component
  264. ========================================================================== */
  265. .server-summary-icon {
  266. color: #707070;
  267. }
  268. .server-summary-title {
  269. color: #fafafa;
  270. }
  271. /* Panel component
  272. ========================================================================== */
  273. .panel {
  274. background-color: #454545;
  275. border-color: #606060;
  276. box-shadow: 0 1px 4px rgb(0 0 0 / 35%);
  277. }
  278. /* Collapse component
  279. ========================================================================== */
  280. .collapse-header {
  281. background: #454545;
  282. border-color: #505050;
  283. text-shadow: 0 1px rgb(0 0 0 / 40%);
  284. box-shadow: inset 0 0 2px rgb(0 0 0 / 50%), 0 2px 6px rgb(0 0 0 / 40%);
  285. color: #fff;
  286. }
  287. .table-header {
  288. background: #404040;
  289. border-left: 1px solid #212121;
  290. border-right: 1px solid #212121;
  291. border-bottom: 1px solid #212121;
  292. text-shadow: 0 1px rgb(0 0 0 / 95%);
  293. border-bottom-left-radius: 0;
  294. border-bottom-right-radius: 0;
  295. color: #dadada;
  296. box-shadow: inset 0 1px 1px rgb(0 0 0 / 30%);
  297. }
  298. .l-unit {
  299. color: #dadada;
  300. }
  301. .units .l-unit {
  302. background-color: #303030;
  303. border-bottom: 1px solid #282828;
  304. border-left: 1px solid #212121;
  305. border-right: 1px solid #212121;
  306. }
  307. .l-unit:hover,
  308. .units .l-unit:hover {
  309. box-shadow: 0 2px 10px rgb(20 20 20 / 20%);
  310. background-color: #353535;
  311. text-shadow: 0 1px rgb(0 0 0 / 50%);
  312. border-left: 1px solid #212121;
  313. border-right: 1px solid #212121;
  314. }
  315. .units .l-unit.l-unit--starred {
  316. border-left: 2px solid #ff3478;
  317. }
  318. .units.active .l-unit.focus {
  319. background-color: #353535;
  320. }
  321. .l-unit--suspended {
  322. background: #252525 !important;
  323. color: #606060 !important;
  324. text-shadow: 0 -1px rgb(0 0 0 / 40%) !important;
  325. box-shadow: inset 0 0 2px rgb(0 0 0 / 20%);
  326. }
  327. .l-unit--suspended a {
  328. color: #606060 !important;
  329. text-shadow: 0 -1px rgb(0 0 0 / 40%) !important;
  330. }
  331. .units .l-unit.l-unit--outdated {
  332. color: #d4d4d4;
  333. background-color: #981111;
  334. }
  335. .l-unit--outdated.selected {
  336. background: #b70000 !important;
  337. color: #fff !important;
  338. text-shadow: none !important;
  339. }
  340. .l-unit--outdated.selected b {
  341. color: #fff !important;
  342. }
  343. .l-unit--suspended .l-unit__name,
  344. .l-unit--suspended b,
  345. .l-unit--outdated .l-unit__name,
  346. .l-unit--outdated b {
  347. color: #606060;
  348. }
  349. .l-unit--outdated .l-unit__name {
  350. }
  351. .l-unit--outdated b {
  352. color: #d4d4d4;
  353. }
  354. .l-unit--suspended .l-percent {
  355. }
  356. .l-unit--suspended .l-percent__fill {
  357. }
  358. .l-unit--suspended.selected .l-unit__name,
  359. .l-unit--suspended.selected .l-unit__name span {
  360. color: #707070;
  361. }
  362. .l-unit--suspended.selected {
  363. background-color: #454545 !important;
  364. color: #707070 !important;
  365. }
  366. .l-unit__name {
  367. color: #dadada;
  368. }
  369. .l-unit__stat-col--left {
  370. & a,
  371. & a:visited {
  372. color: #fafafa;
  373. }
  374. & a:hover {
  375. color: #fff;
  376. }
  377. }
  378. /* Forms
  379. ========================================================================== */
  380. .form-title {
  381. color: #e8e8e8;
  382. }
  383. .form-label,
  384. .form-check label {
  385. color: #d4d4d4;
  386. }
  387. .form-control {
  388. background-color: #454545;
  389. border-color: #606060;
  390. color: #d4d4d4;
  391. box-shadow: 0 1px 4px rgb(0 0 0 / 35%);
  392. &:hover {
  393. border-color: #0090ff;
  394. background-color: #494949;
  395. }
  396. &:focus {
  397. background-color: #222;
  398. border-color: #0080df;
  399. color: #fff;
  400. box-shadow: 0 1px 6px rgb(0 52 91 / 75%);
  401. }
  402. &.list-editor:focus {
  403. background-color: #222;
  404. box-shadow: none;
  405. }
  406. }
  407. .form-select {
  408. background-color: #454545;
  409. border-color: #606060;
  410. color: #d4d4d4;
  411. text-shadow: 0 0 0 #d4d4d4;
  412. box-shadow: 0 1px 4px rgb(0 0 0 / 35%);
  413. &:hover {
  414. border-color: #0090ff;
  415. background-color: #494949;
  416. }
  417. &:focus {
  418. background-color: #222;
  419. border-color: #0080df;
  420. color: #fff;
  421. box-shadow: 0 1px 6px rgb(0 52 91 / 75%);
  422. }
  423. }
  424. .form-control:disabled,
  425. .form-select:disabled {
  426. background-color: #303030;
  427. text-shadow: 1px 1px rgb(0 0 0 / 30%);
  428. color: #acacac;
  429. border-color: #606060;
  430. &:hover {
  431. border-color: #606060;
  432. }
  433. }
  434. .form-link {
  435. color: #09f;
  436. &:hover {
  437. background-color: #3b9de8;
  438. }
  439. &:active {
  440. background-color: #54a6e5;
  441. }
  442. }
  443. .form-link-danger {
  444. &:hover {
  445. background-color: #ff3478;
  446. }
  447. &:active {
  448. background-color: #be1f54;
  449. }
  450. }
  451. .hint {
  452. color: #a2a2a2;
  453. }
  454. .section-title {
  455. color: #d4d4d4;
  456. border-bottom-color: #484848;
  457. }
  458. /* Buttons
  459. ========================================================================== */
  460. .button {
  461. color: #eee;
  462. text-shadow: 0 1px 1px rgb(0 0 0 / 35%);
  463. font-weight: 400;
  464. border-color: #707070;
  465. background: rgb(48 48 48);
  466. background: linear-gradient(
  467. 0deg,
  468. rgb(48 48 48 / 100%) 0%,
  469. rgb(53 53 53 / 100%) 35%,
  470. rgb(69 69 69 / 100%) 100%
  471. );
  472. box-shadow: 0 1px 4px rgb(0 0 0 / 20%), inset 0 0 1px rgb(20 20 20 / 100%),
  473. inset 0 0 3px rgb(0 0 0 / 50%);
  474. &:hover {
  475. color: #fff;
  476. text-shadow: 1px 1px rgb(0 0 0 / 25%);
  477. border-color: #0098ff;
  478. background: linear-gradient(
  479. 0deg,
  480. rgb(58 58 58 / 100%) 0%,
  481. rgb(68 68 68 / 100%) 35%,
  482. rgb(79 79 79 / 100%) 100%
  483. );
  484. background-color: #454545;
  485. box-shadow: 0 1px 3px rgb(0 0 0 / 35%), inset 0 0 1px rgb(0 0 0 / 100%),
  486. inset 0 0 3px rgb(0 0 0 / 65%);
  487. }
  488. &:active,
  489. &:focus {
  490. color: #d4d4d4;
  491. text-shadow: 0 -1px 1px rgb(0 0 0 / 55%);
  492. border-color: #0066b4;
  493. background: linear-gradient(
  494. 0deg,
  495. rgb(69 69 69 / 100%) 0%,
  496. rgb(53 53 53 / 100%) 35%,
  497. rgb(48 48 48 / 100%) 100%
  498. );
  499. box-shadow: 0 1px 3px rgb(0 0 0 / 30%), inset 0 0 1px rgb(0 0 0 / 100%),
  500. inset -1px -1px 4px rgb(30 30 30 / 40%);
  501. }
  502. }
  503. .button-secondary {
  504. border-color: #454545;
  505. background-color: #343434;
  506. background: linear-gradient(
  507. 0deg,
  508. rgb(48 48 48 / 100%) 0%,
  509. rgb(53 53 53 / 100%) 100%,
  510. rgb(69 69 69 / 100%) 100%
  511. );
  512. &:hover {
  513. background-color: #343434;
  514. background: linear-gradient(
  515. 0deg,
  516. rgb(48 48 48 / 100%) 0%,
  517. rgb(53 53 53 / 100%) 100%,
  518. rgb(69 69 69 / 100%) 100%
  519. );
  520. }
  521. }
  522. .button-danger {
  523. &:hover {
  524. background: rgb(133 0 0);
  525. background: linear-gradient(0deg, rgb(133 0 0 / 100%) 0%, rgb(203 0 0 / 100%) 100%);
  526. color: #fff;
  527. text-shadow: 0 1px rgb(0 0 0 / 45%);
  528. border-color: rgb(170 0 0);
  529. }
  530. &:active,
  531. &:focus {
  532. background: rgb(133 0 0);
  533. background: linear-gradient(180deg, rgb(133 0 0 / 100%) 0%, rgb(203 0 0 / 100%) 100%);
  534. color: #4d0000;
  535. text-shadow: 0 -1px 1px rgb(255 255 255 / 30%);
  536. border-color: rgb(251 71 51);
  537. }
  538. }
  539. /* Login
  540. ========================================================================== */
  541. .body-login,
  542. .body-reset {
  543. background: #303030;
  544. background: radial-gradient(circle, rgb(77 77 77 / 100%) 0%, rgb(31 31 31 / 100%) 100%);
  545. }
  546. .login {
  547. & .error {
  548. color: #f864fa;
  549. }
  550. @media (--viewport-small) {
  551. background-color: #282828;
  552. box-shadow: 0 8px 25px rgb(0 0 0 / 30%), inset 0 0 2px rgb(0 0 0 / 25%);
  553. & .form-label {
  554. color: #fff;
  555. }
  556. }
  557. }
  558. .login-title {
  559. color: #fff;
  560. }
  561. .login-form-link {
  562. color: #eee;
  563. text-transform: initial;
  564. font-weight: 400;
  565. &:hover {
  566. color: #ff3478;
  567. }
  568. }
  569. .qr-code {
  570. border: 1px solid #3b3b3b;
  571. box-shadow: 0 1px 4px rgb(0 0 0 / 35%);
  572. }
  573. .l-unit.selected {
  574. background-color: #454545;
  575. color: #d4d4d4;
  576. box-shadow: 0 2px 10px rgb(30 30 30 / 35%);
  577. text-shadow: 0 1px rgb(0 0 0 / 50%);
  578. border-left: 1px solid #212121;
  579. border-right: 1px solid #212121;
  580. }
  581. .l-unit.selected:hover {
  582. background-color: #555;
  583. color: #d4d4d4;
  584. box-shadow: none !important;
  585. text-shadow: 0 1px rgb(0 0 0 / 40%);
  586. }
  587. .l-unit.selected b,
  588. .l-unit.selected strong {
  589. color: #d4d4d4;
  590. }
  591. .console-output {
  592. color: #dadada;
  593. }
  594. #vstobjects.suspended {
  595. background-color: #282828;
  596. }
  597. /* Badge component
  598. ========================================================================== */
  599. .badge {
  600. color: #dadada;
  601. border-color: #212121;
  602. box-shadow: 0 1px 2px rgb(70 70 70 / 50%), inset 0 2px 2px rgb(0 0 0 / 65%);
  603. text-shadow: 0 1px rgb(0 0 0 / 70%);
  604. background-color: #252525;
  605. }
  606. .l-unit--suspended .badge {
  607. background-color: #303030;
  608. color: #808080;
  609. text-shadow: 0 -1px rgb(0 0 0 / 40%);
  610. box-shadow: 0 1px 2px rgb(25 25 25 / 30%);
  611. }
  612. /* Icon component
  613. ========================================================================== */
  614. .icon-highlight {
  615. color: #dadada;
  616. &:hover {
  617. color: #dadada;
  618. }
  619. }
  620. .icon-dim {
  621. color: #808080;
  622. text-shadow: 1px 1px rgb(0 0 0 / 30%);
  623. }
  624. .l-unit--suspended .icon-dim {
  625. color: #808080;
  626. }
  627. /* Modals
  628. ========================================================================== */
  629. .ui-dialog .ui-dialog-buttonpane {
  630. border-top: 1px solid #404040;
  631. }
  632. .ui-dialog .ui-dialog-buttonpane button {
  633. box-shadow: 0 1px 4px rgb(0 0 0 / 10%), inset 0 0 1px #000, inset 0 0 3px rgb(0 0 0 / 50%);
  634. }
  635. .ui-dialog {
  636. background-color: rgb(45 45 45 / 95%);
  637. border: 1px solid rgb(80 80 80 / 97%);
  638. box-shadow: inset 0 1px 3px rgb(0 0 0 / 25%), 0 8px 25px rgb(0 0 0 / 90%);
  639. }
  640. .ui-dialog .ui-dialog-content {
  641. color: #dadada;
  642. }
  643. .ui-dialog .ui-dialog-title {
  644. color: #f12569;
  645. font-weight: 600;
  646. }
  647. .ui-widget-header a {
  648. color: #cacaca;
  649. }
  650. /* Shortcuts panel
  651. ========================================================================== */
  652. .shortcuts {
  653. background: rgb(30 30 30 / 95%);
  654. border: 1px solid rgb(255 255 255 / 25%);
  655. box-shadow: 0 0 20px rgb(0 0 0 / 50%);
  656. }
  657. .shortcuts-header {
  658. border-bottom: 1px solid #353535;
  659. }
  660. .cron-helper-panel {
  661. box-shadow: 0 1px 4px rgb(0 0 0 / 25%);
  662. border-color: #606060;
  663. background-color: #454545;
  664. & .ui-tabs-tab a {
  665. color: #cacaca;
  666. &:hover {
  667. color: #ff3478;
  668. }
  669. &:active {
  670. color: #3b9de8;
  671. }
  672. }
  673. & .ui-tabs-tab[aria-expanded="true"] a {
  674. color: #ff3478;
  675. }
  676. }
  677. .server-console-output {
  678. background: #282828;
  679. }
  680. .l-percent {
  681. border-bottom: 2px solid #585858 !important;
  682. }
  683. .body-stats .l-unit__name {
  684. color: #eee !important;
  685. }
  686. .statistics-count {
  687. border-bottom: 1px dotted #707070;
  688. border-right: 1px dotted #707070;
  689. }
  690. .body-stats .units .l-unit {
  691. background-color: #282828;
  692. border-bottom: 1px solid #404040;
  693. border-left: 1px solid #282828;
  694. border-right: 1px solid #282828;
  695. }
  696. .body-stats .units:hover .l-unit:hover {
  697. background-color: #303030 !important;
  698. color: #fff !important;
  699. }
  700. .body-stats .units:hover .l-unit:hover b,
  701. .body-stats .units:hover .l-unit:hover strong {
  702. color: #fff !important;
  703. }
  704. /* App footer
  705. ========================================================================== */
  706. .app-footer {
  707. color: #cdcdcd;
  708. border-color: #454545;
  709. }
  710. /* Inline alerts
  711. ========================================================================== */
  712. .inline-alert-success {
  713. & a {
  714. color: #fff;
  715. &:hover {
  716. color: #ff3478;
  717. }
  718. }
  719. }
  720. /* Debug panel
  721. ========================================================================== */
  722. .debug-panel-content {
  723. background-color: #282828;
  724. }