the old "www/layout/<admin/frontend>/<template name>/..." layout is deprecated. new layout: www/layout/<admin|frontend>/<cache/css/images/javascript>/ The layout/<admin/frontend> is symlinked to www/<admin|frontend>/layout templates and lang are moved to includes www/includes/template/<admin/frontend> www/includes/lang/<admin/frontend> and no longer symlinked to any public facing folders The language po files have already been moved to 4dev/lang/<admin|frontend>/
89 lines
1.6 KiB
CSS
89 lines
1.6 KiB
CSS
.qq-uploader {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.qq-upload-button {
|
|
display: block; /* or inline-block */
|
|
width: 105px;
|
|
padding: 7px 0;
|
|
text-align: center;
|
|
background: #880000;
|
|
border-bottom: 1px solid #ddd;
|
|
color: #fff;
|
|
}
|
|
.qq-upload-button-hover {
|
|
background: #cc0000;
|
|
}
|
|
.qq-upload-button-focus {
|
|
outline: 1px dotted black;
|
|
}
|
|
|
|
.qq-upload-drop-area {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 70px;
|
|
z-index: 2;
|
|
background: #FF9797;
|
|
text-align: center;
|
|
}
|
|
.qq-upload-drop-area span {
|
|
display: block;
|
|
position: absolute;
|
|
top: 50%;
|
|
width: 100%;
|
|
margin-top: -8px;
|
|
font-size: 16px;
|
|
}
|
|
.qq-upload-drop-area-active {
|
|
background:
|
|
#FF7171;
|
|
}
|
|
|
|
.qq-upload-list {
|
|
margin:
|
|
15px 35px;
|
|
padding: 0;
|
|
list-style: disc;
|
|
}
|
|
.qq-upload-list li {
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: 15px;
|
|
font-size: 12px;
|
|
}
|
|
.qq-upload-file, .qq-upload-spinner, .qq-upload-size, .qq-upload-cancel, .qq-upload-failed-text {
|
|
margin-right: 7px;
|
|
}
|
|
|
|
.qq-upload-file {
|
|
}
|
|
.qq-upload-spinner {
|
|
display: inline-block;
|
|
/*background: url("loading.gif");*/
|
|
width: 15px;
|
|
height: 15px;
|
|
vertical-align: text-bottom;
|
|
/* non gif css rotate */
|
|
background: rgba(255, 255, 255, 0.6);
|
|
border: 2px solid rgba(255, 255, 255, 0.25);
|
|
border-left-color: rgba(102, 102, 102 ,1);
|
|
border-right-color: rgba(102, 102, 102 ,1);
|
|
border-radius: 50%;
|
|
animation: rotate 600ms infinite linear;
|
|
}
|
|
|
|
.qq-upload-size, .qq-upload-cancel {
|
|
font-size: 11px;
|
|
}
|
|
|
|
.qq-upload-failed-text {
|
|
display: none;
|
|
}
|
|
.qq-upload-fail .qq-upload-failed-text {
|
|
display: inline;
|
|
}
|