mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-23 16:49:23 +08:00
491f0cd08a
* Copyright headers 1 * Licence headers 2 * Copyright Headers 3 * Copyright Headers 4 * Copyright Headers 5 * Copyright Headers 6 * Copyright headers 7 * Add copyright headers for html and config file * Replace license files and update package.json * Update with CLA * lint
92 lines
2.3 KiB
Plaintext
92 lines
2.3 KiB
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2015-2021 The Matrix.org Foundation C.I.C.
|
|
|
|
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 {
|
|
color: $accent;
|
|
|
|
.mx_MFileBody_download_icon {
|
|
/* 12px instead of 14px to better match surrounding font size */
|
|
width: 12px;
|
|
height: 12px;
|
|
mask-size: 12px;
|
|
|
|
mask-position: center;
|
|
mask-repeat: no-repeat;
|
|
mask-image: url("$(res)/img/download.svg");
|
|
background-color: $accent;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.mx_MFileBody_download a {
|
|
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;
|
|
}
|
|
|
|
.mx_MFileBody_info {
|
|
cursor: pointer;
|
|
|
|
.mx_MFileBody_info_icon {
|
|
background-color: $system;
|
|
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");
|
|
background-color: $secondary-content;
|
|
width: 15px;
|
|
height: 15px;
|
|
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 8px;
|
|
}
|
|
}
|
|
|
|
.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 */
|
|
vertical-align: middle;
|
|
}
|
|
}
|