ant-design/components/upload/style/index.less

364 lines
6.7 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
2015-08-20 16:55:42 +08:00
@upload-prefix-cls: ant-upload;
2016-01-15 15:56:06 +08:00
@upload-item: ant-upload-list-item;
@upload-pictrue-card-size: 96px;
2015-08-08 23:37:35 +08:00
2015-08-20 16:55:42 +08:00
.@{upload-prefix-cls} {
font-size: @font-size-base;
> span {
display: block;
width: 100%;
2016-01-15 16:44:07 +08:00
outline: none;
}
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;
}
&&-select-picture-card {
border: 1px dashed @border-color-base;
width: @upload-pictrue-card-size;
height: @upload-pictrue-card-size;
padding: 24px 0;
border-radius: @border-radius-base;
background-color: #fbfbfb;
text-align: center;
cursor: pointer;
transition: border-color 0.3s ease;
display: inline-block;
vertical-align: top;
margin-right: 8px;
margin-bottom: 8px;
&:hover {
border-color: @primary-color;
}
}
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;
2016-03-04 17:06:39 +08:00
color: #ccc;
&: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
}
2016-01-15 15:56:06 +08:00
&-picture,
&-picture-card {
.@{upload-item} {
padding: 8px;
border-radius: @border-radius-base;
border: 1px solid @border-color-base;
height: 66px;
position: relative;
&:hover {
background: transparent;
}
}
.@{upload-item}-info {
padding: 0;
}
.@{upload-item}:hover .@{upload-item}-info {
2015-12-12 15:25:54 +08:00
background: transparent;
}
2015-10-31 13:27:58 +08:00
2016-01-15 15:56:06 +08:00
.@{upload-item}-uploading {
border-style: dashed;
}
2015-12-12 15:25:54 +08:00
2016-01-15 15:56:06 +08:00
.@{upload-item}-thumbnail {
width: 48px;
height: 48px;
2016-01-15 16:11:31 +08:00
position: absolute;
top: 8px;
left: 8px;
2016-01-15 15:56:06 +08:00
}
.@{upload-item}-thumbnail img {
width: 48px;
height: 48px;
display: block;
}
2015-12-12 15:25:54 +08:00
2016-01-15 15:56:06 +08:00
.@{upload-item}-thumbnail.anticon:before {
line-height: 48px;
font-size: 24px;
color: #999;
}
.@{upload-item}-name {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin: 0 0 0 8px;
line-height: 42px;
transition: all 0.3s ease;
2016-01-15 16:11:31 +08:00
padding-left: 48px;
padding-right: 8px;
max-width: 100%;
display: inline-block;
box-sizing: border-box;
2016-01-15 15:56:06 +08:00
}
.@{upload-item}-uploading .@{upload-item}-name {
line-height: 28px;
}
.@{upload-item}-progress {
padding-left: 56px;
margin-top: 0;
}
.anticon-cross {
position: absolute;
right: 8px;
top: 8px;
line-height: 1;
}
2015-12-12 15:25:54 +08:00
}
2016-01-15 15:56:06 +08:00
&-picture-card {
2015-12-12 15:25:54 +08:00
display: inline-block;
2016-01-15 15:56:06 +08:00
.@{upload-item} {
display: inline-block;
width: @upload-pictrue-card-size;
height: @upload-pictrue-card-size;
margin: 0 8px 8px 0;
2016-01-15 15:56:06 +08:00
}
2015-12-12 15:25:54 +08:00
2016-01-15 15:56:06 +08:00
.@{upload-item}-info {
height: 100%;
position: relative;
2015-12-12 15:25:54 +08:00
2016-01-15 15:56:06 +08:00
&:before {
content: ' ';
position: absolute;
2016-01-15 16:11:31 +08:00
z-index: 1;
2016-01-15 15:56:06 +08:00
background-color: #808080;
transition: all 0.3s ease;
opacity: 0;
width: 100%;
height: 100%;
2016-01-15 15:56:06 +08:00
}
2015-12-12 15:25:54 +08:00
2016-01-15 15:56:06 +08:00
.anticon-eye-o,
.anticon-delete {
position: absolute;
left: 50%;
top: 50%;
2016-01-15 16:11:31 +08:00
z-index: 10;
-webkit-transition: all 0.3s ease;
2016-01-15 15:56:06 +08:00
transition: all 0.3s ease;
cursor: pointer;
font-size: 16px;
width: 16px;
2016-01-15 15:56:06 +08:00
line-height: 1;
color: #eee;
2016-01-15 15:56:06 +08:00
opacity: 0;
margin-top: -8px;
margin-left: -22px;
&:hover {
color: #fff;
}
2016-01-15 15:56:06 +08:00
}
2015-12-12 15:25:54 +08:00
2016-01-15 15:56:06 +08:00
.anticon-delete {
left: 50%;
margin-left: 6px;
2016-01-15 15:56:06 +08:00
}
2015-12-12 15:25:54 +08:00
2016-01-15 15:56:06 +08:00
&:hover {
&:before {
opacity: .8;
}
.anticon-eye-o,
.anticon-delete {
opacity: 1;
}
}
}
2015-11-04 12:00:49 +08:00
.@{upload-item}-thumbnail,
2016-01-15 15:56:06 +08:00
.@{upload-item}-thumbnail img {
display: block;
width: 100%;
height: 100%;
position: static;
2016-01-15 15:56:06 +08:00
}
.@{upload-item}-name {
display: none;
}
.@{upload-item}-uploading {
&.@{upload-item} {
background-color: #fbfbfb;
}
.@{upload-item}-info {
&:before,
.anticon-eye-o,
.anticon-delete {
display: none;
}
}
&-text {
margin-top: 18px;
color: #999;
}
}
.@{upload-item}-progress {
padding-left: 0;
}
}
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
}
}