014-mailcow.css 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. @font-face {
  2. font-family: 'Noto Sans';
  3. font-style: normal;
  4. font-weight: 400;
  5. src: local(''),
  6. url('/fonts/noto-sans-v12-latin_greek_cyrillic-regular.woff2') format('woff2'),
  7. url('/fonts/noto-sans-v12-latin_greek_cyrillic-regular.woff') format('woff');
  8. }
  9. @font-face {
  10. font-family: 'Noto Sans';
  11. font-style: normal;
  12. font-weight: 700;
  13. src: local(''),
  14. url('/fonts/noto-sans-v12-latin_greek_cyrillic-700.woff2') format('woff2'),
  15. url('/fonts/noto-sans-v12-latin_greek_cyrillic-700.woff') format('woff');
  16. }
  17. @font-face {
  18. font-family: 'Noto Sans';
  19. font-style: italic;
  20. font-weight: 400;
  21. src: local(''),
  22. url('/fonts/noto-sans-v12-latin_greek_cyrillic-italic.woff2') format('woff2'),
  23. url('/fonts/noto-sans-v12-latin_greek_cyrillic-italic.woff') format('woff');
  24. }
  25. @font-face {
  26. font-family: 'Noto Sans';
  27. font-style: italic;
  28. font-weight: 700;
  29. src: local(''),
  30. url('/fonts/noto-sans-v12-latin_greek_cyrillic-700italic.woff2') format('woff2'),
  31. url('/fonts/noto-sans-v12-latin_greek_cyrillic-700italic.woff') format('woff');
  32. }
  33. body {
  34. min-height: 100vh;
  35. display: flex;
  36. flex-direction: column;
  37. background-color: #fbfbfb;
  38. }
  39. #maxmsgsize { min-width: 80px; }
  40. #slider1 .slider-selection {
  41. background: #FFD700;
  42. }
  43. #slider1 .slider-track-high {
  44. background: #FF4500;
  45. }
  46. #slider1 .slider-track-low {
  47. background: #66CD00;
  48. }
  49. .striped:nth-child(odd) {
  50. background-color: #fff;
  51. }
  52. .striped:nth-child(even) {
  53. background-color: #fafafa;
  54. border:1px solid white;
  55. }
  56. .btn {
  57. text-transform: none;
  58. }
  59. .btn * {
  60. pointer-events: none;
  61. }
  62. .textarea-code {
  63. font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
  64. background:transparent !important;
  65. }
  66. .navbar-nav {
  67. margin: 0;
  68. }
  69. .navbar-nav .nav-item {
  70. flex-direction: column;
  71. display: flex;
  72. padding: 0 10px !important;
  73. }
  74. .navbar-nav .nav-link {
  75. height: 44px;
  76. display: flex;
  77. align-items: center;
  78. padding: 0 10px !important;
  79. }
  80. .navbar-fixed-bottom .navbar-collapse,
  81. .navbar-fixed-top .navbar-collapse {
  82. max-height: 1000px
  83. }
  84. .nav-tabs .nav-link, .nav-tabs .nav-link.disabled, .nav-tabs .nav-link.disabled:hover, .nav-tabs .nav-link.disabled:focus {
  85. border-color: #dfdfdf;
  86. }
  87. .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  88. border-color: #dfdfdf;
  89. border-bottom: 1px solid #ffffff;
  90. }
  91. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  92. border-color: #dfdfdf;
  93. }
  94. .nav-tabs {
  95. border-bottom: 1px solid #dfdfdf;
  96. }
  97. .bi {
  98. display: inline-block;
  99. font-size: 12pt;
  100. }
  101. .btn .bi {
  102. display: inline-block;
  103. font-size: inherit;
  104. }
  105. .btn-group-xs > .btn, .btn-xs {
  106. padding: .25rem .4rem;
  107. font-size: .875rem;
  108. line-height: 1rem;
  109. border-radius: .2rem;
  110. }
  111. .icon-spin {
  112. animation-name: spin;
  113. animation-duration: 2000ms;
  114. animation-iteration-count: infinite;
  115. animation-timing-function: linear;
  116. -webkit-animation: spin 2000ms infinite linear;
  117. }
  118. .dropdown-menu {
  119. font-size: 0.9rem;
  120. }
  121. @-webkit-keyframes spin {
  122. 0% {
  123. -webkit-transform: rotate(0deg);
  124. transform: rotate(0deg);
  125. }
  126. 100% {
  127. -webkit-transform: rotate(359deg);
  128. transform: rotate(359deg);
  129. }
  130. }
  131. @keyframes spin {
  132. 0% {
  133. -webkit-transform: rotate(0deg);
  134. transform: rotate(0deg);
  135. }
  136. 100% {
  137. -webkit-transform: rotate(359deg);
  138. transform: rotate(359deg);
  139. }
  140. }
  141. @keyframes blink {
  142. 50% {
  143. color: transparent
  144. }
  145. }
  146. .loader-dot {
  147. animation: 1s blink infinite
  148. }
  149. .loader-dot:nth-child(2) {
  150. animation-delay: 250ms
  151. }
  152. .loader-dot:nth-child(3) {
  153. animation-delay: 500ms
  154. }
  155. pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}
  156. /* Fix modal moving content left */
  157. body.modal-open {
  158. overflow: inherit;
  159. padding-right: inherit !important;
  160. }
  161. body {
  162. font-family: "Noto Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  163. font-size: 10.5pt;
  164. line-height: 1.5;
  165. }
  166. html {
  167. font-family: "Noto Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  168. font-size: 10.5pt;
  169. line-height: 1.5;
  170. }
  171. #mailcow-alert {
  172. position: fixed;
  173. bottom: 8px;
  174. right: 25px;
  175. min-width: 350px;
  176. max-width: 550px;
  177. z-index: 2000;
  178. }
  179. .input-group-sm .btn { margin-top: 0 !important }
  180. legend {
  181. -webkit-user-select: none;
  182. -moz-user-select: none;
  183. -ms-user-select: none;
  184. -o-user-select: none;
  185. user-select: none;
  186. font-size: 1.2rem;
  187. }
  188. .navbar .navbar-brand {
  189. padding-top: 5px;
  190. }
  191. .navbar .navbar-brand img {
  192. height: 40px;
  193. }
  194. .mailcow-logo img {
  195. max-width: 250px;
  196. }
  197. .lang-link-disabled a {
  198. pointer-events: none;
  199. }
  200. .lang-link-disabled {
  201. cursor: not-allowed;
  202. }
  203. .overlay {
  204. background: #fff;
  205. position: absolute;
  206. z-index: 10000;
  207. top: 0; right: 0; bottom: 0; left: 0;
  208. opacity: 0.7;
  209. }
  210. .bootstrap-select.btn-group .no-results {
  211. display: none;
  212. }
  213. .bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary {
  214. color: rgb(197, 197, 197) !important;
  215. }
  216. .haveibeenpwned {
  217. cursor: pointer;
  218. -webkit-user-select: none;
  219. -moz-user-select: none;
  220. -ms-user-select: none;
  221. user-select: none;
  222. }
  223. .full-width-select {
  224. width: 100%!important;
  225. }
  226. .tooltip {
  227. font-family: inherit;
  228. font-size: 0.8rem;
  229. }
  230. .progress-bar {
  231. font-size: 0.8rem;
  232. line-height: 14px;
  233. }
  234. .footer {
  235. margin-top: 27px;
  236. margin-bottom: 20px;
  237. color: #959595;
  238. display: flex;
  239. flex-direction: column;
  240. }
  241. .footer .version {
  242. margin-left: auto;
  243. margin-top: 20px;
  244. }
  245. .slave-info {
  246. font-weight: bold;
  247. color: orange;
  248. }
  249. .alert-hr {
  250. margin:3px 0px;
  251. border-bottom:1px solid #f5f5f5!important;
  252. opacity: 0.3;
  253. }
  254. .btn-input-missing,
  255. .btn-input-missing:hover,
  256. .btn-input-missing:active,
  257. .btn-input-missing:focus,
  258. .btn-input-missing:active:hover,
  259. .btn-input-missing:active:focus {
  260. color: #000 !important;
  261. background-color: #ff2f24 !important;
  262. border-color: #e21207 !important;
  263. }
  264. .navbar-nav > li {
  265. font-size: 1rem !important;
  266. }
  267. .dropdown-menu > li > a {
  268. font-size: 1rem !important;
  269. }
  270. .label {
  271. font-size:inherit;
  272. }
  273. [class^="bi-"]::before, [class*=" bi-"]::before {
  274. vertical-align: -0.2em !important;
  275. }
  276. legend > [class^="bi-"]::before, legend > [class*=" bi-"]::before {
  277. vertical-align: 0em !important;
  278. }
  279. code {
  280. font-size: inherit;
  281. }
  282. .bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  283. margin-top: 0px;
  284. }
  285. .flag-icon {
  286. margin-right: 5px;
  287. }
  288. .dropdown-header {
  289. font-weight: 600;
  290. }
  291. .tag-box {
  292. display: flex;
  293. flex-wrap: wrap;
  294. height: auto;
  295. }
  296. .tag-badge {
  297. transition: 200ms linear;
  298. margin-top: 5px;
  299. margin-bottom: 5px;
  300. margin-left: 2px;
  301. margin-right: 2px;
  302. }
  303. .tag-badge.btn-badge {
  304. cursor: pointer;
  305. }
  306. .tag-badge .bi {
  307. font-size: 12px;
  308. }
  309. .tag-badge.btn-badge:hover {
  310. filter: brightness(0.9);
  311. }
  312. .tag-input {
  313. margin-left: 10px;
  314. border: 0 !important;
  315. flex: 1;
  316. height: 24px;
  317. min-width: 150px;
  318. }
  319. .tag-input:focus {
  320. outline: none;
  321. }
  322. .tag-add {
  323. padding: 0 5px 0 5px;
  324. align-items: center;
  325. display: inline-flex;
  326. }
  327. #dnstable {
  328. overflow-x: auto!important;
  329. }
  330. .well {
  331. border: 1px solid #dfdfdf;
  332. background-color: #f9f9f9;
  333. padding: 10px;
  334. }
  335. .btn-check-label {
  336. color: #555;
  337. }
  338. .caret {
  339. transform: rotate(0deg);
  340. }
  341. a[aria-expanded='true'] > .caret,
  342. button[aria-expanded='true'] > .caret {
  343. transform: rotate(-180deg);
  344. }
  345. .list-group-details {
  346. background: #fff;
  347. }
  348. .list-group-header {
  349. background: #f7f7f7;
  350. }
  351. .bg-primary, .alert-primary, .btn-primary {
  352. background-color: #0F688D !important;
  353. border-color: #0d526d !important;
  354. }
  355. .bg-info, .alert-info, .btn-info {
  356. background-color: #148DBC !important;
  357. border-color: #127ea8 !important;
  358. }
  359. .bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary {
  360. color: rgb(137 137 137)!important;
  361. }
  362. .progress {
  363. height: 16px;
  364. background-color: #d5d5d5;
  365. }
  366. .btn-outline-secondary:hover {
  367. background-color: #f0f0f0;
  368. }
  369. .btn.btn-outline-secondary {
  370. color: #000000 !important;
  371. border-color: #cfcfcf !important;
  372. }
  373. .btn-check:checked+.btn-outline-secondary, .btn-check:active+.btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  374. background-color: #f0f0f0 !important;
  375. }
  376. .btn-check:checked+.btn-light, .btn-check:active+.btn-light, .btn-light:active, .btn-light.active, .show>.btn-light.dropdown-toggle {
  377. color: #fff;
  378. background-color: #555;
  379. background-image: none;
  380. border-color: #4d4d4d;
  381. }
  382. .btn-check:checked+.btn-light:focus, .btn-check:active+.btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show>.btn-light.dropdown-toggle:focus,
  383. .btn-check:focus+.btn-light, .btn-light:focus {
  384. box-shadow: none;
  385. }
  386. .btn-group>.btn:not(:last-of-type) {
  387. border-top-right-radius: 0;
  388. border-bottom-right-radius: 0;
  389. }
  390. .badge.bg-info > a,
  391. .badge.bg-danger > a {
  392. color: #fff !important;
  393. text-decoration: none;
  394. }