dark.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224
  1. /*
  2. Theme Name: Dark
  3. Author: Kristan Kenney (@kristankenney)
  4. Website: www.hestiacp.com
  5. */
  6. body {
  7. color: #cdcdcd;
  8. background-color: #282828;
  9. }
  10. a {
  11. color: #cdcdcd;
  12. }
  13. b,
  14. strong {
  15. color: #cacaca;
  16. }
  17. .l-header {
  18. background: #454545;
  19. border-bottom: 1px solid #505050;
  20. text-shadow: 1px 1px rgb(0 0 0 / 50%);
  21. box-shadow: 0 8px 15px rgb(0 0 0 / 25%);
  22. }
  23. .l-menu__item.l-menu__item--active a {
  24. color: #dadada;
  25. background: linear-gradient(to bottom, rgb(15 15 15 / 60%) 0%, rgb(45 45 45 / 75%) 30%, rgb(60 60 60 / 100%) 95%);
  26. text-shadow: 0 1px rgb(0 0 0 / 50%);
  27. border-left-color: #353535;
  28. border-right-color: #353535;
  29. }
  30. .l-menu__item a {
  31. color: #e7e7e7;
  32. }
  33. .l-menu__item a:hover {
  34. color: #dadada !important;
  35. text-shadow: 1px 1px rgb(0 0 0 / 50%) !important;
  36. background: linear-gradient(to bottom, rgb(15 15 15 / 60%) 0%, rgb(45 45 45 / 75%) 30%, rgb(60 60 60 / 100%) 95%) !important;
  37. box-shadow: none !important;
  38. }
  39. .l-menu__item a:active {
  40. background: linear-gradient(to bottom, rgb(15 15 15 / 70%) 0%, rgb(45 45 45 / 85%) 30%, rgb(50 50 50 / 100%) 95%) !important;
  41. color: #fff !important;
  42. text-shadow: 0 -1px 1px rgb(0 0 0 / 50%) !important;
  43. }
  44. .l-menu__item.l-menu__item--active:hover {
  45. background: linear-gradient(to bottom, rgb(255 255 255 / 15%) 0%, rgb(255 255 255 / 15%) 30%, rgb(255 255 255 / 15%) 95%) !important;
  46. }
  47. .lang-ar .l-menu__item a {
  48. padding: 11px;
  49. }
  50. .lang-de .l-menu__item a {
  51. padding: 11px 12px;
  52. }
  53. .lang-tw .l-menu__item a {
  54. padding: 13px 18px;
  55. }
  56. .l-profile__logout {
  57. color: #e7e7e7 !important;
  58. }
  59. .l-profile__notifications {
  60. color: #fff;
  61. font-weight: 600;
  62. font-size: 1.2rem !important;
  63. line-height: 0.95rem;
  64. border-left: 1px solid transparent !important;
  65. border-right: 1px solid transparent !important;
  66. }
  67. .l-profile__notifications.active.l-profile__notifications.updates:active {
  68. background: linear-gradient(to bottom, rgb(15 15 15 / 60%) 0%, rgb(45 45 45 / 75%) 30%, rgb(60 60 60 / 100%) 95%) !important;
  69. color: #046c98 !important;
  70. text-shadow: 0 -1px 1px rgb(0 0 0 / 50%) !important;
  71. box-shadow: none !important;
  72. transition: 0.2s;
  73. border-left: 1px solid transparent !important;
  74. border-right: 1px solid transparent !important;
  75. }
  76. .l-profile__notifications:hover,
  77. .l-profile__notifications.updates:hover {
  78. text-shadow: 1px 1px rgb(0 0 0 / 50%) !important;
  79. background: linear-gradient(to bottom, rgb(15 15 15 / 60%) 0%, rgb(45 45 45 / 75%) 30%, rgb(60 60 60 / 100%) 95%) !important;
  80. border: none !important;
  81. border-left: 1px solid transparent !important;
  82. border-right: 1px solid transparent !important;
  83. box-shadow: none !important;
  84. }
  85. .notification-container {
  86. background-color: rgb(50 50 50 / 99%);
  87. text-shadow: 0 1px rgb(0 0 0 / 50%);
  88. color: #dadada;
  89. border: 1px solid #404040;
  90. }
  91. .notification-container .empty {
  92. color: #dadada;
  93. }
  94. .notification-container .empty .status-icon {
  95. color: #dadada;
  96. }
  97. .notification-container .unseen {
  98. color: #dadada;
  99. }
  100. .notification-container li {
  101. border-bottom: 1px solid #282828;
  102. }
  103. .notification-container .mark-seen {
  104. background-color: #ff3478;
  105. }
  106. .notification-container .unseen .notification-title a,
  107. .notification-container .unseen .notification-title {
  108. color: #fff !important;
  109. }
  110. .notification-container a {
  111. color: #4fabe9;
  112. }
  113. .notification-container a:hover {
  114. color: #09f;
  115. }
  116. .notification-container a:active {
  117. color: #0079cb;
  118. }
  119. .alert {
  120. border: 1px solid #212121;
  121. }
  122. .alert.alert-danger {
  123. background-color: #d13535;
  124. }
  125. .alert.alert-danger i.fas {
  126. color: #d13535;
  127. }
  128. .alert.alert-success {
  129. }
  130. .alert.alert-success i.fas {
  131. }
  132. .card {
  133. background: #454545;
  134. color: #fafafa;
  135. text-shadow: 0 1px rgb(0 0 0 / 95%) !important;
  136. border: 1px solid #606060;
  137. box-shadow:
  138. 0 1px 4px rgb(0 0 0 / 20%),
  139. inset 0 0 60px rgb(0 0 0 / 25%);
  140. }
  141. .card.disable {
  142. }
  143. .card.disable .card-thumb {
  144. }
  145. .card .card-details {
  146. }
  147. .card .card-details p {
  148. color: #bdbdbd;
  149. }
  150. .card p.card-title {
  151. color: #fafafa;
  152. }
  153. .card .card-thumb {
  154. }
  155. .card .card-thumb img {
  156. }
  157. .l-stat {
  158. background-color: #282828;
  159. }
  160. .l-stat__col {
  161. }
  162. .l-stat__col li {
  163. color: #b7b7b7 !important;
  164. }
  165. .l-stat__col a {
  166. border-bottom: 4px solid #282828;
  167. background-color: #282828;
  168. }
  169. .l-stat__col a:hover {
  170. border-bottom: 4px solid #d7d7d7;
  171. }
  172. .l-stat__col a:active,
  173. .l-stat__col a:focus {
  174. border-bottom: 4px solid #d11755;
  175. }
  176. .l-stat__col--active a {
  177. border-bottom: 4px solid #e93b76;
  178. }
  179. .l-stat.active .l-stat__col.focus a {
  180. border-bottom: 4px solid #e93b76;
  181. }
  182. .l-stat.active .l-stat__col.focus a .l-stat__col-title {
  183. }
  184. .l-stat__col a:hover .l-stat__col-title {
  185. color: #d7d7d7;
  186. }
  187. .l-stat__col a:active .l-stat__col-title {
  188. }
  189. .l-stat__col-title {
  190. font-weight: 500;
  191. color: #bcbcbc;
  192. text-shadow: 0 1px rgb(0 0 0 / 40%);
  193. }
  194. .l-stat__col--active .l-stat__col-title {
  195. color: #ff558f;
  196. }
  197. .l-stat__col .fas {
  198. color: #707070;
  199. padding: 4px;
  200. }
  201. .l-stat__col--active .fas {
  202. color: #aaa;
  203. }
  204. .l-separator.selected,
  205. .l-separator {
  206. border-top: 1px solid #454545;
  207. }
  208. div.l-content > div.l-separator:nth-of-type(2) {
  209. }
  210. div.l-content > div.l-separator:nth-of-type(4) {
  211. border-bottom: 1px solid #454545;
  212. background-color: #282828;
  213. box-shadow: 0 4px 6px rgb(0 0 0 / 25%) !important;
  214. }
  215. .l-sort {
  216. background-color: #282828;
  217. }
  218. .context-menu.sort-order {
  219. background-color: rgb(40 40 40 / 95%);
  220. box-shadow: 0 2px 16px 0 rgb(20 20 20 / 65%);
  221. border-radius: 4px;
  222. border: 1px solid rgb(90 90 90 / 100%);
  223. }
  224. .context-menu li {
  225. border-bottom: 1px solid #454545;
  226. color: #dadada;
  227. }
  228. .context-menu.sort-order span.active {
  229. background-color: #454545 !important;
  230. color: #fff;
  231. background: linear-gradient(to bottom, rgb(15 15 15 / 60%) 0%, rgb(45 45 45 / 75%) 30%, rgb(60 60 60 / 100%) 95%);
  232. text-shadow: 0 1px rgb(0 0 0 / 80%);
  233. }
  234. .context-menu.sort-order span:hover {
  235. color: #fff;
  236. background: linear-gradient(to bottom, rgb(25 25 25 / 60%) 0%, rgb(55 55 55 / 75%) 30%, rgb(70 70 70 / 100%) 95%);
  237. text-shadow: 0 -1px 1px rgb(0 0 0 / 50%);
  238. box-shadow:
  239. inset 0 0 1px rgb(0 0 0 / 40%),
  240. inset -1px -1px 4px rgb(40 40 40 / 40%);
  241. }
  242. .context-menu.sort-order span:active,
  243. .context-menu.sort-order span:focus {
  244. background: linear-gradient(to bottom, rgb(35 35 35 / 60%) 0%, rgb(65 65 65 / 75%) 30%, rgb(80 80 80 / 100%) 95%);
  245. color: #fff;
  246. text-shadow: 0 -1px 1px rgb(0 0 0 / 50%);
  247. box-shadow:
  248. inset 0 0 1px rgb(0 0 0 / 40%),
  249. inset -1px -1px 4px rgb(40 40 40 / 40%);
  250. }
  251. .l-sort-toolbar .sort-by:hover {
  252. color: #d4d4d4;
  253. }
  254. .l-sort-toolbar .sort-by:hover b {
  255. color: #d4d4d4;
  256. }
  257. .l-sort-toolbar .toggle-all:hover {
  258. color: #d4d4d4;
  259. }
  260. .l-sort-toolbar__filter-apply {
  261. border: 1px solid #454545;
  262. background-color: #424242;
  263. text-shadow: 1px 1px rgb(0 0 0 / 90%) !important;
  264. box-shadow: 0 1px 1px rgb(0 0 0 / 40%) !important;
  265. color: #cacaca;
  266. font-size: 1em;
  267. }
  268. .l-sort-toolbar__filter-apply:hover {
  269. color: #09f;
  270. background-color: #454545;
  271. }
  272. .l-sort-toolbar__filter-apply:active {
  273. color: #0074c2;
  274. text-shadow: 0 -1px rgb(255 255 255 / 20%);
  275. box-shadow: inset 1px 1px 0 rgb(0 0 0 / 20%);
  276. }
  277. .l-sort-toolbar .vst {
  278. color: #dadada;
  279. }
  280. .l-sort-toolbar .vst:hover {
  281. color: #ff3478;
  282. }
  283. .l-sort-toolbar .vst:active {
  284. }
  285. .l-sort-toolbar .vst.selected {
  286. color: #ff3478;
  287. }
  288. .l-select {
  289. border: 1px solid #454545;
  290. box-shadow: 0 1px 1px rgb(0 0 0 / 40%) !important;
  291. }
  292. .l-select::after {
  293. }
  294. .l-select select {
  295. background-color: #212121;
  296. box-shadow: 0 1px 1px rgb(0 0 0 / 40%) !important;
  297. }
  298. .l-select select:focus {
  299. }
  300. .lang-ru .l-select select {
  301. }
  302. .l-select select option {
  303. }
  304. .l-sort-toolbar .l-select {
  305. border: 1px solid #454545;
  306. background-color: #454545;
  307. text-shadow: 1px 1px rgb(0 0 0 / 90%);
  308. }
  309. .l-unit {
  310. color: #dadada;
  311. }
  312. .table-header {
  313. background: #404040 !important;
  314. border-left: 1px solid #212121 !important;
  315. border-right: 1px solid #212121 !important;
  316. border-bottom: 1px solid #212121 !important;
  317. border-top: 1px solid #454545 !important;
  318. text-shadow: 0 1px rgb(0 0 0 / 95%);
  319. border-bottom-left-radius: 0 !important;
  320. border-bottom-right-radius: 0 !important;
  321. color: #dadada;
  322. box-shadow: inset 0 1px 1px rgb(0 0 0 / 30%) !important;
  323. }
  324. .table-header:hover {
  325. background-color: #404040 !important;
  326. border-left: 1px solid #212121 !important;
  327. border-right: 1px solid #212121 !important;
  328. box-shadow: inset 0 1px 1px rgb(0 0 0 / 30%) !important;
  329. }
  330. .table-header .fas {
  331. }
  332. .units .l-unit {
  333. background-color: #303030;
  334. border-bottom: 1px solid #282828;
  335. border-left: 1px solid #212121;
  336. border-right: 1px solid #212121;
  337. }
  338. .l-unit:hover,
  339. .units .l-unit:hover {
  340. box-shadow: 0 2px 10px rgb(20 20 20 / 20%);
  341. background-color: #353535;
  342. text-shadow: 0 1px rgb(0 0 0 / 50%);
  343. border-left: 1px solid #212121;
  344. border-right: 1px solid #212121;
  345. }
  346. .units .l-unit.l-unit--starred {
  347. border-left: 2px solid #ff3478;
  348. }
  349. .units.active .l-unit.focus {
  350. background-color: #353535;
  351. }
  352. .units.active .l-unit.focus .l-unit__name {
  353. }
  354. .units.active .l-unit.focus .l-unit-toolbar__col--right {
  355. }
  356. .units > div:last-child {
  357. }
  358. .l-unit-ft {
  359. color: #cdcdcd;
  360. }
  361. .l-unit:hover .l-unit-toolbar__col--right {
  362. }
  363. .l-unit--blue {
  364. }
  365. .l-unit--suspended {
  366. background: #252525 !important;
  367. color: #606060 !important;
  368. text-shadow: 0 -1px rgb(0 0 0 / 40%) !important;
  369. box-shadow: inset 0 0 2px rgb(0 0 0 / 20%);
  370. }
  371. .l-unit--suspended a {
  372. color: #606060 !important;
  373. text-shadow: 0 -1px rgb(0 0 0 / 40%) !important;
  374. }
  375. .units .l-unit.l-unit--outdated {
  376. color: #d4d4d4;
  377. background-color: #981111;
  378. }
  379. .l-unit--outdated.selected {
  380. background: #b70000 !important;
  381. color: #fff !important;
  382. text-shadow: none !important;
  383. }
  384. .l-unit--outdated.selected b {
  385. color: #fff !important;
  386. }
  387. .l-unit--suspended .l-unit__name,
  388. .l-unit--suspended b,
  389. .l-unit--outdated .l-unit__name,
  390. .l-unit--outdated b {
  391. color: #606060;
  392. }
  393. .l-unit--outdated .l-unit__name {
  394. }
  395. .l-unit--outdated b {
  396. color: #d4d4d4;
  397. }
  398. .l-unit--suspended .l-percent {
  399. }
  400. .l-unit--suspended .l-percent__fill {
  401. }
  402. .l-unit--suspended .l-unit__name,
  403. .l-unit--suspended .l-unit__name span {
  404. }
  405. .l-unit--suspended.selected .l-unit__name,
  406. .l-unit--suspended.selected .l-unit__name span {
  407. color: #707070;
  408. }
  409. .l-unit--suspended.selected {
  410. background-color: #454545 !important;
  411. color: #707070 !important;
  412. }
  413. .l-unit__name {
  414. color: #dadada;
  415. }
  416. .l-unit__stats:hover {
  417. background: transparent !important;
  418. }
  419. .l-unit__stat-col--left a,
  420. .l-unit__stat-col--left a:visited {
  421. color: #fafafa;
  422. }
  423. .l-unit__stat-col--left a:hover {
  424. color: #fff;
  425. }
  426. /* form styles */
  427. .vst-error {
  428. color: #f33;
  429. }
  430. .vst-ok {
  431. color: #53ba55;
  432. }
  433. .vst-ok a {
  434. color: #fff;
  435. }
  436. .vst-ok a:hover {
  437. color: #ff3478;
  438. }
  439. .vst-ok a:active {
  440. }
  441. .form-label,
  442. .form-check label {
  443. color: #d4d4d4;
  444. }
  445. .form-control {
  446. background-color: #454545;
  447. border: 1px solid #606060;
  448. color: #d4d4d4;
  449. box-shadow: 0 1px 4px rgb(0 0 0 / 35%);
  450. }
  451. .form-control:hover {
  452. border-color: #0090ff;
  453. background-color: #494949;
  454. }
  455. .form-control:focus {
  456. background-color: #222;
  457. border-color: #0080df;
  458. color: #fff;
  459. box-shadow: 0 1px 6px rgb(0 52 91 / 75%);
  460. }
  461. .form-control:disabled,
  462. .form-select:disabled {
  463. background-color: #303030;
  464. text-shadow: 1px 1px rgb(0 0 0 / 30%);
  465. color: #acacac;
  466. border-color: #606060;
  467. }
  468. .form-control:disabled:hover,
  469. .form-select:disabled:hover {
  470. border-color: #606060 !important;
  471. }
  472. .form-control.list-editor:focus {
  473. background-color: #222;
  474. box-shadow: none !important;
  475. }
  476. .form-select {
  477. background-color: #454545;
  478. border: 1px solid #606060;
  479. color: #d4d4d4;
  480. text-shadow: 0 0 0 #d4d4d4;
  481. box-shadow: 0 1px 4px rgb(0 0 0 / 35%);
  482. }
  483. textarea::input-placeholder {
  484. color: #bbb !important;
  485. }
  486. textarea:focus::input-placeholder {
  487. color: #909090 !important;
  488. }
  489. textarea::placeholder {
  490. color: #bbb !important;
  491. }
  492. textarea:focus::placeholder {
  493. color: #909090 !important;
  494. }
  495. .form-select:hover {
  496. border-color: #0090ff;
  497. background-color: #494949;
  498. }
  499. .form-select:focus {
  500. background-color: #222;
  501. border-color: #0080df;
  502. color: #fff;
  503. box-shadow: 0 1px 6px rgb(0 52 91 / 75%);
  504. }
  505. .generate {
  506. color: #29a9ff;
  507. border-radius: 4px;
  508. }
  509. .generate:hover {
  510. background-color: #ff3478;
  511. border-color: #ff3478;
  512. }
  513. .generate:active {
  514. background-color: #be1f54;
  515. border-color: #be1f54;
  516. }
  517. .lets-encrypt-note {}
  518. .toggle-psw-visibility-icon {}
  519. .show-passwords-enabled-action {}
  520. .ftp-path-value,
  521. .hint,
  522. td.hint {
  523. color: #a2a2a2;
  524. font-size: 0.8rem;
  525. }
  526. .ftp-path-prefix {
  527. padding-top: 12px;
  528. font-size: 0.8rem;
  529. color: #555;
  530. }
  531. /* Buttons
  532. ========================================================================== */
  533. .button {
  534. color: #eee;
  535. text-shadow: 0 1px 1px rgb(0 0 0 / 35%);
  536. font-weight: 400;
  537. border-color: #707070;
  538. background: rgb(48 48 48);
  539. background: linear-gradient(0deg, rgb(48 48 48 / 100%) 0%, rgb(53 53 53 / 100%) 35%, rgb(69 69 69 / 100%) 100%);
  540. box-shadow:
  541. 0 1px 4px rgb(0 0 0 / 20%),
  542. inset 0 0 1px rgb(20 20 20 / 100%),
  543. inset 0 0 3px rgb(0 0 0 / 50%);
  544. }
  545. .button:hover {
  546. color: #fff;
  547. text-shadow: 1px 1px rgb(0 0 0 / 25%);
  548. border-color: #0098ff;
  549. background: linear-gradient(0deg, rgb(58 58 58 / 100%) 0%, rgb(68 68 68 / 100%) 35%, rgb(79 79 79 / 100%) 100%);
  550. background-color: #454545;
  551. box-shadow:
  552. 0 1px 3px rgb(0 0 0 / 35%),
  553. inset 0 0 1px rgb(0 0 0 / 100%),
  554. inset 0 0 3px rgb(0 0 0 / 65%);
  555. transition: 0.2s;
  556. }
  557. .button:active,
  558. .button:focus {
  559. color: #d4d4d4;
  560. text-shadow: 0 -1px 1px rgb(0 0 0 / 55%);
  561. border-color: #0066b4;
  562. background: linear-gradient(0deg, rgb(69 69 69 / 100%) 0%, rgb(53 53 53 / 100%) 35%, rgb(48 48 48 / 100%) 100%);
  563. box-shadow:
  564. 0 1px 3px rgb(0 0 0 / 30%),
  565. inset 0 0 1px rgb(0 0 0 / 100%),
  566. inset -1px -1px 4px rgb(30 30 30 / 40%);
  567. }
  568. .button-secondary {
  569. border-color: #454545;
  570. background-color: #343434;
  571. background: linear-gradient(0deg, rgb(48 48 48 / 100%) 0%, rgb(53 53 53 / 100%) 100%, rgb(69 69 69 / 100%) 100%);
  572. }
  573. .button-secondary:hover {
  574. background-color: #343434;
  575. background: linear-gradient(0deg, rgb(48 48 48 / 100%) 0%, rgb(53 53 53 / 100%) 100%, rgb(69 69 69 / 100%) 100%);
  576. }
  577. .button-danger:hover {
  578. background: rgb(133 0 0);
  579. background: linear-gradient(0deg, rgb(133 0 0 / 100%) 0%, rgb(203 0 0 / 100%) 100%);
  580. color: #fff;
  581. text-shadow: 0 1px rgb(0 0 0 / 45%);
  582. border-color: rgb(170 0 0);
  583. }
  584. .button-danger:active,
  585. .button-danger:focus {
  586. background: rgb(133 0 0);
  587. background: linear-gradient(180deg, rgb(133 0 0 / 100%) 0%, rgb(203 0 0 / 100%) 100%);
  588. color: #4d0000;
  589. text-shadow: 0 -1px 1px rgb(255 255 255 / 30%);
  590. border-color: rgb(251 71 51);
  591. }
  592. .to-shortcuts,
  593. .to-top {
  594. font-size: 0.85rem !important;
  595. font-weight: 400 !important;
  596. color: #eee !important;
  597. border: 1px solid #707070 !important;
  598. background: rgb(48 48 48) !important;
  599. background: linear-gradient(0deg, rgb(48 48 48 / 100%) 0%, rgb(53 53 53 / 100%) 35%, rgb(69 69 69 / 100%) 100%) !important;
  600. box-shadow:
  601. 0 1px 4px rgb(0 0 0 / 20%),
  602. inset 0 0 1px rgb(20 20 20 / 100%),
  603. inset 0 0 3px rgb(0 0 0 / 50%) !important;
  604. text-shadow: 0 1px 1px rgb(0 0 0 / 35%) !important;
  605. }
  606. .to-shortcuts:hover,
  607. .to-top:hover {
  608. color: #fff !important;
  609. text-shadow: 1px 1px rgb(0 0 0 / 25%) !important;
  610. border: 1px solid #0098ff !important;
  611. background: linear-gradient(0deg, rgb(58 58 58 / 100%) 0%, rgb(68 68 68 / 100%) 35%, rgb(79 79 79 / 100%) 100%) !important;
  612. background-color: #454545;
  613. box-shadow:
  614. 0 1px 3px rgb(0 0 0 / 35%),
  615. inset 0 0 1px rgb(0 0 0 / 100%),
  616. inset 0 0 3px rgb(0 0 0 / 65%) !important;
  617. transition: 0.2s;
  618. }
  619. .to-shortcuts:active,
  620. .to-top:active,
  621. .to-shortcuts:focus,
  622. .to-top:focus {
  623. border: 1px solid #0066b4 !important;
  624. background: linear-gradient(0deg, rgb(69 69 69 / 100%) 0%, rgb(53 53 53 / 100%) 35%, rgb(48 48 48 / 100%) 100%) !important;
  625. color: #d4d4d4 !important;
  626. text-shadow: 0 -1px 1px rgb(0 0 0 / 55%) !important;
  627. box-shadow:
  628. 0 1px 3px rgb(0 0 0 / 30%),
  629. inset 0 0 1px rgb(0 0 0 / 100%),
  630. inset -1px -1px 4px rgb(30 30 30 / 40%) !important;
  631. }
  632. .ui-dialog button.cancel span {
  633. color: #fff !important;
  634. }
  635. .additional-control {
  636. color: #09f;
  637. }
  638. .additional-control:hover {
  639. background-color: #ff3478;
  640. border-color: #ff3478;
  641. }
  642. .additional-control:active {}
  643. .additional-control.delete:hover,
  644. .additional-control.delete:active,
  645. .additional-control.add:hover {}
  646. .additional-control.add:active {}
  647. .unlim-trigger {
  648. }
  649. .optional {
  650. }
  651. .mail-infoblock-td {
  652. }
  653. .mail-infoblock {
  654. color: #fff;
  655. border: 1px solid #606060;
  656. box-shadow: 0 1px 4px rgb(0 0 0 / 35%);
  657. background-color: #454545;
  658. }
  659. .mail-infoblock:hover {
  660. }
  661. .mail-infoblock td {
  662. color: #dadada;
  663. }
  664. .mail-infoblock td:first-child{
  665. }
  666. .mail-infoblock div {
  667. }
  668. .mail-infoblock a {
  669. color: #52b9ff;
  670. }
  671. .mail-infoblock a:hover {
  672. color: #ff3478;
  673. }
  674. .additional-info {
  675. }
  676. .additional-info td {
  677. }
  678. .additional-info td.details {
  679. }
  680. .body-login,
  681. .body-reset {
  682. background: #303030;
  683. background: radial-gradient(circle, rgb(77 77 77 / 100%) 0%, rgb(31 31 31 / 100%) 100%);
  684. }
  685. .login {
  686. background-color: #282828;
  687. box-shadow: 0 8px 25px rgb(0 0 0 / 30%), inset 0 0 2px rgb(0 0 0 / 25%);
  688. }
  689. .login-title {
  690. color: #fff;
  691. }
  692. .login .error {
  693. color: #f864fa;
  694. }
  695. .login .label-link {
  696. color: #eee;
  697. text-transform: initial;
  698. font-weight: 400;
  699. }
  700. .login .label-link:hover {
  701. color: #ff3478;
  702. }
  703. .form-title {
  704. color: #e8e8e8;
  705. }
  706. .section-title {
  707. color: #d4d4d4;
  708. border-bottom-color: #484848;
  709. }
  710. .qr-code {
  711. border: 1px solid #3b3b3b;
  712. box-shadow: 0 1px 4px rgb(0 0 0 / 35%);
  713. }
  714. .l-unit.selected {
  715. background-color: #454545;
  716. color: #d4d4d4;
  717. box-shadow: 0 2px 10px rgb(30 30 30 / 35%);
  718. text-shadow: 0 1px rgb(0 0 0 / 50%);
  719. border-left: 1px solid #212121;
  720. border-right: 1px solid #212121;
  721. }
  722. .l-unit.selected:hover {
  723. background-color: #555;
  724. color: #d4d4d4;
  725. box-shadow: none !important;
  726. text-shadow: 0 1px rgb(0 0 0 / 40%);
  727. }
  728. .l-unit.selected b,
  729. .l-unit.selected strong {
  730. color: #d4d4d4;
  731. }
  732. /* MAIN MENU COLLAPSED */
  733. .console-output {
  734. color: #dadada !important;
  735. }
  736. form#vstobjects.suspended {
  737. background-color: #282828;
  738. }
  739. .usage-pill {
  740. box-shadow: inset 0 1px 1px rgb(0 0 0 / 85%), 0 1px 1px rgb(0 0 0 / 20%);
  741. background-color: rgb(15 15 15 / 50%);
  742. border: 1px solid rgb(120 120 120 / 95%);
  743. text-shadow: 0 1px 1px rgb(0 0 0 / 50%);
  744. color: #909090;
  745. }
  746. .usage-pill b {
  747. color: #d8d8d8;
  748. }
  749. .badge {
  750. box-shadow:
  751. 0 1px 2px rgb(70 70 70 / 50%),
  752. inset 0 2px 2px rgb(0 0 0 / 65%);
  753. text-shadow: 0 1px 2px rgb(0 0 0 / 50%);
  754. border: 1px solid #212121 !important;
  755. }
  756. .badge.large {
  757. }
  758. .badge.raised {
  759. background: radial-gradient(ellipse at center, rgb(40 40 40 / 20%) 0%, rgb(80 80 80 / 5%) 100%);
  760. }
  761. .l-unit--suspended .badge {
  762. background: #303030 !important;
  763. color: #808080 !important;
  764. text-shadow: 0 -1px rgb(0 0 0 / 40%) !important;
  765. box-shadow: 0 1px 2px rgb(25 25 25 / 30%) !important;
  766. }
  767. .badge.gray {
  768. border: 1px solid #181818;
  769. background-color: #252525;
  770. color: #dadada;
  771. text-shadow: 0 1px rgb(0 0 0 / 70%) !important;
  772. }
  773. .badge.blue {
  774. }
  775. .badge.purple {
  776. }
  777. .badge.teal {
  778. }
  779. .badge.maroon {
  780. background-color: #ff3478;
  781. }
  782. .badge.red {
  783. }
  784. .badge.orange {
  785. }
  786. .badge.green {
  787. }
  788. .badge.lightblue {
  789. }
  790. .status-icon.large {
  791. }
  792. .status-icon.yellow,
  793. .status-icon.yellow:hover {
  794. color: #f3e72c;
  795. }
  796. .status-icon.teal,
  797. .status-icon.teal:hover {
  798. color: #3cc;
  799. }
  800. .status-icon.purple,
  801. .status-icon.purple:hover {
  802. color: #c364ff;
  803. }
  804. .status-icon.maroon,
  805. .status-icon.maroon:hover {
  806. color: #ff3478;
  807. }
  808. .status-icon.red,
  809. .status-icon.red:hover {
  810. }
  811. .status-icon.green,
  812. .status-icon.green:hover {
  813. color: #37cf39;
  814. }
  815. .status-icon.orange,
  816. .status-icon.orange:hover {
  817. }
  818. .status-icon.lightblue,
  819. .status-icon.lightblue:hover {
  820. }
  821. .status-icon.highlight,
  822. .status-icon.highlight:hover {
  823. color: #dadada;
  824. }
  825. .status-icon.blue,
  826. .status-icon.blue:hover {
  827. color: #0092f4;
  828. }
  829. .status-icon.dim {
  830. color: #808080;
  831. text-shadow: 1px 1px rgb(0 0 0 / 30%);
  832. }
  833. .l-unit--suspended .status-icon.dim {
  834. color: #808080 !important;
  835. text-shadow: 0 !important;
  836. }
  837. .search-input {
  838. background-color: #212121;
  839. border: 1px solid #454545;
  840. box-shadow: 0 1px 1px rgb(0 0 0 / 40%) !important;
  841. }
  842. .ui-dialog .ui-dialog-buttonpane {
  843. border-top: 1px solid #404040;
  844. }
  845. .ui-dialog .ui-dialog-buttonpane button {
  846. box-shadow:
  847. 0 1px 4px rgb(0 0 0 / 10%),
  848. inset 0 0 1px #000,
  849. inset 0 0 3px rgb(0 0 0 / 50%);
  850. }
  851. .shortcuts {
  852. background: rgb(30 30 30 / 95%);
  853. border: 1px solid rgb(255 255 255 / 25%);
  854. box-shadow: 0 0 20px rgb(0 0 0 / 50%);
  855. }
  856. .shortcuts-header {
  857. border-bottom: 1px solid #353535;
  858. }
  859. .ui-dialog {
  860. background-color: rgb(45 45 45 / 95%);
  861. border: 1px solid rgb(80 80 80 / 97%);
  862. box-shadow:
  863. inset 0 1px 3px rgb(0 0 0 / 25%),
  864. 0 8px 25px rgb(0 0 0 / 90%);
  865. }
  866. .ui-dialog .ui-dialog-content {
  867. color: #dadada;
  868. }
  869. .ui-dialog .ui-dialog-title {
  870. color: #f12569;
  871. font-weight: 600;
  872. }
  873. .helper-container {
  874. box-shadow: 0 1px 4px rgb(0 0 0 / 25%);
  875. border: 1px solid #606060;
  876. background-color: #454545;
  877. }
  878. .context-helper:active {
  879. color: #ff3478;
  880. }
  881. .cron-helper-tabs a {
  882. color: #cacaca;
  883. }
  884. .cron-helper-tabs a:hover {
  885. color: #ff3478 !important;
  886. }
  887. .cron-helper-tabs a:active {
  888. color: #3b9de8 !important;
  889. }
  890. .cron-helper-tabs .ui-tabs-selected a,
  891. li[aria-expanded="true"] a {
  892. color: #ff3478 !important;
  893. }
  894. .cron-helper-tabs p {
  895. color: #dadada;
  896. }
  897. .server-info-name {
  898. color: #fafafa !important;
  899. }
  900. .server-info-output {
  901. background: #282828;
  902. }
  903. .icon-server-info {
  904. color: #707070;
  905. }
  906. .ui-widget-header a {
  907. color: #cacaca !important;
  908. }
  909. .graph-rounded {
  910. border-radius: 8px;
  911. }
  912. .debug-panel-contents {
  913. background-color: #282828;
  914. }
  915. .body-rrd .units .l-unit {
  916. background-color: #282828 !important;
  917. border-left: 1px solid transparent !important;
  918. border-right: 1px solid transparent !important;
  919. }
  920. .l-percent {
  921. border-bottom: 2px solid #585858 !important;
  922. }
  923. .body-stats .l-unit__name {
  924. color: #eee !important;
  925. }
  926. .statistics-count {
  927. border-bottom: 1px dotted #707070;
  928. border-right: 1px dotted #707070;
  929. }
  930. .body-stats .units .l-unit {
  931. background-color: #282828 !important;
  932. border-bottom: 1px solid #404040 !important;
  933. border-left: 1px solid #282828 !important;
  934. border-right: 1px solid #282828 !important;
  935. }
  936. .body-stats .units:hover .l-unit:hover {
  937. background-color: #303030 !important;
  938. color: #fff !important;
  939. }
  940. .body-stats .units:hover .l-unit:hover b,
  941. .body-stats .units:hover .l-unit:hover strong {
  942. color: #fff !important;
  943. }
  944. @media screen and (max-width: 950px) {
  945. .helper-container {
  946. display: none;
  947. }
  948. }
  949. /* Collapse component
  950. ========================================================================== */
  951. .collapse-header {
  952. background: #454545;
  953. border: 1px solid #505050;
  954. text-shadow: 0 1px rgb(0 0 0 / 40%);
  955. box-shadow:
  956. inset 0 0 2px rgb(0 0 0 / 50%),
  957. 0 2px 6px rgb(0 0 0 / 40%);
  958. color: #fff;
  959. }