primevue-mirror/components/lib/themes/aura/fieldset/index.js

36 lines
1.0 KiB
JavaScript
Raw Normal View History

export default {
2024-05-04 11:47:06 +00:00
root: {
background: '{content.background}',
borderColor: '{content.border.color}',
2024-05-11 14:33:17 +00:00
borderRadius: '{content.border.radius}',
color: '{content.color}',
padding: '0 1.125rem 1.125rem 1.125rem'
2024-05-04 11:47:06 +00:00
},
legend: {
background: '{content.background}',
hoverBackground: '{content.hover.background}',
2024-05-11 14:33:17 +00:00
color: '{content.color}',
hoverColor: '{content.hover.color}',
borderRadius: '{content.border.radius}',
borderWidth: '1px',
borderColor: 'transparent',
padding: '0.5rem 0.75rem',
gap: '0.5rem',
2024-05-11 14:38:38 +00:00
fontWeight: '600',
2024-05-11 14:33:17 +00:00
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
2024-05-04 11:47:06 +00:00
},
toggleIcon: {
color: '{text.muted.color}',
hoverColor: '{text.hover.muted.color}'
2024-05-11 14:33:17 +00:00
},
content: {
padding: '0'
}
};