2018-04-12 07:23:35 +08:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2021-11-17 23:19:30 +08:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
2018-04-12 07:23:35 +08: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.
|
|
|
|
*/
|
|
|
|
|
2021-11-22 01:56:25 +08:00
|
|
|
$timeline-image-border-radius: 8px;
|
2021-05-22 04:46:18 +08:00
|
|
|
|
2022-05-14 16:31:53 +08:00
|
|
|
.mx_MImageBody_banner {
|
|
|
|
position: absolute;
|
2022-06-05 14:30:29 +08:00
|
|
|
bottom: $spacing-4;
|
|
|
|
left: $spacing-4;
|
|
|
|
padding: $spacing-4;
|
2022-05-14 16:31:53 +08:00
|
|
|
border-radius: $timeline-image-border-radius;
|
|
|
|
font-size: $font-15px;
|
2022-07-27 21:39:29 +08:00
|
|
|
user-select: none; /* prevent banner text from being selected */
|
|
|
|
pointer-events: none; /* let the cursor go through to the media underneath */
|
2022-05-14 16:31:53 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Trying to match the width of the image is surprisingly difficult, so arbitrarily break it off early. */
|
2022-05-14 16:31:53 +08:00
|
|
|
max-width: min(100%, 350px);
|
|
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Hardcoded colours because it's the same on all themes */
|
2022-05-14 16:31:53 +08:00
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2022-03-29 03:07:02 +08:00
|
|
|
.mx_MImageBody_placeholder {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Position the placeholder on top of the thumbnail, so that the reveal animation can work */
|
2021-08-11 00:38:38 +08:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2021-07-20 14:54:32 +08:00
|
|
|
|
2022-03-29 03:07:02 +08:00
|
|
|
background-color: $background;
|
|
|
|
|
2021-08-11 00:38:38 +08:00
|
|
|
.mx_Blurhash > canvas {
|
2022-12-12 19:24:14 +08:00
|
|
|
animation: mx--anim-pulse 1.75s infinite cubic-bezier(0.4, 0, 0.6, 1);
|
2021-05-22 04:46:18 +08:00
|
|
|
}
|
2018-05-18 01:15:34 +08:00
|
|
|
}
|
|
|
|
|
2022-05-28 01:18:44 +08:00
|
|
|
.mx_MImageBody_thumbnail_container {
|
|
|
|
border-radius: $timeline-image-border-radius;
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Necessary for the border radius to apply correctly to the placeholder */
|
2022-05-28 01:18:44 +08:00
|
|
|
overflow: hidden;
|
|
|
|
contain: paint;
|
2022-03-29 03:07:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MImageBody_thumbnail {
|
|
|
|
display: block;
|
2018-05-18 17:27:22 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Force the image to be the full size of the container, even if the */
|
|
|
|
/* pixel size is smaller. The problem here is that we don't know what */
|
|
|
|
/* thumbnail size the HS is going to give us, but we have to commit to */
|
|
|
|
/* a container size immediately and not change it when the image loads */
|
|
|
|
/* or we'll get a scroll jump (or have to leave blank space). */
|
|
|
|
/* This will obviously result in an upscaled image which will be a bit */
|
|
|
|
/* blurry. The best fix would be for the HS to advertise what size thumbnails */
|
|
|
|
/* it guarantees to produce. */
|
2022-03-29 03:07:02 +08:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2018-05-18 01:15:34 +08:00
|
|
|
}
|
2018-05-18 18:33:33 +08:00
|
|
|
|
2018-10-25 02:06:48 +08:00
|
|
|
.mx_MImageBody_gifLabel {
|
2018-10-23 03:57:58 +08:00
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
top: 0px;
|
|
|
|
left: 14px;
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: $imagebody-giflabel;
|
|
|
|
border: 2px solid $imagebody-giflabel-border;
|
2019-01-07 21:49:01 +08:00
|
|
|
color: $imagebody-giflabel-color;
|
|
|
|
pointer-events: none;
|
2018-10-23 03:57:58 +08:00
|
|
|
}
|
2019-10-02 07:00:01 +08:00
|
|
|
|
|
|
|
.mx_HiddenImagePlaceholder {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* To center the text in the middle of the frame */
|
2019-10-02 07:00:01 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: $header-panel-bg-color;
|
|
|
|
|
|
|
|
.mx_HiddenImagePlaceholder_button {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $accent;
|
2019-10-02 07:00:01 +08:00
|
|
|
|
2019-10-03 02:52:07 +08:00
|
|
|
span.mx_HiddenImagePlaceholder_eye {
|
2019-10-02 07:00:01 +08:00
|
|
|
margin-right: 8px;
|
2019-10-03 02:52:07 +08:00
|
|
|
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $accent;
|
2022-12-12 19:24:14 +08:00
|
|
|
mask-image: url("$(res)/img/feather-customised/eye.svg");
|
2019-10-03 02:52:07 +08:00
|
|
|
display: inline-block;
|
|
|
|
width: 18px;
|
|
|
|
height: 14px;
|
2019-10-02 07:00:01 +08:00
|
|
|
}
|
|
|
|
|
2019-10-03 02:52:07 +08:00
|
|
|
span:not(.mx_HiddenImagePlaceholder_eye) {
|
2019-10-02 07:00:01 +08:00
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile:hover .mx_HiddenImagePlaceholder {
|
2021-08-12 17:10:47 +08:00
|
|
|
background-color: $background;
|
2019-10-02 07:00:01 +08:00
|
|
|
}
|