2018-04-12 07:23:35 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
Copyright 2015-2021 The Matrix.org Foundation C.I.C.
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 07:23:35 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_MFileBody_download {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $accent;
|
2024-10-15 02:08:05 +08:00
|
|
|
height: var(--cpd-space-9x);
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MFileBody_download object {
|
|
|
|
margin-left: -16px;
|
|
|
|
padding-right: 4px;
|
|
|
|
margin-top: -4px;
|
|
|
|
vertical-align: middle;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2022-03-03 01:27:36 +08:00
|
|
|
/* Remove the border and padding for iframes for download links. */
|
|
|
|
.mx_MFileBody_download iframe {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
border: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-03-05 11:07:48 +08:00
|
|
|
.mx_MFileBody_info {
|
2021-07-30 05:36:50 +08:00
|
|
|
cursor: pointer;
|
|
|
|
|
2021-03-05 11:07:48 +08:00
|
|
|
.mx_MFileBody_info_icon {
|
2021-08-25 17:46:48 +08:00
|
|
|
background-color: $system;
|
2021-03-05 11:07:48 +08:00
|
|
|
border-radius: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 12px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: cover;
|
|
|
|
mask-image: url("$(res)/img/element-icons/room/composer/attach.svg");
|
2021-08-25 17:46:48 +08:00
|
|
|
background-color: $secondary-content;
|
2021-07-15 21:16:05 +08:00
|
|
|
width: 15px;
|
2021-03-05 11:07:48 +08:00
|
|
|
height: 15px;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
2021-07-15 21:16:05 +08:00
|
|
|
left: 8px;
|
2021-03-05 11:07:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MFileBody_info_filename {
|
2024-10-15 02:08:05 +08:00
|
|
|
font: var(--cpd-font-body-md-regular);
|
|
|
|
color: var(--cpd-color-text-primary);
|
2021-03-05 11:07:48 +08:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: inline-block;
|
2022-07-27 21:39:29 +08:00
|
|
|
width: calc(100% - 32px - 12px); /* 32px icon, 12px margin on the icon */
|
2021-03-05 11:07:48 +08:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|