2018-04-12 01:23:35 +02:00
|
|
|
/*
|
2020-04-24 16:07:39 +02:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-04-24 16:07:39 +02:00
|
|
|
.mx_RedactedBody {
|
2018-04-12 01:23:35 +02:00
|
|
|
white-space: pre-wrap;
|
2020-04-24 16:07:39 +02:00
|
|
|
color: $muted-fg-color;
|
2020-04-24 16:39:23 +02:00
|
|
|
vertical-align: middle;
|
2020-04-24 16:07:39 +02:00
|
|
|
|
2020-05-07 13:50:04 +02:00
|
|
|
padding-left: 20px;
|
2020-04-24 16:07:39 +02:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
|
|
|
background-color: $muted-fg-color;
|
2020-05-12 17:16:47 +02:00
|
|
|
mask-image: url('$(res)/img/feather-customised/trash.custom.svg');
|
2020-04-24 16:07:39 +02:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 0;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|