Files
ThreadNet-Web/res/css/views/messages/_MFileBody.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

92 lines
2.3 KiB
Plaintext
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2015-2021 The Matrix.org Foundation C.I.C.
2024-09-09 14:57:16 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
*/
.mx_MFileBody_download {
2021-11-11 14:37:29 +01:00
color: $accent;
2021-03-09 12:54:20 -07:00
.mx_MFileBody_download_icon {
/* 12px instead of 14px to better match surrounding font size */
2021-03-09 12:54:20 -07:00
width: 12px;
height: 12px;
mask-size: 12px;
mask-position: center;
mask-repeat: no-repeat;
mask-image: url("$(res)/img/download.svg");
2021-11-11 14:37:29 +01:00
background-color: $accent;
2021-03-09 12:54:20 -07:00
display: inline-block;
}
}
.mx_MFileBody_download a {
2021-11-11 14:37:29 +01:00
color: $accent;
text-decoration: none;
cursor: pointer;
}
.mx_MFileBody_download object {
margin-left: -16px;
padding-right: 4px;
margin-top: -4px;
vertical-align: middle;
pointer-events: none;
}
/* Remove the border and padding for iframes for download links. */
.mx_MFileBody_download iframe {
margin: 0px;
padding: 0px;
border: none;
width: 100%;
/* Set the height of the iframe to be 1 line of text.
* Iframes don't automatically size themselves to fit their content.
* So either we have to fix the height of the iframe using CSS or
* use javascript's cross-origin postMessage API to communicate how
* big the content of the iframe is. */
height: 1.5em;
}
2021-03-04 20:07:48 -07:00
.mx_MFileBody_info {
2021-07-29 15:36:50 -06:00
cursor: pointer;
2021-03-04 20:07:48 -07:00
.mx_MFileBody_info_icon {
2021-08-25 11:46:48 +02:00
background-color: $system;
2021-03-04 20:07:48 -07: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 11:46:48 +02:00
background-color: $secondary-content;
2021-07-15 15:16:05 +02:00
width: 15px;
2021-03-04 20:07:48 -07:00
height: 15px;
position: absolute;
top: 8px;
2021-07-15 15:16:05 +02:00
left: 8px;
2021-03-04 20:07:48 -07:00
}
}
.mx_MFileBody_info_filename {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
display: inline-block;
width: calc(100% - 32px - 12px); /* 32px icon, 12px margin on the icon */
2021-03-04 20:07:48 -07:00
vertical-align: middle;
}
}