overleaf/services/web/frontend/stylesheets/components/fineupload.less

168 lines
3.6 KiB
Text
Raw Normal View History

2014-06-16 06:30:54 -04:00
/*
* Original version: 1.0 © 2010 Andrew Valums ( andrew(at)valums.com )
* Current Maintainer (2.0+): 2012, Ray Nicholus ( fineuploader(at)garstasio.com )
*
* Licensed under MIT license, GNU GPL 2 or later, GNU LGPL 2 or later, see license.txt.
*/
2017-11-21 11:21:58 -05:00
.qq-uploader-selector {
position: relative;
width: 100%;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-uploader-selector {
text-align: center;
border: 1px dashed #666;
border-radius: 6px;
vertical-align: middle;
.help {
margin-top: 6px;
}
min-height: 300px;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
/*.qq-upload-button-selector {
2014-06-16 06:30:54 -04:00
display: block;
width: 105px;
padding: 7px 0;
text-align: center;
background: #880000;
border-bottom: 1px solid #DDD;
color: #FFF;
}
2017-11-21 11:21:58 -05:00
.qq-upload-button-hover-selector {
2014-06-16 06:30:54 -04:00
background: #CC0000;
}
2017-11-21 11:21:58 -05:00
.qq-upload-button-focus-selector {
2014-06-16 06:30:54 -04:00
outline: 1px dotted #000000;
}*/
.qq-upload-drop-area-selector,
.qq-upload-extra-drop-area-selector {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
min-height: 30px;
z-index: 2;
background: @orange;
text-align: center;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-drop-area-selector span {
display: block;
position: absolute;
top: 50%;
width: 100%;
margin-top: -12px;
font-size: 16px;
color: white;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-extra-drop-area-selector {
position: relative;
margin-top: 50px;
font-size: 16px;
padding-top: 30px;
height: 20px;
min-height: 40px;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-drop-area-active-selector {
background: darken(@orange, 15%);
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-list-selector {
margin: 0;
padding: 0;
list-style: none;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-list-selector li {
margin: 0;
margin-top: 10px;
padding: 9px;
line-height: 15px;
font-size: 16px;
background-color: @gray-lightest;
}
.qq-upload-file-selector,
.qq-upload-spinner-selector,
.qq-upload-size-selector,
.qq-upload-cancel-selector,
.qq-upload-retry-selector,
.qq-upload-failed-text-selector,
.qq-upload-finished-selector,
.qq-upload-delete-selector {
margin-right: 12px;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-file-selector {
word-break: break-word;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-spinner-selector {
display: inline-block;
width: 15px;
height: 15px;
vertical-align: text-bottom;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-finished-selector {
display: none;
width: 15px;
height: 15px;
vertical-align: text-bottom;
2014-06-16 06:30:54 -04:00
}
.qq-upload-retry-selector,
.qq-upload-delete-selector {
display: none;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-retryable-selector .qq-upload-retry-selector {
display: inline;
2014-06-16 06:30:54 -04:00
}
.qq-upload-size-selector,
.qq-upload-cancel-selector,
.qq-upload-retry-selector,
.qq-upload-delete-selector {
font-size: 12px;
font-weight: normal;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-failed-text-selector {
display: none;
font-style: italic;
font-weight: bold;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-failed-icon-selector {
display: none;
width: 15px;
height: 15px;
vertical-align: text-bottom;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-fail-selector .qq-upload-failed-text-selector {
display: inline;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-retrying-selector .qq-upload-failed-text-selector {
display: inline;
color: #d60000;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-list-selector li.qq-upload-success-selector {
background-color: @green;
color: #ffffff;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-upload-list-selector li.qq-upload-fail-selector {
background-color: @red;
color: #ffffff;
2014-06-16 06:30:54 -04:00
}
2017-11-21 11:21:58 -05:00
.qq-progress-bar-selector {
width: 0%;
height: @line-height-computed;
margin-bottom: @line-height-computed / 2;
font-size: @font-size-small;
line-height: @line-height-computed;
color: @progress-bar-color;
text-align: center;
background-color: @progress-bar-info-bg;
.box-shadow(inset 0 -1px 0 rgba(0, 0, 0, 0.15));
.transition(width 0.6s ease);
border-radius: @border-radius-base 0 0 @border-radius-base;
2017-11-22 10:52:02 -05:00
}
a.qq-btn {
&:hover {
cursor: pointer !important;
}
2014-06-16 06:30:54 -04:00
}