aboutsummaryrefslogtreecommitdiff
path: root/src/components/chat_message/chat_message.style.js
blob: 9b57ad3710318d1fd6167a256532bf8bfdf4daf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export default {
  name: 'ChatMessage',
  selector: '.chat-message',
  variants: {
    outgoing: '.outgoing'
  },
  validInnerComponents: [
    'Text',
    'Icon',
    'Border',
    'Button',
    'RichContent',
    'Attachment',
    'PollGraph'
  ],
  defaultRules: [
    {
      directives: {
        background: '--bg, 2',
        backgroundNoCssColor: 'yes'
      }
    },
    {
      variant: 'outgoing',
      directives: {
        background: '--bg, 5'
      }
    }
  ]
}