008-mailcow.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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. #maxmsgsize { min-width: 80px; }
  34. #slider1 .slider-selection {
  35. background: #FFD700;
  36. }
  37. #slider1 .slider-track-high {
  38. background: #FF4500;
  39. }
  40. #slider1 .slider-track-low {
  41. background: #66CD00;
  42. }
  43. .striped:nth-child(odd) {
  44. background-color: #fff;
  45. }
  46. .striped:nth-child(even) {
  47. background-color: #fafafa;
  48. border:1px solid white;
  49. }
  50. .btn {
  51. text-transform: none;
  52. }
  53. .btn * {
  54. pointer-events: none;
  55. }
  56. .textarea-code {
  57. font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
  58. background:transparent !important;
  59. }
  60. .navbar-nav {
  61. margin: 0;
  62. }
  63. .navbar-fixed-bottom .navbar-collapse,
  64. .navbar-fixed-top .navbar-collapse {
  65. max-height: 1000px
  66. }
  67. .bi {
  68. display: inline-block;
  69. font-size: 12pt;
  70. }
  71. .btn .bi {
  72. display: inline-block;
  73. font-size: inherit;
  74. }
  75. .icon-spin {
  76. animation-name: spin;
  77. animation-duration: 2000ms;
  78. animation-iteration-count: infinite;
  79. animation-timing-function: linear;
  80. -webkit-animation: spin 2000ms infinite linear;
  81. }
  82. .dropdown-menu {
  83. font-size: 0.9rem;
  84. }
  85. @-webkit-keyframes spin {
  86. 0% {
  87. -webkit-transform: rotate(0deg);
  88. transform: rotate(0deg);
  89. }
  90. 100% {
  91. -webkit-transform: rotate(359deg);
  92. transform: rotate(359deg);
  93. }
  94. }
  95. @keyframes spin {
  96. 0% {
  97. -webkit-transform: rotate(0deg);
  98. transform: rotate(0deg);
  99. }
  100. 100% {
  101. -webkit-transform: rotate(359deg);
  102. transform: rotate(359deg);
  103. }
  104. }
  105. pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}
  106. .footable-sortable {
  107. -webkit-user-select: none;
  108. -moz-user-select: none;
  109. -ms-user-select: none;
  110. user-select: none;
  111. }
  112. /* Fix modal moving content left */
  113. body.modal-open {
  114. overflow: inherit;
  115. padding-right: inherit !important;
  116. }
  117. body {
  118. font-family: "Noto Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  119. font-size: 10.5pt;
  120. line-height: 1.5;
  121. }
  122. html {
  123. font-family: "Noto Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  124. font-size: 10.5pt;
  125. line-height: 1.5;
  126. }
  127. #mailcow-alert {
  128. position: fixed;
  129. bottom: 8px;
  130. right: 25px;
  131. min-width: 350px;
  132. max-width: 550px;
  133. z-index: 2000;
  134. }
  135. .input-group-sm .btn { margin-top: 0 !important }
  136. legend {
  137. -webkit-user-select: none;
  138. -moz-user-select: none;
  139. -ms-user-select: none;
  140. -o-user-select: none;
  141. user-select: none;
  142. font-size: 1.2rem;
  143. }
  144. .navbar .navbar-brand {
  145. padding-top: 5px;
  146. }
  147. .navbar .navbar-brand img {
  148. height: 40px;
  149. }
  150. .mailcow-logo img {
  151. max-width: 250px;
  152. }
  153. .lang-link-disabled a {
  154. pointer-events: none;
  155. }
  156. .lang-link-disabled {
  157. cursor: not-allowed;
  158. }
  159. .overlay {
  160. background: #fff;
  161. position: absolute;
  162. z-index: 10000;
  163. top: 0; right: 0; bottom: 0; left: 0;
  164. opacity: 0.7;
  165. }
  166. #top {
  167. padding-top: 70px;
  168. }
  169. .bootstrap-select.btn-group .no-results {
  170. display: none;
  171. }
  172. .dropdown-desc {
  173. display: block;
  174. padding: 3px 10px;
  175. clear: both;
  176. font-weight: bold;
  177. color: #5a5a5a;
  178. white-space: nowrap;
  179. }
  180. .haveibeenpwned {
  181. cursor: pointer;
  182. -webkit-user-select: none;
  183. -moz-user-select: none;
  184. -ms-user-select: none;
  185. user-select: none;
  186. }
  187. .full-width-select {
  188. width: 100%!important;
  189. }
  190. .tooltip {
  191. font-family: inherit;
  192. font-size: 0.8rem;
  193. }
  194. .progress-bar {
  195. font-size: 0.8rem;
  196. line-height: 14px;
  197. }
  198. .footer {
  199. margin-top: 27px;
  200. margin-bottom: 20px;
  201. color: #959595;
  202. display: flex;
  203. flex-direction: column;
  204. }
  205. .footer .version {
  206. margin-left: auto;
  207. margin-top: 20px;
  208. }
  209. .slave-info {
  210. padding: 15px 0px 15px 15px;
  211. font-weight: bold;
  212. }
  213. .alert-hr {
  214. margin:3px 0px;
  215. border-bottom:1px solid #f5f5f5!important;
  216. opacity: 0.3;
  217. }
  218. .btn-input-missing,
  219. .btn-input-missing:hover,
  220. .btn-input-missing:active,
  221. .btn-input-missing:focus,
  222. .btn-input-missing:active:hover,
  223. .btn-input-missing:active:focus {
  224. color: #000 !important;
  225. background-color: #ff4136;
  226. border-color: #ff291c;
  227. }
  228. table.footable>tbody>tr.footable-empty>td {
  229. font-style:italic;
  230. font-size: 1rem;
  231. }
  232. table>tbody>tr>td>span.footable-toggle {
  233. opacity: 0.75;
  234. }
  235. .navbar-nav > li {
  236. font-size: 1rem !important;
  237. }
  238. .dropdown-menu > li > a {
  239. font-size: 1rem !important;
  240. }
  241. .label {
  242. font-size:inherit;
  243. }
  244. [class^="bi-"]::before, [class*=" bi-"]::before {
  245. vertical-align: -0.2em !important;
  246. }
  247. legend > [class^="bi-"]::before, legend > [class*=" bi-"]::before {
  248. vertical-align: 0em !important;
  249. }
  250. code {
  251. font-size: inherit;
  252. }
  253. .bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  254. margin-top: 0px;
  255. }
  256. .flag-icon {
  257. margin-right: 5px;
  258. }
  259. .list-group-item.webauthn-authenticator-selection,
  260. .list-group-item.totp-authenticator-selection,
  261. .list-group-item.yubi_otp-authenticator-selection {
  262. border-radius: 0px !important;
  263. }
  264. .pending-tfa-collapse {
  265. padding: 10px;
  266. background: #fbfbfb;
  267. border: 1px solid #ededed;
  268. }
  269. .tag-box {
  270. display: flex;
  271. flex-wrap: wrap;
  272. height: auto;
  273. }
  274. .tag-badge {
  275. transition: 200ms linear;
  276. margin-top: 5px;
  277. margin-bottom: 5px;
  278. margin-left: 2px;
  279. margin-right: 2px;
  280. }
  281. .tag-badge.btn-badge {
  282. cursor: pointer;
  283. }
  284. .tag-badge .bi {
  285. font-size: 12px;
  286. }
  287. .tag-badge.btn-badge:hover {
  288. filter: brightness(0.9);
  289. }
  290. .tag-input {
  291. margin-left: 10px;
  292. border: 0;
  293. flex: 1;
  294. height: 24px;
  295. min-width: 150px;
  296. }
  297. .tag-input:focus {
  298. outline: none;
  299. }
  300. .tag-add {
  301. padding: 0 5px 0 5px;
  302. align-items: center;
  303. display: inline-flex;
  304. }