@@ -132,17 +132,17 @@ class SendCustomEvent extends GenericEditor {
132
132
}
133
133
134
134
return < div >
135
- < div className = "mx_Dialog_content " >
135
+ < div className = "mx_DevTools_content " >
136
136
{ this . textInput ( 'eventType' , _t ( 'Event Type' ) ) }
137
137
{ this . state . isStateEvent && this . textInput ( 'stateKey' , _t ( 'State Key' ) ) }
138
138
139
139
< br />
140
140
141
- < div className = "mx_UserSettings_profileLabelCell " >
141
+ < div className = "mx_DevTools_inputLabelCell " >
142
142
< label htmlFor = "evContent" > { _t ( 'Event Content' ) } </ label >
143
143
</ div >
144
144
< div >
145
- < textarea id = "evContent" onChange = { this . _onChange } value = { this . state . evContent } className = "mx_TextInputDialog_input" cols = "63" rows = "5 " />
145
+ < textarea id = "evContent" onChange = { this . _onChange } value = { this . state . evContent } className = "mx_DevTools_textarea " />
146
146
</ div >
147
147
</ div >
148
148
< div className = "mx_Dialog_buttons" >
@@ -219,15 +219,15 @@ class SendAccountData extends GenericEditor {
219
219
}
220
220
221
221
return < div >
222
- < div className = "mx_Dialog_content " >
222
+ < div className = "mx_DevTools_content " >
223
223
{ this . textInput ( 'eventType' , _t ( 'Event Type' ) ) }
224
224
< br />
225
225
226
- < div className = "mx_UserSettings_profileLabelCell " >
226
+ < div className = "mx_DevTools_inputLabelCell " >
227
227
< label htmlFor = "evContent" > { _t ( 'Event Content' ) } </ label >
228
228
</ div >
229
229
< div >
230
- < textarea id = "evContent" onChange = { this . _onChange } value = { this . state . evContent } className = "mx_TextInputDialog_input" cols = "63" rows = "5 " />
230
+ < textarea id = "evContent" onChange = { this . _onChange } value = { this . state . evContent } className = "mx_DevTools_textarea " />
231
231
</ div >
232
232
</ div >
233
233
< div className = "mx_Dialog_buttons" >
@@ -485,7 +485,7 @@ class AccountDataExplorer extends DevtoolsComponent {
485
485
}
486
486
487
487
return < div className = "mx_ViewSource" >
488
- < div className = "mx_Dialog_content " >
488
+ < div className = "mx_DevTools_content " >
489
489
< SyntaxHighlight className = "json" >
490
490
{ JSON . stringify ( this . state . event . event , null , 2 ) }
491
491
</ SyntaxHighlight >
0 commit comments