primevue-mirror/components/lib/themes/lara/dataview/index.js

53 lines
1.3 KiB
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
2024-05-12 18:59:19 +00:00
root: {
borderColor: '{content.border.color}',
borderWidth: '1px',
borderRadius: '4px',
padding: '0'
},
2024-05-05 20:35:38 +00:00
header: {
borderColor: '{content.border.color}',
2024-05-12 18:59:19 +00:00
borderWidth: '0 0 1px 0',
padding: '0.875rem 1.125rem',
borderRadius: '3px 3px 0 0'
2024-05-05 20:35:38 +00:00
},
content: {
background: '{content.background}',
2024-05-12 18:59:19 +00:00
color: '{content.color}',
borderColor: 'transparent',
borderWidth: '0',
padding: '0',
borderRadius: '3px'
2024-05-05 20:35:38 +00:00
},
footer: {
background: '{content.background}',
2024-05-12 18:59:19 +00:00
color: '{content.color}',
borderColor: '{content.border.color}',
borderWidth: '1px 0 0 0',
padding: '0.875rem 1.125rem',
borderRadius: '0 0 3px 3px'
},
paginatorTop: {
borderColor: '{content.border.color}',
borderWidth: '0 0 1px 0'
},
paginatorBottom: {
2024-05-05 20:35:38 +00:00
borderColor: '{content.border.color}',
2024-05-12 18:59:19 +00:00
borderWidth: '1px 0 0 0'
},
colorScheme: {
light: {
header: {
background: '{surface.100}',
color: '{text.color}'
}
},
dark: {
header: {
background: '{surface.800}',
color: '{text.color}'
}
}
2024-05-05 20:35:38 +00:00
}
};