2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket 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_LinkPreviewWidget {
|
2022-07-04 08:10:46 +02:00
|
|
|
margin: $spacing-16 0 $spacing-16 auto;
|
2018-04-12 01:23:35 +02:00
|
|
|
display: flex;
|
2022-07-04 08:10:46 +02:00
|
|
|
column-gap: $spacing-4;
|
|
|
|
border-inline-start: 2px solid $preview-widget-bar-color;
|
2021-07-22 13:10:25 +02:00
|
|
|
border-radius: 2px;
|
2021-11-29 13:52:09 +01:00
|
|
|
color: $info-plinth-fg-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2022-07-04 08:10:46 +02:00
|
|
|
.mx_MatrixChat_useCompactLayout & {
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Exclude mx_LinkPreviewGroup_hide from wrapping */
|
2022-07-04 08:10:46 +02:00
|
|
|
.mx_LinkPreviewWidget_wrapImageCaption {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
row-gap: $spacing-8;
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2022-07-04 08:10:46 +02:00
|
|
|
.mx_LinkPreviewWidget_image,
|
|
|
|
.mx_LinkPreviewWidget_caption {
|
|
|
|
margin-inline-start: $spacing-16;
|
2022-07-27 15:39:29 +02:00
|
|
|
min-width: 0; /* Prevent blowout */
|
2022-07-04 08:10:46 +02:00
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2022-07-04 08:10:46 +02:00
|
|
|
.mx_LinkPreviewWidget_image {
|
|
|
|
flex: 0 0 100px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2022-07-04 08:10:46 +02:00
|
|
|
.mx_LinkPreviewWidget_caption {
|
|
|
|
flex: 1;
|
2022-07-27 15:39:29 +02:00
|
|
|
overflow: hidden; /* cause it to wrap rather than clip */
|
2022-07-04 08:10:46 +02:00
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2022-07-04 08:10:46 +02:00
|
|
|
.mx_LinkPreviewWidget_title,
|
|
|
|
.mx_LinkPreviewWidget_description {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_LinkPreviewWidget_title {
|
|
|
|
font-weight: bold;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
|
|
|
|
.mx_LinkPreviewWidget_siteName {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_LinkPreviewWidget_description {
|
|
|
|
margin-top: $spacing-8;
|
|
|
|
word-wrap: break-word;
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
}
|