Tokens for upload
parent
faac9c0d16
commit
a5969d4960
|
@ -7,7 +7,7 @@ const theme = ({ dt }) => `
|
||||||
|
|
||||||
.p-fileupload-advanced {
|
.p-fileupload-advanced {
|
||||||
border: 1px solid ${dt('fileupload.border.color')};
|
border: 1px solid ${dt('fileupload.border.color')};
|
||||||
border-radius: ${dt('border.radius.md')};
|
border-radius: ${dt('fileupload.border.radius')};
|
||||||
background: ${dt('fileupload.background')};
|
background: ${dt('fileupload.background')};
|
||||||
color: ${dt('fileupload.color')};
|
color: ${dt('fileupload.color')};
|
||||||
}
|
}
|
||||||
|
@ -15,15 +15,21 @@ const theme = ({ dt }) => `
|
||||||
.p-fileupload-header {
|
.p-fileupload-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-wrap: wrap;
|
padding: ${dt('fileupload.header.padding')};
|
||||||
padding: 1.125rem;
|
background: ${dt('fileupload.header.background')};
|
||||||
gap: 0.5rem;
|
color: ${dt('fileupload.header.color')};
|
||||||
|
border-style: solid;
|
||||||
|
border-width: ${dt('fileupload.header.border.width')};
|
||||||
|
border-color: ${dt('fileupload.header.border.color')};
|
||||||
|
border-radius: ${dt('fileupload.header.border.radius')};
|
||||||
|
gap: ${dt('fileupload.header.gap')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-fileupload-content {
|
.p-fileupload-content {
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: 0 1.125rem 1.125rem 1.125rem;
|
transition: border-color ${dt('transition.duration')};
|
||||||
|
padding: ${dt('fileupload.content.padding')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-fileupload-content .p-progressbar {
|
.p-fileupload-content .p-progressbar {
|
||||||
|
@ -31,7 +37,7 @@ const theme = ({ dt }) => `
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
height: 0.25rem;
|
height: ${dt('fileupload.progressbar.height')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-fileupload-file-list {
|
.p-fileupload-file-list {
|
||||||
|
@ -45,9 +51,9 @@ const theme = ({ dt }) => `
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 1rem;
|
padding: ${dt('fileupload.file.padding')};
|
||||||
border-bottom: 1px solid ${dt('fileupload.file.border.color')};
|
border-bottom: 1px solid ${dt('fileupload.file.border.color')};
|
||||||
gap: 0.5rem;
|
gap: ${dt('fileupload.file.gap')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-fileupload-file:last-child {
|
.p-fileupload-file:last-child {
|
||||||
|
@ -57,7 +63,7 @@ const theme = ({ dt }) => `
|
||||||
.p-fileupload-file-info {
|
.p-fileupload-file-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 0.5rem;
|
gap: ${dt('fileupload.file.info.gap')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-fileupload-file-thumbnail {
|
.p-fileupload-file-thumbnail {
|
||||||
|
@ -70,7 +76,6 @@ const theme = ({ dt }) => `
|
||||||
|
|
||||||
.p-fileupload-highlight {
|
.p-fileupload-highlight {
|
||||||
border: 1px dashed ${dt('fileupload.content.highlight.border.color')};
|
border: 1px dashed ${dt('fileupload.content.highlight.border.color')};
|
||||||
background: ${dt('fileupload.content.highlight.background')};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-fileupload-advanced .p-message {
|
.p-fileupload-advanced .p-message {
|
||||||
|
@ -82,7 +87,7 @@ const theme = ({ dt }) => `
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 0.5rem;
|
gap: ${dt('fileupload.basic.gap')};
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
|
@ -2,13 +2,33 @@ export default {
|
||||||
root: {
|
root: {
|
||||||
background: '{content.background}',
|
background: '{content.background}',
|
||||||
borderColor: '{content.border.color}',
|
borderColor: '{content.border.color}',
|
||||||
color: '{content.color}'
|
color: '{content.color}',
|
||||||
|
borderRadius: '{content.border.radius}'
|
||||||
|
},
|
||||||
|
header: {
|
||||||
|
background: 'transparent',
|
||||||
|
color: '{text.color}',
|
||||||
|
padding: '1.125rem',
|
||||||
|
borderWidth: '0',
|
||||||
|
borderRadius: '0',
|
||||||
|
gap: '0.5rem'
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
highlightBackground: '{highlight.background}',
|
highlightBorderColor: '{primary.color}',
|
||||||
highlightBorderColor: '{highlight.color}'
|
padding: '0 1.125rem 1.125rem 1.125rem'
|
||||||
},
|
},
|
||||||
file: {
|
file: {
|
||||||
borderColor: '{content.border.color}'
|
padding: '1rem',
|
||||||
|
gap: '1rem',
|
||||||
|
borderColor: '{content.border.color}',
|
||||||
|
info: {
|
||||||
|
gap: '0.5rem'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
progressbar: {
|
||||||
|
height: '0.25rem'
|
||||||
|
},
|
||||||
|
basic: {
|
||||||
|
gap: '0.5rem'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,13 +2,46 @@ export default {
|
||||||
root: {
|
root: {
|
||||||
background: '{content.background}',
|
background: '{content.background}',
|
||||||
borderColor: '{content.border.color}',
|
borderColor: '{content.border.color}',
|
||||||
color: '{content.color}'
|
color: '{content.color}',
|
||||||
|
borderRadius: '{content.border.radius}'
|
||||||
|
},
|
||||||
|
header: {
|
||||||
|
borderWidth: '0 0 1px 0',
|
||||||
|
borderColor: '{content.border.color}',
|
||||||
|
padding: '1.125rem',
|
||||||
|
borderRadius: '3px 3px 0 0',
|
||||||
|
gap: '0.5rem'
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
highlightBackground: '{highlight.background}',
|
highlightBorderColor: '{primary.color}',
|
||||||
highlightBorderColor: '{highlight.color}'
|
padding: '1.125rem'
|
||||||
},
|
},
|
||||||
file: {
|
file: {
|
||||||
borderColor: '{content.border.color}'
|
padding: '1rem',
|
||||||
|
gap: '1rem',
|
||||||
|
borderColor: '{content.border.color}',
|
||||||
|
info: {
|
||||||
|
gap: '0.5rem'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
progressbar: {
|
||||||
|
height: '0.25rem'
|
||||||
|
},
|
||||||
|
basic: {
|
||||||
|
gap: '0.5rem'
|
||||||
|
},
|
||||||
|
colorScheme: {
|
||||||
|
light: {
|
||||||
|
header: {
|
||||||
|
background: '{surface.50}',
|
||||||
|
color: '{text.color}'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
dark: {
|
||||||
|
header: {
|
||||||
|
background: '{surface.800}',
|
||||||
|
color: '{text.color}'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,13 +2,33 @@ export default {
|
||||||
root: {
|
root: {
|
||||||
background: '{content.background}',
|
background: '{content.background}',
|
||||||
borderColor: '{content.border.color}',
|
borderColor: '{content.border.color}',
|
||||||
color: '{content.color}'
|
color: '{content.color}',
|
||||||
|
borderRadius: '{content.border.radius}'
|
||||||
|
},
|
||||||
|
header: {
|
||||||
|
background: 'transparent',
|
||||||
|
color: '{text.color}',
|
||||||
|
padding: '1.125rem',
|
||||||
|
borderWidth: '0',
|
||||||
|
borderRadius: '0',
|
||||||
|
gap: '0.5rem'
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
highlightBackground: '{highlight.background}',
|
highlightBorderColor: '{primary.color}',
|
||||||
highlightBorderColor: '{highlight.color}'
|
padding: '0 1.125rem 1.125rem 1.125rem'
|
||||||
},
|
},
|
||||||
file: {
|
file: {
|
||||||
borderColor: '{content.border.color}'
|
padding: '1rem',
|
||||||
|
gap: '1rem',
|
||||||
|
borderColor: '{content.border.color}',
|
||||||
|
info: {
|
||||||
|
gap: '0.5rem'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
progressbar: {
|
||||||
|
height: '0.25rem'
|
||||||
|
},
|
||||||
|
basic: {
|
||||||
|
gap: '0.5rem'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue