74 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| #maxmsgsize { min-width: 80px; }
 | |
| #slider1 .slider-selection {
 | |
| 	background: #FFD700;
 | |
| }
 | |
| #slider1 .slider-track-high {
 | |
| 	background: #FF4500;
 | |
| }
 | |
| #slider1 .slider-track-low {
 | |
| 	background: #66CD00;
 | |
| }
 | |
| .striped:nth-child(odd) {
 | |
|     background-color: #fff;
 | |
| }
 | |
| .striped:nth-child(even) {
 | |
|     background-color: #fafafa;
 | |
| 	border:1px solid white;
 | |
| }
 | |
| .btn {
 | |
|    text-transform: none;
 | |
| }
 | |
| .glyphicon-spin {
 | |
|     font-size:12px;
 | |
|     -webkit-animation: spin 2000ms infinite linear;
 | |
|     animation: spin 2000ms infinite linear;
 | |
| }
 | |
| @-webkit-keyframes spin {
 | |
|     0% {
 | |
|         -webkit-transform: rotate(0deg);
 | |
|         transform: rotate(0deg);
 | |
|     }
 | |
|     100% {
 | |
|         -webkit-transform: rotate(359deg);
 | |
|         transform: rotate(359deg);
 | |
|     }
 | |
| }
 | |
| @keyframes spin {
 | |
|     0% {
 | |
|         -webkit-transform: rotate(0deg);
 | |
|         transform: rotate(0deg);
 | |
|     }
 | |
|     100% {
 | |
|         -webkit-transform: rotate(359deg);
 | |
|         transform: rotate(359deg);
 | |
|     }
 | |
| }
 | |
| pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}
 | |
| .footable-sortable {
 | |
| 	 -webkit-user-select: none;  
 | |
|   -moz-user-select: none;    
 | |
|   -ms-user-select: none;      
 | |
|   user-select: none;
 | |
| }
 | |
| /* Fix modal moving content left */
 | |
| body.modal-open {
 | |
|   overflow: inherit;
 | |
|   padding-right: inherit !important;
 | |
| }
 | |
| #mailcow-alert {
 | |
|   position: fixed;
 | |
|   bottom: 8px;
 | |
|   right: 25px;
 | |
|   min-width: 350px;
 | |
|   max-width: 550px;
 | |
|   z-index: 2000;
 | |
| }
 | |
| .mass-actions-mailbox {
 | |
|   user-select: none;
 | |
|   padding:10px 0 10px 10px;
 | |
| }
 | |
| .mass-actions-admin {
 | |
|   user-select: none;
 | |
|   padding:10px 0 10px 0;
 | |
| }
 |