mailcow.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. @font-face {
  2. font-family: 'Source Sans Pro';
  3. font-style: normal;
  4. font-weight: 300;
  5. src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url('../fonts/SourceSansPro-Light.woff2') format('woff2');
  6. }
  7. @font-face {
  8. font-family: 'Source Sans Pro';
  9. font-style: normal;
  10. font-weight: 400;
  11. src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('../fonts/SourceSansPro-Regular.woff2') format('woff2');
  12. }
  13. @font-face {
  14. font-family: 'Source Sans Pro';
  15. font-style: normal;
  16. font-weight: 700;
  17. src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('../fonts/SourceSansPro-Bold.woff2') format('woff2');
  18. }
  19. @font-face {
  20. font-family: 'Source Sans Pro';
  21. font-style: italic;
  22. font-weight: 700;
  23. src: local('Source Sans Pro Bold Italic'), local('SourceSansPro-BoldIt'), url('../fonts/SourceSansPro-BoldIt.woff2') format('woff2');
  24. }
  25. #maxmsgsize { min-width: 80px; }
  26. #slider1 .slider-selection {
  27. background: #FFD700;
  28. }
  29. #slider1 .slider-track-high {
  30. background: #FF4500;
  31. }
  32. #slider1 .slider-track-low {
  33. background: #66CD00;
  34. }
  35. .striped:nth-child(odd) {
  36. background-color: #fff;
  37. }
  38. .striped:nth-child(even) {
  39. background-color: #fafafa;
  40. border:1px solid white;
  41. }
  42. .btn {
  43. text-transform: none;
  44. }
  45. .navbar-nav {
  46. margin: 0;
  47. }
  48. .navbar-fixed-bottom .navbar-collapse,
  49. .navbar-fixed-top .navbar-collapse {
  50. max-height: 1000px
  51. }
  52. .glyphicon-spin {
  53. font-size:12px;
  54. -webkit-animation: spin 2000ms infinite linear;
  55. animation: spin 2000ms infinite linear;
  56. }
  57. @-webkit-keyframes spin {
  58. 0% {
  59. -webkit-transform: rotate(0deg);
  60. transform: rotate(0deg);
  61. }
  62. 100% {
  63. -webkit-transform: rotate(359deg);
  64. transform: rotate(359deg);
  65. }
  66. }
  67. @keyframes spin {
  68. 0% {
  69. -webkit-transform: rotate(0deg);
  70. transform: rotate(0deg);
  71. }
  72. 100% {
  73. -webkit-transform: rotate(359deg);
  74. transform: rotate(359deg);
  75. }
  76. }
  77. pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}
  78. .footable-sortable {
  79. -webkit-user-select: none;
  80. -moz-user-select: none;
  81. -ms-user-select: none;
  82. user-select: none;
  83. }
  84. /* Fix modal moving content left */
  85. body.modal-open {
  86. overflow: inherit;
  87. padding-right: inherit !important;
  88. }
  89. body {
  90. font-size:11pt;
  91. }
  92. #mailcow-alert {
  93. position: fixed;
  94. bottom: 8px;
  95. right: 25px;
  96. min-width: 350px;
  97. max-width: 550px;
  98. z-index: 2000;
  99. }
  100. .input-group-sm .btn { margin-top: 0px !important }
  101. legend {
  102. -webkit-user-select: none;
  103. -moz-user-select: none;
  104. -ms-user-select: none
  105. -o-user-select: none;
  106. user-select: none;
  107. font-size: 12pt;
  108. }
  109. .navbar .navbar-brand {
  110. padding-top: 5px;
  111. }
  112. .navbar .navbar-brand img {
  113. height: 40px;
  114. }
  115. .mailcow-logo img {
  116. max-width: 250px;
  117. }
  118. .lang-link-disabled a {
  119. pointer-events: none;
  120. }
  121. .lang-link-disabled {
  122. cursor: not-allowed;
  123. }
  124. .dkim-label {
  125. margin: 0 0 2px !important;
  126. }
  127. .overlay {
  128. background: #fff;
  129. position: absolute;
  130. z-index: 10000;
  131. top: 0; right: 0; bottom: 0; left: 0;
  132. opacity: 0.7;
  133. }
  134. nav .glyphicon {
  135. font-size: 12px !important;
  136. }
  137. #top {
  138. padding-top: 70px;
  139. }
  140. .bootstrap-select.btn-group .no-results {
  141. display: none;
  142. }
  143. .dropdown-desc {
  144. display: block;
  145. padding: 3px 10px;
  146. clear: both;
  147. font-weight: bold;
  148. color: #5a5a5a;
  149. white-space: nowrap;
  150. }
  151. .haveibeenpwned {
  152. cursor: pointer;
  153. -webkit-user-select: none;
  154. -moz-user-select: none;
  155. -ms-user-select: none;
  156. user-select: none;
  157. }
  158. .full-width-select {
  159. width: 100%!important;
  160. }