mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-23 00:28:48 +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
74 lines
1.4 KiB
Plaintext
74 lines
1.4 KiB
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2022 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.
|
|
*/
|
|
|
|
$width: 320px;
|
|
$height: 220px;
|
|
|
|
.mx_WidgetPip {
|
|
width: $width;
|
|
height: $height;
|
|
}
|
|
|
|
.mx_WidgetPip_overlay {
|
|
width: $width;
|
|
height: $height;
|
|
position: absolute;
|
|
top: 0;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
color: $call-primary-content;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_WidgetPip_header,
|
|
.mx_WidgetPip_footer {
|
|
position: absolute;
|
|
left: 0;
|
|
height: 60px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
transition: opacity ease 0.15s;
|
|
}
|
|
|
|
.mx_WidgetPip_overlay:not(:hover) {
|
|
.mx_WidgetPip_header,
|
|
.mx_WidgetPip_footer {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.mx_WidgetPip_header {
|
|
top: 0;
|
|
padding: $spacing-12;
|
|
display: flex;
|
|
font-size: $font-12px;
|
|
font-weight: var(--cpd-font-weight-semibold);
|
|
background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
|
|
}
|
|
|
|
.mx_WidgetPip_backButton {
|
|
height: $spacing-24;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: $spacing-12;
|
|
|
|
> .mx_Icon {
|
|
color: $call-light-quaternary-content;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.mx_WidgetPip_footer {
|
|
bottom: 0;
|
|
padding: $spacing-12 $spacing-8;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: flex-end;
|
|
background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
|
|
}
|