1
0

mailcow.css 3.5 KB

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