File tree Expand file tree Collapse file tree 2 files changed +31
-10
lines changed
src/skins/vector/css/matrix-react-sdk/views Expand file tree Collapse file tree 2 files changed +31
-10
lines changed Original file line number Diff line number Diff line change
1
+ .mx_UserPill {
2
+ color : white;
3
+ background-color : # 76cfa6 ;
4
+ padding : 2px 8px ;
5
+ border-radius : 16px ;
6
+ }
7
+
8
+ .mx_RoomPill {
9
+ background-color : white;
10
+ color : # 76cfa6 ;
11
+ border : 1px solid # 76cfa6 ;
12
+ padding : 2px 8px ;
13
+ border-radius : 16px ;
14
+ }
Original file line number Diff line number Diff line change @@ -22,15 +22,16 @@ limitations under the License.
22
22
}
23
23
24
24
.mx_MessageComposer_row {
25
- display : table-row;
25
+ display : flex;
26
+ flex-direction : row;
27
+ align-items : center;
26
28
width : 100% ;
27
29
}
28
30
29
31
.mx_MessageComposer .mx_MessageComposer_avatar {
30
- display : table-cell;
32
+ /* display: table-cell;*/
31
33
padding-left : 10px ;
32
34
padding-right : 28px ;
33
- vertical-align : middle;
34
35
}
35
36
36
37
.mx_MessageComposer .mx_MessageComposer_avatar .mx_BaseAvatar {
@@ -42,20 +43,26 @@ limitations under the License.
42
43
}
43
44
44
45
.mx_MessageComposer_noperm_error {
45
- display : table-cell;
46
+ /* display: table-cell;*/
46
47
width : 100% ;
47
- vertical-align : middle;
48
48
height : 60px ;
49
49
text-align : center;
50
50
font-style : italic;
51
51
color : # 888 ;
52
52
}
53
53
54
54
.mx_MessageComposer_input {
55
- display : table-cell;
56
- width : 100 % ;
55
+ /* display: table-cell;*/
56
+ flex : 1 ;
57
57
vertical-align : middle;
58
- height : 60px ;
58
+ min-height : 60px ;
59
+ max-height : 120px ;
60
+ display : flex;
61
+ align-items : center;
62
+ }
63
+
64
+ .mx_MessageComposer_input .DraftEditor-root {
65
+ flex : 1 ;
59
66
}
60
67
61
68
.mx_MessageComposer_input textarea {
@@ -92,8 +99,8 @@ limitations under the License.
92
99
.mx_MessageComposer_hangup ,
93
100
.mx_MessageComposer_voicecall ,
94
101
.mx_MessageComposer_videocall {
95
- display : table-cell;
96
- vertical-align : middle;
102
+ /* display: table-cell;*/
103
+ /* vertical-align: middle;*/
97
104
padding-left : 10px ;
98
105
padding-right : 10px ;
99
106
cursor : pointer;
You can’t perform that action at this time.
0 commit comments