mirror of https://github.com/vector-im/riot-web
68 lines
1.7 KiB
SCSS
68 lines
1.7 KiB
SCSS
/*
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
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_MessageEditHistoryDialog .mx_Dialog_header > .mx_Dialog_title {
|
|
text-align: center;
|
|
}
|
|
|
|
.mx_MessageEditHistoryDialog {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height: 60vh;
|
|
}
|
|
|
|
.mx_MessageEditHistoryDialog_scrollPanel {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.mx_MessageEditHistoryDialog_error {
|
|
color: $warning-color;
|
|
text-align: center;
|
|
}
|
|
|
|
.mx_MessageEditHistoryDialog_edits {
|
|
list-style-type: none;
|
|
font-size: 14px;
|
|
padding: 0;
|
|
color: $primary-fg-color;
|
|
|
|
span.mx_EditHistoryMessage_deletion, span.mx_EditHistoryMessage_insertion {
|
|
padding: 0px 2px;
|
|
}
|
|
|
|
.mx_EditHistoryMessage_deletion {
|
|
color: rgb(255, 76, 85);
|
|
background-color: rgba(255, 76, 85, 0.1);
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.mx_EditHistoryMessage_insertion {
|
|
color: rgb(26, 169, 123);
|
|
background-color: rgba(26, 169, 123, 0.1);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.mx_EventTile_line, .mx_EventTile_content {
|
|
margin-right: 0px;
|
|
}
|
|
|
|
.mx_MessageActionBar .mx_AccessibleButton {
|
|
font-size: 10px;
|
|
padding: 0 8px;
|
|
}
|
|
}
|
|
|