mailcow.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #maxmsgsize { min-width: 80px; }
  2. #slider1 .slider-selection {
  3. background: #FFD700;
  4. }
  5. #slider1 .slider-track-high {
  6. background: #FF4500;
  7. }
  8. #slider1 .slider-track-low {
  9. background: #66CD00;
  10. }
  11. .striped:nth-child(odd) {
  12. background-color: #fff;
  13. }
  14. .striped:nth-child(even) {
  15. background-color: #fafafa;
  16. border:1px solid white;
  17. }
  18. .btn {
  19. text-transform: none;
  20. }
  21. .glyphicon-spin {
  22. font-size:12px;
  23. -webkit-animation: spin 2000ms infinite linear;
  24. animation: spin 2000ms infinite linear;
  25. }
  26. @-webkit-keyframes spin {
  27. 0% {
  28. -webkit-transform: rotate(0deg);
  29. transform: rotate(0deg);
  30. }
  31. 100% {
  32. -webkit-transform: rotate(359deg);
  33. transform: rotate(359deg);
  34. }
  35. }
  36. @keyframes spin {
  37. 0% {
  38. -webkit-transform: rotate(0deg);
  39. transform: rotate(0deg);
  40. }
  41. 100% {
  42. -webkit-transform: rotate(359deg);
  43. transform: rotate(359deg);
  44. }
  45. }
  46. pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}
  47. .footable-sortable {
  48. -webkit-user-select: none;
  49. -moz-user-select: none;
  50. -ms-user-select: none;
  51. user-select: none;
  52. }
  53. /* Fix modal moving content left */
  54. body.modal-open {
  55. overflow: inherit;
  56. padding-right: inherit !important;
  57. }
  58. #mailcow-alert {
  59. position: fixed;
  60. bottom: 8px;
  61. right: 25px;
  62. min-width: 350px;
  63. max-width: 550px;
  64. z-index: 2000;
  65. }