mailcow.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
  7. }
  8. @font-face {
  9. font-family: 'Source Sans Pro';
  10. font-style: normal;
  11. font-weight: 400;
  12. src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('../fonts/SourceSansPro-Regular.woff2') format('woff2');
  13. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
  14. }
  15. @font-face {
  16. font-family: 'Source Sans Pro';
  17. font-style: normal;
  18. font-weight: 700;
  19. src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('../fonts/SourceSansPro-Bold.woff2') format('woff2');
  20. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
  21. }
  22. @font-face {
  23. font-family: 'Source Sans Pro';
  24. font-style: italic;
  25. font-weight: 700;
  26. src: local('Source Sans Pro Bold Italic'), local('SourceSansPro-BoldIt'), url('../fonts/SourceSansPro-BoldIt.woff2') format('woff2');
  27. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
  28. }
  29. #maxmsgsize { min-width: 80px; }
  30. #slider1 .slider-selection {
  31. background: #FFD700;
  32. }
  33. #slider1 .slider-track-high {
  34. background: #FF4500;
  35. }
  36. #slider1 .slider-track-low {
  37. background: #66CD00;
  38. }
  39. .striped:nth-child(odd) {
  40. background-color: #fff;
  41. }
  42. .striped:nth-child(even) {
  43. background-color: #fafafa;
  44. border:1px solid white;
  45. }
  46. .btn {
  47. text-transform: none;
  48. }
  49. .glyphicon-spin {
  50. font-size:12px;
  51. -webkit-animation: spin 2000ms infinite linear;
  52. animation: spin 2000ms infinite linear;
  53. }
  54. @-webkit-keyframes spin {
  55. 0% {
  56. -webkit-transform: rotate(0deg);
  57. transform: rotate(0deg);
  58. }
  59. 100% {
  60. -webkit-transform: rotate(359deg);
  61. transform: rotate(359deg);
  62. }
  63. }
  64. @keyframes spin {
  65. 0% {
  66. -webkit-transform: rotate(0deg);
  67. transform: rotate(0deg);
  68. }
  69. 100% {
  70. -webkit-transform: rotate(359deg);
  71. transform: rotate(359deg);
  72. }
  73. }
  74. pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}
  75. .footable-sortable {
  76. -webkit-user-select: none;
  77. -moz-user-select: none;
  78. -ms-user-select: none;
  79. user-select: none;
  80. }
  81. /* Fix modal moving content left */
  82. body.modal-open {
  83. overflow: inherit;
  84. padding-right: inherit !important;
  85. }
  86. body {
  87. font-size:11pt;
  88. }
  89. #mailcow-alert {
  90. position: fixed;
  91. bottom: 8px;
  92. right: 25px;
  93. min-width: 350px;
  94. max-width: 550px;
  95. z-index: 2000;
  96. }
  97. .input-group-sm .btn { margin-top: 0px !important }
  98. legend {
  99. -webkit-user-select: none;
  100. -moz-user-select: none;
  101. -ms-user-select: none
  102. -o-user-select: none;
  103. user-select: none;
  104. }
  105. .navbar .navbar-brand {
  106. padding-top: 5px;
  107. }
  108. .navbar .navbar-brand img {
  109. height: 40px;
  110. }
  111. .mailcow-logo img {
  112. max-width: 250px;
  113. }
  114. .lang-link-disabled a {
  115. pointer-events: none;
  116. }
  117. .lang-link-disabled {
  118. cursor: not-allowed;
  119. }
  120. .dkim-label {
  121. margin: 0 0 2px !important;
  122. }
  123. .overlay {
  124. background: #fff;
  125. position: absolute;
  126. z-index: 10000;
  127. top: 0; right: 0; bottom: 0; left: 0;
  128. opacity: 0.7;
  129. }
  130. nav .glyphicon {
  131. font-size: 12px !important;
  132. }
  133. .logged-in-as {
  134. border-left: 1px solid #E7E7E7;
  135. }
  136. #top {
  137. padding-top: 70px;
  138. }