Merge pull request #3730 from thelounge/xpaw/user-search-fixes
Small fixes to user list search
This commit is contained in:
commit
1bdeae2b76
@ -27,7 +27,7 @@
|
|||||||
{active: id === activeItem},
|
{active: id === activeItem},
|
||||||
]"
|
]"
|
||||||
role="menuitem"
|
role="menuitem"
|
||||||
@mouseover="hoverItem(id)"
|
@mouseenter="hoverItem(id)"
|
||||||
@click="clickItem(item)"
|
@click="clickItem(item)"
|
||||||
>
|
>
|
||||||
{{ item.label }}
|
{{ item.label }}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
:class="['user', nickColor, {active: active}]"
|
:class="['user', nickColor, {active: active}]"
|
||||||
:data-name="user.nick"
|
:data-name="user.nick"
|
||||||
role="button"
|
role="button"
|
||||||
v-on="onHover ? {mouseover: hover} : {}"
|
v-on="onHover ? {mouseenter: hover} : {}"
|
||||||
@click.prevent="openContextMenu"
|
@click.prevent="openContextMenu"
|
||||||
@contextmenu.prevent="openContextMenu"
|
@contextmenu.prevent="openContextMenu"
|
||||||
><slot>{{ user.mode }}{{ user.nick }}</slot></span
|
><slot>{{ user.mode }}{{ user.nick }}</slot></span
|
||||||
|
@ -1666,6 +1666,7 @@ part/quit messages where we don't load previews (adds a blank line otherwise) */
|
|||||||
font: inherit;
|
font: inherit;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
padding: 13px;
|
padding: 13px;
|
||||||
|
padding-right: 30px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user