mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-07 21:26:13 +02:00
* Replace icons with Compound alternatives Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove unused icon Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Replace more icons with Compound alternatives Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Swap for outline icons in spotlight & update screenshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch emoji picker to use emoji for header icons Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update screenshot Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update football emoji Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch from svg masks to svg rendering in ExtensionsCard Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch from svg masks to svg rendering in BaseCard Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch from svg masks to svg rendering in EmojiPicker Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch from svg masks to svg rendering in Spotlight Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshot Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update screenshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak emoji and fix disabled state Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Revert size change Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Delint Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add test Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
126 lines
3.3 KiB
Plaintext
126 lines
3.3 KiB
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2024 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
.mx_ExtensionsCard {
|
|
--cpd-separator-spacing: var(--cpd-space-6x);
|
|
--AddExtension-overlap: -76px;
|
|
.mx_AutoHideScrollbar {
|
|
padding: 0 var(--cpd-space-4x);
|
|
margin-top: var(--cpd-space-6x);
|
|
box-sizing: border-box;
|
|
|
|
/* Styling for the "Add extensions" button */
|
|
& > button {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.mx_ExtensionsCard_container {
|
|
text-align: center;
|
|
margin: $spacing-20 var(--cpd-space-4x) 0;
|
|
}
|
|
|
|
.mx_ExtensionsCard_Button {
|
|
/* this button is special so we have to override some of the original styling */
|
|
/* as we will be applying it in its children */
|
|
padding: 0;
|
|
height: auto;
|
|
color: $tertiary-content;
|
|
position: relative;
|
|
|
|
.mx_WidgetAvatar {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.mx_ExtensionsCard_icon_app {
|
|
padding: var(--cpd-space-2x) var(--cpd-space-12x) var(--cpd-space-2x) var(--cpd-space-3x);
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
p {
|
|
margin: 0 var(--cpd-space-3x);
|
|
color: $primary-content;
|
|
}
|
|
}
|
|
|
|
.mx_ExtensionsCard_app_pinToggle,
|
|
.mx_ExtensionsCard_app_options {
|
|
position: absolute;
|
|
top: 0;
|
|
height: 100%; /* to give bigger interactive zone */
|
|
width: 24px;
|
|
padding: var(--cpd-space-3x) var(--cpd-space-1x);
|
|
box-sizing: border-box;
|
|
flex-shrink: 0;
|
|
|
|
svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
color: $icon-button-color;
|
|
}
|
|
|
|
&:hover {
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
height: 24px;
|
|
width: 24px;
|
|
top: var(--cpd-space-2x); /* equal to padding-top of parent */
|
|
left: 0;
|
|
border-radius: 12px;
|
|
background-color: rgb(141, 151, 165, 0.1);
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_ExtensionsCard_app_pinToggle {
|
|
right: 8px;
|
|
}
|
|
|
|
.mx_ExtensionsCard_app_options {
|
|
right: 32px; /* 24 + 8 */
|
|
}
|
|
|
|
&.mx_ExtensionsCard_Button_pinned {
|
|
&::after {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
.mx_ExtensionsCard_app_pinToggle svg {
|
|
color: $accent;
|
|
}
|
|
}
|
|
|
|
&::before {
|
|
content: unset;
|
|
}
|
|
|
|
&::after {
|
|
top: var(--cpd-space-2x); /* re-align based on the height change */
|
|
pointer-events: none; /* pass through to the real button */
|
|
}
|
|
}
|
|
|
|
/* Set layout for everyone button */
|
|
a[data-kind="primary"] {
|
|
margin-top: var(--cpd-space-10x);
|
|
}
|
|
|
|
.mx_EmptyState::before {
|
|
/* Overlap the Add extensions button */
|
|
top: var(--AddExtension-overlap);
|
|
}
|
|
|
|
.mx_EmptyState {
|
|
/* Stop empty state scrolling */
|
|
height: calc(100% + var(--AddExtension-overlap));
|
|
}
|
|
}
|