70 lines
2.0 KiB
JavaScript
70 lines
2.0 KiB
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = void 0;
|
||
|
const genDraggerStyle = token => {
|
||
|
const {
|
||
|
componentCls,
|
||
|
iconCls
|
||
|
} = token;
|
||
|
return {
|
||
|
[`${componentCls}-wrapper`]: {
|
||
|
[`${componentCls}-drag`]: {
|
||
|
position: 'relative',
|
||
|
width: '100%',
|
||
|
height: '100%',
|
||
|
textAlign: 'center',
|
||
|
background: token.colorFillAlter,
|
||
|
border: `${token.lineWidth}px dashed ${token.colorBorder}`,
|
||
|
borderRadius: token.borderRadiusLG,
|
||
|
cursor: 'pointer',
|
||
|
transition: `border-color ${token.motionDurationSlow}`,
|
||
|
[componentCls]: {
|
||
|
padding: `${token.padding}px 0`
|
||
|
},
|
||
|
[`${componentCls}-btn`]: {
|
||
|
display: 'table',
|
||
|
width: '100%',
|
||
|
height: '100%',
|
||
|
outline: 'none'
|
||
|
},
|
||
|
[`${componentCls}-drag-container`]: {
|
||
|
display: 'table-cell',
|
||
|
verticalAlign: 'middle'
|
||
|
},
|
||
|
[`&:not(${componentCls}-disabled):hover`]: {
|
||
|
borderColor: token.colorPrimaryHover
|
||
|
},
|
||
|
[`p${componentCls}-drag-icon`]: {
|
||
|
marginBottom: token.margin,
|
||
|
[iconCls]: {
|
||
|
color: token.colorPrimary,
|
||
|
fontSize: token.uploadThumbnailSize
|
||
|
}
|
||
|
},
|
||
|
[`p${componentCls}-text`]: {
|
||
|
margin: `0 0 ${token.marginXXS}px`,
|
||
|
color: token.colorTextHeading,
|
||
|
fontSize: token.fontSizeLG
|
||
|
},
|
||
|
[`p${componentCls}-hint`]: {
|
||
|
color: token.colorTextDescription,
|
||
|
fontSize: token.fontSize
|
||
|
},
|
||
|
// ===================== Disabled =====================
|
||
|
[`&${componentCls}-disabled`]: {
|
||
|
cursor: 'not-allowed',
|
||
|
[`p${componentCls}-drag-icon ${iconCls},
|
||
|
p${componentCls}-text,
|
||
|
p${componentCls}-hint
|
||
|
`]: {
|
||
|
color: token.colorTextDisabled
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
};
|
||
|
var _default = exports.default = genDraggerStyle;
|