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

42 lines
642 B
JavaScript
Raw Normal View History

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