first commit
This commit is contained in:
54
frontend/node_modules/antd/es/upload/style/index.js
generated
vendored
Normal file
54
frontend/node_modules/antd/es/upload/style/index.js
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
import { resetComponent } from '../../style';
|
||||
import { genCollapseMotion } from '../../style/motion';
|
||||
import { genStyleHooks, mergeToken } from '../../theme/internal';
|
||||
import genDraggerStyle from './dragger';
|
||||
import genListStyle from './list';
|
||||
import genMotionStyle from './motion';
|
||||
import { genPictureCardStyle, genPictureStyle } from './picture';
|
||||
import genRtlStyle from './rtl';
|
||||
const genBaseStyle = token => {
|
||||
const {
|
||||
componentCls,
|
||||
colorTextDisabled
|
||||
} = token;
|
||||
return {
|
||||
[`${componentCls}-wrapper`]: Object.assign(Object.assign({}, resetComponent(token)), {
|
||||
[componentCls]: {
|
||||
outline: 0,
|
||||
"input[type='file']": {
|
||||
cursor: 'pointer'
|
||||
}
|
||||
},
|
||||
[`${componentCls}-select`]: {
|
||||
display: 'inline-block'
|
||||
},
|
||||
[`${componentCls}-hidden`]: {
|
||||
display: 'none'
|
||||
},
|
||||
[`${componentCls}-disabled`]: {
|
||||
color: colorTextDisabled,
|
||||
cursor: 'not-allowed'
|
||||
}
|
||||
})
|
||||
};
|
||||
};
|
||||
export const prepareComponentToken = token => ({
|
||||
actionsColor: token.colorIcon,
|
||||
pictureCardSize: token.controlHeightLG * 2.55
|
||||
});
|
||||
// ============================== Export ==============================
|
||||
export default genStyleHooks('Upload', token => {
|
||||
const {
|
||||
fontSizeHeading3,
|
||||
fontHeight,
|
||||
lineWidth,
|
||||
pictureCardSize,
|
||||
calc
|
||||
} = token;
|
||||
const uploadToken = mergeToken(token, {
|
||||
uploadThumbnailSize: calc(fontSizeHeading3).mul(2).equal(),
|
||||
uploadProgressOffset: calc(calc(fontHeight).div(2)).add(lineWidth).equal(),
|
||||
uploadPicCardSize: pictureCardSize
|
||||
});
|
||||
return [genBaseStyle(uploadToken), genDraggerStyle(uploadToken), genPictureStyle(uploadToken), genPictureCardStyle(uploadToken), genListStyle(uploadToken), genMotionStyle(uploadToken), genRtlStyle(uploadToken), genCollapseMotion(uploadToken)];
|
||||
}, prepareComponentToken);
|
||||
Reference in New Issue
Block a user