♻️(css) remove '_ra-*' helpers from panda

they are not really helpful, i'd rather stick to the react-aria wording,
easier to understand when looking at react aria examples, converting
code, etc. Not a great value adding this api in our tiny heads
This commit is contained in:
Emmanuel Pelletier
2024-07-24 15:38:10 +02:00
parent 50791c945d
commit 5ce63d937d
4 changed files with 5 additions and 17 deletions

View File

@@ -7,10 +7,10 @@ const link = cva({
textUnderlineOffset: '2',
cursor: 'pointer',
borderRadius: 2,
'_ra-hover': {
'&[data-hovered]': {
textDecoration: 'none',
},
'_ra-pressed': {
'&[data-pressed]': {
textDecoration: 'underline',
},
},

View File

@@ -14,10 +14,10 @@ const button = cva({
border: '1px solid transparent',
color: 'colorPalette.text',
backgroundColor: 'colorPalette',
'_ra-hover': {
'&[data-hovered]': {
backgroundColor: 'colorPalette.hover',
},
'_ra-pressed': {
'&[data-pressed]': {
backgroundColor: 'colorPalette.active',
},
},

View File

@@ -15,7 +15,7 @@ const ListItem = styled(Button, {
borderRadius: 4,
cursor: 'pointer',
color: 'primary',
'_ra-hover': {
'&[data-hovered]': {
color: 'primary.subtle-text',
backgroundColor: 'primary.subtle',
},