2018-02-14 17:19:09 +01:00
|
|
|
$core-send-message-input-background: $gray;
|
|
|
|
$core-send-message-input-color: $black;
|
|
|
|
|
2018-08-31 10:26:37 +02:00
|
|
|
ion-app.app-root core-send-message-form {
|
2018-02-14 17:19:09 +01:00
|
|
|
background: $white;
|
|
|
|
|
|
|
|
form {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
flex-shrink: 1;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.core-send-message-input {
|
|
|
|
@include appearance(none);
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
align-self: self-start;
|
|
|
|
background: $core-send-message-input-background;
|
|
|
|
color: $core-send-message-input-color;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.core-send-message-button {
|
|
|
|
@include margin(0);
|
|
|
|
@include padding(0);
|
|
|
|
display: none;
|
|
|
|
min-height: 0;
|
|
|
|
align-self: self-end;
|
|
|
|
}
|
|
|
|
}
|