pleroma-fe/src/components/status/post.style.js

36 lines
543 B
JavaScript
Raw Normal View History

export default {
name: 'Post',
selector: '.Status',
2024-02-22 16:38:45 +00:00
states: {
selected: '.-focused'
},
validInnerComponents: [
'Text',
'Link',
'Icon',
'Border',
'Button',
'ButtonUnstyled',
'RichContent',
2024-02-12 17:58:42 +00:00
'Input',
'Avatar',
'Attachment',
'PollGraph'
],
2024-02-22 16:38:45 +00:00
defaultRules: [
{
directives: {
background: '--bg',
opacity: 0
}
},
{
state: ['selected'],
directives: {
background: '--inheritedBackground, 10',
opacity: 1
}
}
]
}