From 66cdec00750e45316e3252e81c41f7f6758ed5d8 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Mon, 27 Jan 2020 11:43:25 +0200 Subject: [PATCH 1/2] Fix right padding on user list search --- client/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/client/css/style.css b/client/css/style.css index e88b85c0..9cf5b3ca 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -1666,6 +1666,7 @@ part/quit messages where we don't load previews (adds a blank line otherwise) */ font: inherit; outline: 0; padding: 13px; + padding-right: 30px; width: 100%; } From 7afafdd25e2b83799d455d18138ce7ba966248ea Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Mon, 27 Jan 2020 11:44:36 +0200 Subject: [PATCH 2/2] Change mouseover to mouseenter --- client/components/ContextMenu.vue | 2 +- client/components/Username.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/ContextMenu.vue b/client/components/ContextMenu.vue index f060bb0d..81011443 100644 --- a/client/components/ContextMenu.vue +++ b/client/components/ContextMenu.vue @@ -27,7 +27,7 @@ {active: id === activeItem}, ]" role="menuitem" - @mouseover="hoverItem(id)" + @mouseenter="hoverItem(id)" @click="clickItem(item)" > {{ item.label }} diff --git a/client/components/Username.vue b/client/components/Username.vue index 80f6023f..a301da37 100644 --- a/client/components/Username.vue +++ b/client/components/Username.vue @@ -3,7 +3,7 @@ :class="['user', nickColor, {active: active}]" :data-name="user.nick" role="button" - v-on="onHover ? {mouseover: hover} : {}" + v-on="onHover ? {mouseenter: hover} : {}" @click.prevent="openContextMenu" @contextmenu.prevent="openContextMenu" >{{ user.mode }}{{ user.nick }}