pleroma-fe/src/components/chat_message/chat_message.style.js

31 lines
575 B
JavaScript
Raw Normal View History

2024-02-19 15:11:59 +02:00
export default {
name: 'ChatMessage',
selector: '.chat-message',
variants: {
2026-01-06 16:22:52 +02:00
outgoing: '.outgoing',
2024-02-19 15:11:59 +02:00
},
2026-07-22 16:03:48 +03:00
states: {
focused: '.-focused',
},
2026-01-06 16:22:52 +02:00
validInnerComponents: ['Text', 'Icon', 'Border', 'PollGraph'],
2024-02-19 15:11:59 +02:00
defaultRules: [
{
directives: {
background: '--bg, 2',
2026-01-06 16:22:52 +02:00
backgroundNoCssColor: 'yes',
},
2024-02-19 15:11:59 +02:00
},
{
variant: 'outgoing',
directives: {
2026-01-06 16:22:52 +02:00
background: '--bg, 5',
},
},
2026-07-22 16:03:48 +03:00
{
state: ['focused'],
directives: {
background: '--inheritedBackground, 10',
},
},
2026-01-06 16:22:52 +02:00
],
2024-02-19 15:11:59 +02:00
}