mirror of
https://github.com/vector-im/element-web.git
synced 2026-04-03 20:52:50 +02:00
mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
58 lines
1.4 KiB
Plaintext
58 lines
1.4 KiB
Plaintext
/*
|
|
Copyright 2019-2024 New Vector Ltd.
|
|
|
|
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_ReactionsRow {
|
|
color: var(--cpd-color-text-primary);
|
|
|
|
.mx_ReactionsRow_addReactionButton {
|
|
display: inline-block;
|
|
visibility: hidden; /* show on hover of the .mx_EventTile */
|
|
width: 16px;
|
|
height: 16px;
|
|
padding: var(--cpd-space-1x);
|
|
vertical-align: middle;
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
|
|
svg {
|
|
height: inherit;
|
|
width: inherit;
|
|
color: $tertiary-content;
|
|
}
|
|
|
|
&.mx_ReactionsRow_addReactionButton_active {
|
|
visibility: visible; /* keep showing whilst the context menu is shown */
|
|
}
|
|
|
|
&:hover,
|
|
&.mx_ReactionsRow_addReactionButton_active {
|
|
svg {
|
|
color: $primary-content;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_EventTile:hover .mx_ReactionsRow_addReactionButton {
|
|
visibility: visible;
|
|
}
|
|
|
|
.mx_ReactionsRow_showAll {
|
|
color: $tertiary-content;
|
|
|
|
&.mx_AccessibleButton_kind_link_inline {
|
|
font-size: $font-12px;
|
|
line-height: $font-20px;
|
|
margin-inline-start: $spacing-4;
|
|
vertical-align: middle;
|
|
|
|
&:hover {
|
|
color: $primary-content;
|
|
}
|
|
}
|
|
}
|