UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

224 lines 6.05 kB
import { c, cB, cE, cM } from "../../../_utils/cssr/index.mjs"; import { fadeInHeightExpandTransition } from "../../../_styles/transitions/fade-in-height-expand.cssr.mjs"; import { iconSwitchTransition } from "../../../_styles/transitions/icon-switch.cssr.mjs"; export default c([cB('upload', 'width: 100%;', [cM('dragger-inside', [cB('upload-trigger', ` display: block; `)]), cM('drag-over', [cB('upload-dragger', ` border: var(--n-dragger-border-hover); `)])]), cB('upload-dragger', ` cursor: pointer; box-sizing: border-box; width: 100%; text-align: center; border-radius: var(--n-border-radius); padding: 24px; opacity: 1; transition: opacity .3s var(--n-bezier), border-color .3s var(--n-bezier), background-color .3s var(--n-bezier); background-color: var(--n-dragger-color); border: var(--n-dragger-border); `, [c('&:hover', ` border: var(--n-dragger-border-hover); `), cM('disabled', ` cursor: not-allowed; `)]), cB('upload-trigger', ` display: inline-block; box-sizing: border-box; opacity: 1; transition: opacity .3s var(--n-bezier); `, [c('+', [cB('upload-file-list', 'margin-top: 8px;')]), cM('disabled', ` opacity: var(--n-item-disabled-opacity); cursor: not-allowed; `), cM('image-card', ` width: 96px; height: 96px; `, [cB('base-icon', ` font-size: 24px; `), cB('upload-dragger', ` padding: 0; height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; `)])]), cB('upload-file-list', ` line-height: var(--n-line-height); opacity: 1; transition: opacity .3s var(--n-bezier); `, [c('a, img', 'outline: none;'), cM('disabled', ` opacity: var(--n-item-disabled-opacity); cursor: not-allowed; `, [cB('upload-file', 'cursor: not-allowed;')]), cM('grid', ` display: grid; grid-template-columns: repeat(auto-fill, 96px); grid-gap: 8px; margin-top: 0; `), cB('upload-file', ` display: block; box-sizing: border-box; cursor: default; padding: 0px 12px 0 6px; transition: background-color .3s var(--n-bezier); border-radius: var(--n-border-radius); `, [fadeInHeightExpandTransition(), cB('progress', [fadeInHeightExpandTransition({ foldPadding: true })]), c('&:hover', ` background-color: var(--n-item-color-hover); `, [cB('upload-file-info', [cE('action', ` opacity: 1; `)])]), cM('image-type', ` border-radius: var(--n-border-radius); text-decoration: underline; text-decoration-color: #0000; `, [cB('upload-file-info', ` padding-top: 0px; padding-bottom: 0px; width: 100%; height: 100%; display: flex; justify-content: space-between; align-items: center; padding: 6px 0; `, [cB('progress', ` padding: 2px 0; margin-bottom: 0; `), cE('name', ` padding: 0 8px; `), cE('thumbnail', ` width: 32px; height: 32px; font-size: 28px; display: flex; justify-content: center; align-items: center; `, [c('img', ` width: 100%; `)])])]), cM('text-type', [cB('progress', ` box-sizing: border-box; padding-bottom: 6px; margin-bottom: 6px; `)]), cM('image-card-type', ` position: relative; width: 96px; height: 96px; border: var(--n-item-border-image-card); border-radius: var(--n-border-radius); padding: 0; display: flex; align-items: center; justify-content: center; transition: border-color .3s var(--n-bezier), background-color .3s var(--n-bezier); border-radius: var(--n-border-radius); overflow: hidden; `, [cB('progress', ` position: absolute; left: 8px; bottom: 8px; right: 8px; width: unset; `), cB('upload-file-info', ` padding: 0; width: 100%; height: 100%; `, [cE('thumbnail', ` width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 36px; `, [c('img', ` width: 100%; `)])]), c('&::before', ` position: absolute; z-index: 1; left: 0; right: 0; top: 0; bottom: 0; border-radius: inherit; opacity: 0; transition: opacity .2s var(--n-bezier); content: ""; `), c('&:hover', [c('&::before', 'opacity: 1;'), cB('upload-file-info', [cE('thumbnail', 'opacity: .12;')])])]), cM('error-status', [c('&:hover', ` background-color: var(--n-item-color-hover-error); `), cB('upload-file-info', [cE('name', 'color: var(--n-item-text-color-error);'), cE('thumbnail', 'color: var(--n-item-text-color-error);')]), cM('image-card-type', ` border: var(--n-item-border-image-card-error); `)]), cM('with-url', ` cursor: pointer; `, [cB('upload-file-info', [cE('name', ` color: var(--n-item-text-color-success); text-decoration-color: var(--n-item-text-color-success); `, [c('a', ` text-decoration: underline; `)])])]), cB('upload-file-info', ` position: relative; padding-top: 6px; padding-bottom: 6px; display: flex; flex-wrap: nowrap; `, [cE('thumbnail', ` font-size: 18px; opacity: 1; transition: opacity .2s var(--n-bezier); color: var(--n-item-icon-color); `, [cB('base-icon', ` margin-right: 2px; vertical-align: middle; transition: color .3s var(--n-bezier); `)]), cE('action', ` padding-top: inherit; padding-bottom: inherit; position: absolute; right: 0; top: 0; bottom: 0; width: 80px; display: flex; align-items: center; transition: opacity .2s var(--n-bezier); justify-content: flex-end; opacity: 0; `, [cB('button', [c('&:not(:last-child)', { marginRight: '4px' }), cB('base-icon', [c('svg', [iconSwitchTransition()])])]), cM('image-type', ` position: relative; max-width: 80px; width: auto; `), cM('image-card-type', ` z-index: 2; position: absolute; width: 100%; height: 100%; left: 0; right: 0; bottom: 0; top: 0; display: flex; justify-content: center; align-items: center; `)]), cE('name', ` color: var(--n-item-text-color); flex: 1; display: flex; justify-content: center; text-overflow: ellipsis; overflow: hidden; flex-direction: column; text-decoration-color: #0000; font-size: var(--n-font-size); transition: color .3s var(--n-bezier), text-decoration-color .3s var(--n-bezier); `, [c('a', ` color: inherit; text-decoration: underline; `)])])])]), cB('upload-file-input', ` display: none; width: 0; height: 0; opacity: 0; `)]);