mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 09:52:35 +00:00
40 lines
1 KiB
JavaScript
40 lines
1 KiB
JavaScript
export default {
|
|
root: {
|
|
borderColor: 'transparent',
|
|
borderWidth: '0',
|
|
borderRadius: '0',
|
|
padding: '0'
|
|
},
|
|
header: {
|
|
background: '{content.background}',
|
|
color: '{content.color}',
|
|
borderColor: '{content.border.color}',
|
|
borderWidth: '0 0 1px 0',
|
|
padding: '0.75rem 1rem',
|
|
borderRadius: '0'
|
|
},
|
|
content: {
|
|
background: '{content.background}',
|
|
color: '{content.color}',
|
|
borderColor: 'transparent',
|
|
borderWidth: '0',
|
|
padding: '0',
|
|
borderRadius: '0'
|
|
},
|
|
footer: {
|
|
background: '{content.background}',
|
|
color: '{content.color}',
|
|
borderColor: '{content.border.color}',
|
|
borderWidth: '1px 0 0 0',
|
|
padding: '0.75rem 1rem',
|
|
borderRadius: '0'
|
|
},
|
|
paginatorTop: {
|
|
borderColor: '{content.border.color}',
|
|
borderWidth: '0 0 1px 0'
|
|
},
|
|
paginatorBottom: {
|
|
borderColor: '{content.border.color}',
|
|
borderWidth: '1px 0 0 0'
|
|
}
|
|
};
|