UNPKG

807 BSCSSView Raw
1.str-chat__message-attachment-actions {
2 &-form {
3 width: 100%;
4 margin: var(--xs-m) 0;
5 padding: 0;
6 display: flex;
7 }
8
9 &-button {
10 flex: 1;
11 border: none;
12 background: none;
13 margin: 0 var(--xxs-m);
14 padding: var(--xs-p) var(--xs-p);
15 border-radius: var(--border-radius-round);
16 outline: none;
17
18 &:focus {
19 border: 1px solid var(--primary-color);
20 box-shadow: 0 0 0 2px var(--primary-color-faded);
21 }
22
23 &--primary {
24 background-color: var(--primary-color);
25 color: var(--white);
26 }
27
28 &--default {
29 border: 2px solid var(--border);
30 }
31 }
32}
33
34.dark.str-chat {
35 .str-chat__message-attachment-actions {
36 &-button {
37 color: var(--white);
38
39 &--default {
40 border-color: var(--grey-whisper);
41 }
42 }
43 }
44}