Files
element-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.

70 lines
1.7 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.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
*/
.mx_MFileBody_download {
2021-11-11 14:37:29 +01:00
color: $accent;
height: var(--cpd-space-9x);
}
.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%;
}
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 {
font: var(--cpd-font-body-md-regular);
color: var(--cpd-color-text-primary);
2021-03-04 20:07:48 -07:00
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;
}
}