mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 14:44:13 +00:00
Use Vue to show/hide insecure/disconnected icons instead of CSS
This commit is contained in:
parent
848186d14b
commit
f8b5983f2c
2 changed files with 2 additions and 15 deletions
|
@ -22,12 +22,14 @@
|
|||
class="name"
|
||||
>{{ channel.name }}</span>
|
||||
<span
|
||||
v-if="network.status.connected && !network.status.secure"
|
||||
class="not-secure-tooltip tooltipped tooltipped-w"
|
||||
aria-label="Insecure connection"
|
||||
>
|
||||
<span class="not-secure-icon" />
|
||||
</span>
|
||||
<span
|
||||
v-if="!network.status.connected"
|
||||
class="not-connected-tooltip tooltipped tooltipped-w"
|
||||
aria-label="Disconnected"
|
||||
>
|
||||
|
|
|
@ -661,21 +661,6 @@ background on hover (unless active) */
|
|||
color: #c0f8c3;
|
||||
}
|
||||
|
||||
#sidebar .not-connected-tooltip,
|
||||
#sidebar .not-secure-tooltip {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#sidebar .not-connected .not-connected-tooltip,
|
||||
#sidebar .not-secure .not-secure-tooltip {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#sidebar .not-connected .not-secure-tooltip {
|
||||
/* Do not display insecure icon if disconnected */
|
||||
display: none;
|
||||
}
|
||||
|
||||
#sidebar .not-connected-tooltip,
|
||||
#sidebar .not-secure-tooltip,
|
||||
#sidebar .parted-channel-tooltip {
|
||||
|
|
Loading…
Reference in a new issue