ant-design/style/components/upload.less

230 lines
4.0 KiB
Plaintext
Raw Normal View History

2015-08-20 16:55:42 +08:00
@upload-prefix-cls: ant-upload;
2015-08-08 23:37:35 +08:00
2015-08-20 16:55:42 +08:00
.@{upload-prefix-cls} {
> span {
display: block;
width: 100%;
}
2015-11-26 19:32:55 +08:00
input[type="file"] {
cursor: pointer;
}
2015-12-12 15:25:54 +08:00
&&-select {
display: inline-block;
}
2015-12-12 15:25:54 +08:00
&&-drag {
border: 1px dashed @border-color-base;
2015-11-13 16:09:39 +08:00
transition: border-color 0.3s ease;
cursor: pointer;
2015-08-08 23:37:35 +08:00
border-radius: @border-radius-base;
text-align: center;
width: 100%;
2015-11-13 16:09:39 +08:00
height: 100%;
position: relative;
2015-11-11 00:28:05 +08:00
&.@{upload-prefix-cls}-drag-hover {
2015-11-13 16:09:39 +08:00
border: 2px dashed tint(@primary-color, 20%);
2015-11-11 00:28:05 +08:00
}
> span {
display: table;
2015-10-31 13:27:58 +08:00
height: 100%;
}
2015-08-20 16:55:42 +08:00
.@{upload-prefix-cls}-drag-container {
display: table-cell;
vertical-align: middle;
}
&:hover {
border-color: tint(@primary-color, 20%);
2015-10-31 13:27:58 +08:00
}
2015-08-20 16:55:42 +08:00
p.@{upload-prefix-cls}-drag-icon {
2015-08-08 23:37:35 +08:00
.anticon {
font-size: 80px;
2015-11-14 14:09:08 +08:00
margin-top: -5px;
color: tint(@primary-color, 20%);
2015-08-08 23:37:35 +08:00
}
height: 60px;
margin-bottom: 24px;
2015-08-08 23:37:35 +08:00
}
2015-08-20 16:55:42 +08:00
p.@{upload-prefix-cls}-text {
2015-08-08 23:37:35 +08:00
font-size: 14px;
}
2015-08-20 16:55:42 +08:00
p.@{upload-prefix-cls}-hint {
2015-08-08 23:37:35 +08:00
font-size: 12px;
color: #999;
2015-08-08 23:37:35 +08:00
}
.anticon-plus {
2015-08-08 23:37:35 +08:00
font-size: 30px;
transition: all 0.3s ease;
color: #d9d9d9;
&:hover {
color: #999;
}
2015-08-08 23:37:35 +08:00
}
&:hover .anticon-plus {
color: #999;
2015-08-08 23:37:35 +08:00
}
}
}
2015-08-08 23:37:35 +08:00
2015-08-20 16:55:42 +08:00
.@{upload-prefix-cls}-list {
2015-12-12 15:25:54 +08:00
&-item {
overflow: hidden;
2015-10-31 13:27:58 +08:00
margin-top: 8px;
2015-12-12 15:25:54 +08:00
font-size: 12px;
2015-11-04 12:00:49 +08:00
2015-12-12 15:25:54 +08:00
&-info {
2015-11-04 12:00:49 +08:00
height: 22px;
line-height: 22px;
padding: 0 4px;
transition: background-color 0.3s ease;
2015-10-31 13:27:58 +08:00
.anticon-paper-clip {
2015-11-04 12:00:49 +08:00
margin-right: 4px;
2015-10-31 13:27:58 +08:00
font-size: 12px;
2015-11-04 12:00:49 +08:00
color: #999;
2015-10-31 13:27:58 +08:00
}
.anticon-cross {
2015-11-04 12:00:49 +08:00
.iconfont-size-under-12px(10px);
transition: all 0.3s ease;
opacity: 0;
cursor: pointer;
2015-10-31 13:27:58 +08:00
float: right;
color: #999;
2015-11-18 16:45:18 +08:00
line-height: 22px;
&:hover {
color: #666;
}
}
2015-08-08 23:37:35 +08:00
}
2015-10-31 13:27:58 +08:00
2015-12-12 15:25:54 +08:00
&:hover &-info {
background-color: tint(@primary-color, 90%);
}
&:hover .anticon-cross {
opacity: 1;
}
2015-12-14 11:56:00 +08:00
&-error,
&-error .anticon-paper-clip {
color: @error-color;
}
&-error .anticon-cross {
opacity: 1;
}
2015-12-12 15:25:54 +08:00
&-progress {
2015-10-31 13:27:58 +08:00
padding: 0 8px 0 20px;
margin-top: -2px;
margin-bottom: 1px;
font-size: 12px;
.ant-progress-line-inner {
vertical-align: middle;
}
}
2015-12-12 15:25:54 +08:00
}
&-picture &-item {
padding: 8px;
border-radius: @border-radius-base;
border: 1px solid @border-color-base;
height: 66px;
position: relative;
&:hover {
background: transparent;
}
}
2015-10-31 13:27:58 +08:00
2015-12-12 15:25:54 +08:00
&-picture &-item-info {
padding: 0;
2015-08-08 23:37:35 +08:00
}
2015-12-12 15:25:54 +08:00
&-picture &-item:hover &-item-info {
background: transparent;
}
&-picture &-item-uploading {
border-style: dashed;
}
&-picture &-item-thumbnail {
width: 48px;
height: 48px;
display: inline-block;
overflow: hidden;
2016-01-02 21:21:29 +08:00
vertical-align: middle;
2015-12-12 15:25:54 +08:00
}
&-picture &-item-thumbnail img {
width: 48px;
height: 48px;
display: block;
}
&-picture &-item-thumbnail.anticon:before {
line-height: 48px;
font-size: 24px;
color: #999;
}
&-picture &-item-name {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin: 0 0 0 8px;
line-height: 42px;
transition: all 0.3s ease;
}
&-picture &-item-uploading &-item-name {
line-height: 28px;
}
&-picture &-item-progress {
padding-left: 56px;
margin-top: 0;
}
2015-11-04 12:00:49 +08:00
2015-12-12 15:25:54 +08:00
&-picture .anticon-cross {
position: absolute;
right: 8px;
top: 8px;
line-height: 1;
}
2015-11-04 12:00:49 +08:00
2015-08-20 16:55:42 +08:00
.@{upload-prefix-cls}-success-icon {
color: @success-color;
font-weight: bold;
}
2015-08-21 17:12:42 +08:00
2015-08-21 17:37:54 +08:00
.@{upload-prefix-cls}-margin-top-enter {
2015-08-24 12:27:13 +08:00
animation: uploadMarginTopIn .3s @ease-in-out-circ;
2015-08-21 17:37:54 +08:00
}
.@{upload-prefix-cls}-margin-top-leave {
2015-08-24 12:27:13 +08:00
animation: uploadMarginTopOut .3s @ease-in-out-circ;
2015-08-21 17:12:42 +08:00
}
2015-11-26 19:32:55 +08:00
}
2015-08-21 17:12:42 +08:00
2015-11-26 19:32:55 +08:00
@keyframes uploadMarginTopIn {
from {
margin-top: -25px;
opacity: 0;
2015-08-21 17:37:54 +08:00
}
2015-11-26 19:32:55 +08:00
}
2015-08-21 17:37:54 +08:00
2015-11-26 19:32:55 +08:00
@keyframes uploadMarginTopOut {
to {
margin-top: -25px;
opacity: 0;
2015-08-21 17:12:42 +08:00
}
}