mailcow.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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: 300;
  23. src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url('../fonts/SourceSansPro-Italic.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. .textarea-code {
  46. font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
  47. background:transparent !important;
  48. }
  49. .navbar-nav {
  50. margin: 0;
  51. }
  52. .navbar-fixed-bottom .navbar-collapse,
  53. .navbar-fixed-top .navbar-collapse {
  54. max-height: 1000px
  55. }
  56. .glyphicon-spin {
  57. font-size:12px;
  58. -webkit-animation: spin 2000ms infinite linear;
  59. animation: spin 2000ms infinite linear;
  60. }
  61. @-webkit-keyframes spin {
  62. 0% {
  63. -webkit-transform: rotate(0deg);
  64. transform: rotate(0deg);
  65. }
  66. 100% {
  67. -webkit-transform: rotate(359deg);
  68. transform: rotate(359deg);
  69. }
  70. }
  71. @keyframes spin {
  72. 0% {
  73. -webkit-transform: rotate(0deg);
  74. transform: rotate(0deg);
  75. }
  76. 100% {
  77. -webkit-transform: rotate(359deg);
  78. transform: rotate(359deg);
  79. }
  80. }
  81. pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}
  82. .footable-sortable {
  83. -webkit-user-select: none;
  84. -moz-user-select: none;
  85. -ms-user-select: none;
  86. user-select: none;
  87. }
  88. /* Fix modal moving content left */
  89. body.modal-open {
  90. overflow: inherit;
  91. padding-right: inherit !important;
  92. }
  93. body {
  94. font-size:11pt;
  95. }
  96. #mailcow-alert {
  97. position: fixed;
  98. bottom: 8px;
  99. right: 25px;
  100. min-width: 350px;
  101. max-width: 550px;
  102. z-index: 2000;
  103. }
  104. .input-group-sm .btn { margin-top: 0px !important }
  105. legend {
  106. -webkit-user-select: none;
  107. -moz-user-select: none;
  108. -ms-user-select: none
  109. -o-user-select: none;
  110. user-select: none;
  111. font-size: 12pt;
  112. }
  113. .navbar .navbar-brand {
  114. padding-top: 5px;
  115. }
  116. .navbar .navbar-brand img {
  117. height: 40px;
  118. }
  119. .mailcow-logo img {
  120. max-width: 250px;
  121. }
  122. .lang-link-disabled a {
  123. pointer-events: none;
  124. }
  125. .lang-link-disabled {
  126. cursor: not-allowed;
  127. }
  128. .dkim-label {
  129. margin: 0 0 2px !important;
  130. }
  131. .overlay {
  132. background: #fff;
  133. position: absolute;
  134. z-index: 10000;
  135. top: 0; right: 0; bottom: 0; left: 0;
  136. opacity: 0.7;
  137. }
  138. nav .glyphicon {
  139. font-size: 12px !important;
  140. }
  141. #top {
  142. padding-top: 70px;
  143. }
  144. .bootstrap-select.btn-group .no-results {
  145. display: none;
  146. }
  147. .dropdown-desc {
  148. display: block;
  149. padding: 3px 10px;
  150. clear: both;
  151. font-weight: bold;
  152. color: #5a5a5a;
  153. white-space: nowrap;
  154. }
  155. .haveibeenpwned {
  156. cursor: pointer;
  157. -webkit-user-select: none;
  158. -moz-user-select: none;
  159. -ms-user-select: none;
  160. user-select: none;
  161. }
  162. .full-width-select {
  163. width: 100%!important;
  164. }