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

28 lines
425 B
JavaScript
Raw Normal View History

export default {
name: 'Post',
selector: '.Status',
2024-02-22 18:38:45 +02:00
states: {
2026-01-06 16:22:52 +02:00
selected: '.-focused',
2024-02-22 18:38:45 +02:00
},
validInnerComponents: [
'Text',
'Link',
'Icon',
'Border',
'Avatar',
2026-01-06 16:22:52 +02:00
'PollGraph',
],
2024-02-22 18:38:45 +02:00
defaultRules: [
{
directives: {
2026-01-06 16:22:52 +02:00
background: '--bg',
},
2024-02-22 18:38:45 +02:00
},
{
state: ['selected'],
directives: {
2026-01-06 16:22:52 +02:00
background: '--inheritedBackground, 10',
},
},
],
}