pleroma-fe/src/components/status/post.style.js
2024-02-22 18:38:45 +02:00

36 lines
543 B
JavaScript

export default {
name: 'Post',
selector: '.Status',
states: {
selected: '.-focused'
},
validInnerComponents: [
'Text',
'Link',
'Icon',
'Border',
'Button',
'ButtonUnstyled',
'RichContent',
'Input',
'Avatar',
'Attachment',
'PollGraph'
],
defaultRules: [
{
directives: {
background: '--bg',
opacity: 0
}
},
{
state: ['selected'],
directives: {
background: '--inheritedBackground, 10',
opacity: 1
}
}
]
}