Fix /connect message composer style bugs (#6695) [deploy]
This commit is contained in:
parent
432e2c4f29
commit
fa494418eb
4 changed files with 9 additions and 7 deletions
|
|
@ -1015,23 +1015,25 @@
|
|||
.messagecomposer__input {
|
||||
border-radius: 3px;
|
||||
font-size: 16px;
|
||||
margin: 6px 2px 6px 6px;
|
||||
padding: 5px;
|
||||
margin: 4px 2px 4px 6px;
|
||||
padding: 4px;
|
||||
resize: none;
|
||||
flex-grow: 1;
|
||||
height: 42px;
|
||||
@include themeable(background, theme-container-background, white);
|
||||
@include themeable(border, theme-border, 1px solid $outline-color);
|
||||
@include themeable(color, theme-color, $black);
|
||||
}
|
||||
|
||||
.messagecomposer__submit {
|
||||
margin: 6px 6px 6px 0;
|
||||
margin: 4px 6px 4px 0;
|
||||
border-radius: 3px;
|
||||
background: $dark-purple;
|
||||
font-weight: 600px;
|
||||
font-family: $helvetica-condensed;
|
||||
color: white;
|
||||
font-size: 18px;
|
||||
border: 0px;
|
||||
|
||||
@media screen and (min-width: 500px) {
|
||||
width: 80px;
|
||||
|
|
|
|||
|
|
@ -266,7 +266,7 @@ exports[`<Chat /> should load chat 1`] = `
|
|||
placeholder="Message goes here"
|
||||
/>
|
||||
<button
|
||||
class="messagecomposer__submit"
|
||||
class="messagecomposer__submit cta"
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ exports[`<Compose /> behavior with message should render and test snapshot 1`] =
|
|||
placeholder="Message goes here"
|
||||
/>
|
||||
<button
|
||||
class="messagecomposer__submit"
|
||||
class="messagecomposer__submit cta"
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ export default class Chat extends Component {
|
|||
/>
|
||||
<button
|
||||
type="button"
|
||||
className="messagecomposer__submit"
|
||||
className="messagecomposer__submit cta"
|
||||
onClick={handleSubmitOnClickEdit}
|
||||
>
|
||||
Save
|
||||
|
|
@ -98,7 +98,7 @@ export default class Chat extends Component {
|
|||
/>
|
||||
<button
|
||||
type="button"
|
||||
className="messagecomposer__submit"
|
||||
className="messagecomposer__submit cta"
|
||||
onClick={handleSubmitOnClick}
|
||||
>
|
||||
SEND
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue