forked from Coded/SIPRP
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							69 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
	
	
							69 lines
						
					
					
						
							1.3 KiB
						
					
					
				@charset "UTF-8";
 | 
						|
/*
 | 
						|
 * jQuery File Upload UI Plugin CSS 8.8.1
 | 
						|
 * https://github.com/blueimp/jQuery-File-Upload
 | 
						|
 *
 | 
						|
 * Copyright 2010, Sebastian Tschan
 | 
						|
 * https://blueimp.net
 | 
						|
 *
 | 
						|
 * Licensed under the MIT license:
 | 
						|
 * http://www.opensource.org/licenses/MIT
 | 
						|
 */
 | 
						|
 | 
						|
.fileinput-button {
 | 
						|
  position: relative;
 | 
						|
  overflow: hidden;
 | 
						|
}
 | 
						|
.fileinput-button input {
 | 
						|
  position: absolute;
 | 
						|
  top: 0;
 | 
						|
  right: 0;
 | 
						|
  margin: 0;
 | 
						|
  opacity: 0;
 | 
						|
  filter: alpha(opacity=0);
 | 
						|
  transform: translate(-300px, 0) scale(4);
 | 
						|
  font-size: 23px;
 | 
						|
  direction: ltr;
 | 
						|
  cursor: pointer;
 | 
						|
}
 | 
						|
.fileupload-buttonbar .btn,
 | 
						|
.fileupload-buttonbar .toggle {
 | 
						|
  margin-bottom: 5px;
 | 
						|
}
 | 
						|
.progress-animated .progress-bar,
 | 
						|
.progress-animated .bar {
 | 
						|
  background: url(../img/progressbar.gif) !important;
 | 
						|
  filter: none;
 | 
						|
}
 | 
						|
.fileupload-loading {
 | 
						|
  float: right;
 | 
						|
  width: 32px;
 | 
						|
  height: 32px;
 | 
						|
  background: url(../img/loading.gif) center no-repeat;
 | 
						|
  background-size: contain;
 | 
						|
  display: none;
 | 
						|
}
 | 
						|
.fileupload-processing .fileupload-loading {
 | 
						|
  display: block;
 | 
						|
}
 | 
						|
.files audio,
 | 
						|
.files video {
 | 
						|
  max-width: 300px;
 | 
						|
}
 | 
						|
 | 
						|
@media (max-width: 767px) {
 | 
						|
  .fileupload-buttonbar .toggle,
 | 
						|
  .files .toggle,
 | 
						|
  .files .btn span {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
  .files .name {
 | 
						|
    width: 80px;
 | 
						|
    word-wrap: break-word;
 | 
						|
  }
 | 
						|
  .files audio,
 | 
						|
  .files video {
 | 
						|
    max-width: 80px;
 | 
						|
  }
 | 
						|
}
 |