mirror of https://github.com/vector-im/riot-web
68 lines
1.6 KiB
SCSS
68 lines
1.6 KiB
SCSS
/*
|
|
Copyright 2019 Vector Creations Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_MessageEditor {
|
|
border-radius: 4px;
|
|
background-color: #f3f8fd;
|
|
padding: 11px 13px 7px 56px;
|
|
|
|
.editor {
|
|
border-radius: 4px;
|
|
border: solid 1px #e9edf1;
|
|
background-color: #ffffff;
|
|
padding: 10px;
|
|
white-space: pre;
|
|
|
|
span {
|
|
display: inline-block;
|
|
padding: 0 5px;
|
|
border-radius: 4px;
|
|
color: white;
|
|
}
|
|
|
|
span.user-pill {
|
|
background: red;
|
|
}
|
|
|
|
span.room-pill {
|
|
background: green;
|
|
}
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: end;
|
|
padding: 5px 0;
|
|
|
|
.mx_AccessibleButton {
|
|
background-color: $button-bg-color;
|
|
border-radius: 4px;
|
|
padding: 5px 40px;
|
|
color: $button-fg-color;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
|
|
.model {
|
|
background: lightgrey;
|
|
padding: 5px;
|
|
display: block;
|
|
white-space: pre;
|
|
font-size: 12px;
|
|
}
|
|
}
|