mirror of
https://github.com/vector-im/element-call.git
synced 2026-07-12 18:39:19 +00:00
Spacing for emoji buttons search
This commit is contained in:
@@ -39,12 +39,16 @@
|
|||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.reactionsMenu {
|
||||||
|
min-height: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
.reactionButton {
|
.reactionButton {
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
font-size: 1.8em;
|
font-size: 1.4em;
|
||||||
width: 1.8em;
|
width: 1.4em;
|
||||||
height: 1.8em;
|
height: 1.4em;
|
||||||
border-radius: 1.8em;
|
border-radius: 1.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.verticalSeperator {
|
.verticalSeperator {
|
||||||
@@ -59,6 +63,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
gap: var(--cpd-separator-spacing);
|
gap: var(--cpd-separator-spacing);
|
||||||
|
margin-bottom: var(--cpd-space-3x);
|
||||||
}
|
}
|
||||||
|
|
||||||
.searchForm > label {
|
.searchForm > label {
|
||||||
|
|||||||
@@ -171,10 +171,9 @@ export function ReactionPopupMenu({
|
|||||||
onClick={() => setIsSearching(false)}
|
onClick={() => setIsSearching(false)}
|
||||||
/>
|
/>
|
||||||
</Form.Root>
|
</Form.Root>
|
||||||
<Separator />
|
|
||||||
</>
|
</>
|
||||||
) : null}
|
) : null}
|
||||||
<menu>
|
<menu className={styles.reactionsMenu}>
|
||||||
{filteredReactionSet.map((reaction) => (
|
{filteredReactionSet.map((reaction) => (
|
||||||
<li className={styles.reactionPopupMenuItem} key={reaction.name}>
|
<li className={styles.reactionPopupMenuItem} key={reaction.name}>
|
||||||
<Tooltip label={reaction.name}>
|
<Tooltip label={reaction.name}>
|
||||||
@@ -192,7 +191,7 @@ export function ReactionPopupMenu({
|
|||||||
</menu>
|
</menu>
|
||||||
</section>
|
</section>
|
||||||
{!isSearching ? (
|
{!isSearching ? (
|
||||||
<section>
|
<section style={{ marginLeft: "var(--cpd-separator-spacing)" }}>
|
||||||
<li key="search" className={styles.reactionPopupMenuItem}>
|
<li key="search" className={styles.reactionPopupMenuItem}>
|
||||||
<Tooltip label={t("common.search")}>
|
<Tooltip label={t("common.search")}>
|
||||||
<CpdButton
|
<CpdButton
|
||||||
|
|||||||
Reference in New Issue
Block a user