Files
element-web/res/css/views/messages/_ViewSourceEvent.scss
T

60 lines
1.6 KiB
SCSS
Raw Normal View History

2019-05-02 15:11:06 +01:00
/*
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_EventTile_content.mx_ViewSourceEvent {
display: flex;
opacity: 0.6;
2020-03-31 15:26:23 +01:00
font-size: $font-12px;
2022-01-07 10:40:53 +01:00
width: 100%;
overflow-x: auto; // Cancel overflow setting of .mx_EventTile_content
line-height: normal; // Align with avatar and E2E icon
2019-05-02 15:11:06 +01:00
pre,
code {
2019-05-02 15:11:06 +01:00
flex: 1;
}
pre {
line-height: 1.2;
margin: 3.5px 0;
}
.mx_ViewSourceEvent_toggle {
2022-01-07 10:40:53 +01:00
visibility: hidden;
// override styles from AccessibleButton
border-radius: 0;
// icon
2019-05-02 15:11:06 +01:00
mask-repeat: no-repeat;
mask-position: 0 center;
mask-size: auto 12px;
2021-11-16 15:43:18 +01:00
width: 12px;
2021-11-11 14:37:29 +01:00
background-color: $accent;
2021-11-16 15:43:18 +01:00
mask-image: url("$(res)/img/element-icons/maximise-expand.svg");
2019-05-02 15:11:06 +01:00
}
&.mx_ViewSourceEvent_expanded .mx_ViewSourceEvent_toggle {
mask-position: 0 bottom;
2021-11-16 15:43:18 +01:00
margin-bottom: 5px;
mask-image: url("$(res)/img/element-icons/minimise-collapse.svg");
2019-05-02 15:11:06 +01:00
}
2021-07-22 17:11:23 +02:00
}
2019-05-02 15:11:06 +01:00
2021-07-22 17:11:23 +02:00
.mx_EventTile:hover {
.mx_ViewSourceEvent_toggle {
2019-05-02 15:11:06 +01:00
visibility: visible;
}
}