flat.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /*
  2. Theme Name: Flat
  3. Author: Robert Zollner (@Lupul)
  4. Website: www.hestiacp.com
  5. */
  6. :root {
  7. --alert-box-shadow: none;
  8. --alert-text-shadow: none;
  9. }
  10. b,
  11. strong {
  12. font-weight: 600;
  13. }
  14. .table-header {
  15. box-shadow: none;
  16. background: #fafafa;
  17. }
  18. .l-header {
  19. box-shadow: none;
  20. background: #5070a6;
  21. text-shadow: none;
  22. }
  23. .l-menu__item--active {
  24. background-color: #fff;
  25. }
  26. .l-menu__item.l-menu__item--active a {
  27. background: none;
  28. box-shadow: none !important;
  29. }
  30. .l-menu__item > a:hover {
  31. background: #fff !important;
  32. box-shadow: none;
  33. }
  34. .l-menu__item > a:active {
  35. background: none;
  36. box-shadow: none !important;
  37. }
  38. .l-profile__notifications:hover,
  39. .l-profile__notifications.updates:hover,
  40. .l-profile__notifications.active.l-profile__notifications.updates:active {
  41. background: white !important;
  42. border: 1px solid transparent !important;
  43. box-shadow: none !important;
  44. }
  45. .l-unit:hover {
  46. box-shadow: none;
  47. }
  48. .l-unit__stat-col--left a,
  49. .l-unit__stat-col--left a:visited {
  50. color: #5f7eb3;
  51. }
  52. .l-unit__stat-col--left a:hover {
  53. color: #474747;
  54. }
  55. .l-unit:hover,
  56. .units .l-unit:hover {
  57. box-shadow: none;
  58. }
  59. .form-control,
  60. .form-select {
  61. box-shadow: none;
  62. }
  63. /* Buttons
  64. ========================================================================== */
  65. .button {
  66. box-shadow: none;
  67. background: linear-gradient(to bottom, rgb(235 243 249 / 100%) 0%, rgb(223 235 245 / 100%) 100%);
  68. }
  69. .button:hover {
  70. color: #6986b7;
  71. box-shadow: none;
  72. background: linear-gradient(to bottom, rgb(241 248 253 / 100%) 0%, rgb(227 240 251 / 100%) 100%);
  73. }
  74. .button:active,
  75. .button:focus {
  76. box-shadow: none;
  77. background: linear-gradient(to bottom, rgb(210 232 250 / 100%) 0%, rgb(194 224 248 / 100%) 100%);
  78. }
  79. .button-secondary {
  80. box-shadow: none;
  81. background: linear-gradient(to bottom, rgb(250 250 250 / 100%) 0%, rgb(241 241 241 / 100%) 100%);
  82. }
  83. .button-danger:hover {
  84. background: #fcd3cf;
  85. color: #f4301a;
  86. border-color: #f27e71;
  87. }
  88. .button-danger:active,
  89. .button-danger:focus {
  90. background: #a91200;
  91. color: #fff;
  92. border-color: #f4301a;
  93. }
  94. .to-top,
  95. .to-shortcuts,
  96. .to-top:hover,
  97. .to-shortcuts:hover,
  98. .to-top:active,
  99. .to-shortcuts:active {
  100. box-shadow: none;
  101. background: none;
  102. background-color: #eee;
  103. }
  104. .to-top,
  105. .to-shortcuts {
  106. box-shadow: none;
  107. background: linear-gradient(to bottom, rgb(250 250 250 / 100%) 0%, rgb(241 241 241 / 100%) 100%);
  108. }
  109. .to-top:hover,
  110. .to-shortcuts:hover {
  111. color: #6986b7;
  112. box-shadow: none;
  113. background: linear-gradient(to bottom, rgb(241 248 253 / 100%) 0%, rgb(227 240 251 / 100%) 100%);
  114. }
  115. .to-top:focus,
  116. .to-shortcuts:focus {
  117. box-shadow: none;
  118. background: linear-gradient(to bottom, rgb(210 232 250 / 100%) 0%, rgb(194 224 248 / 100%) 100%);
  119. }
  120. .ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
  121. box-shadow: none;
  122. }
  123. .ui-dialog {
  124. box-shadow: 0 2px 11px 0 rgb(0 0 0 / 50%);
  125. }
  126. .usage-pill {
  127. box-shadow: none;
  128. }
  129. .badge {
  130. box-shadow: none;
  131. }
  132. .notification-container {
  133. box-shadow: none;
  134. border: 1px solid #ccc;
  135. background: #fff;
  136. }
  137. .context-menu.sort-order {
  138. box-shadow: none;
  139. border: 1px solid #ccc;
  140. background: #fff !important;
  141. }
  142. .body-login,
  143. .body-reset {
  144. background: #5f7eb3;
  145. }
  146. .login {
  147. background-color: rgb(255 255 255 / 80%);
  148. box-shadow:
  149. 0 2px 10px rgb(0 0 0 / 30%),
  150. inset 0 0 2px rgb(255 255 255 / 100%);
  151. }
  152. /* Collapse component
  153. ========================================================================== */
  154. .collapse-header {
  155. background: #fafafa;
  156. box-shadow: none;
  157. }