Aria-label improvements for chatuserlist/networklist
This commit is contained in:
parent
7107372a6f
commit
f23cc0712c
@ -1,5 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<aside ref="userlist" class="userlist" @mouseleave="removeHoverUser">
|
<aside
|
||||||
|
ref="userlist"
|
||||||
|
class="userlist"
|
||||||
|
@mouseleave="removeHoverUser"
|
||||||
|
aria-label="User List for "
|
||||||
|
+
|
||||||
|
channel.name
|
||||||
|
>
|
||||||
<div class="count">
|
<div class="count">
|
||||||
<input
|
<input
|
||||||
ref="input"
|
ref="input"
|
||||||
|
@ -1,8 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="$store.state.networks.length === 0" class="empty" role="navigation">
|
<div
|
||||||
|
v-if="$store.state.networks.length === 0"
|
||||||
|
class="empty"
|
||||||
|
role="navigation"
|
||||||
|
aria-label="Network and Channel list"
|
||||||
|
>
|
||||||
You are not connected to any networks yet.
|
You are not connected to any networks yet.
|
||||||
</div>
|
</div>
|
||||||
<div v-else ref="networklist" role="navigation">
|
<div v-else ref="networklist" role="navigation" aria-label="Network and Channel list">
|
||||||
<div class="jump-to-input">
|
<div class="jump-to-input">
|
||||||
<input
|
<input
|
||||||
ref="searchInput"
|
ref="searchInput"
|
||||||
|
Loading…
Reference in New Issue
Block a user