fix warnings

This commit is contained in:
Shpuld Shpuldson 2020-11-24 16:10:03 +02:00
parent 38c32c7f7a
commit a6e495e413
3 changed files with 10 additions and 6 deletions

View file

@ -71,7 +71,6 @@ a {
} }
.button-default { .button-default {
user-select: none;
color: $fallback--text; color: $fallback--text;
color: var(--btnText, $fallback--text); color: var(--btnText, $fallback--text);
background-color: $fallback--fg; background-color: $fallback--fg;
@ -85,6 +84,7 @@ a {
font-size: 14px; font-size: 14px;
font-family: sans-serif; font-family: sans-serif;
font-family: var(--interfaceFont, sans-serif); font-family: var(--interfaceFont, sans-serif);
user-select: none;
i[class*=icon-], i[class*=icon-],
:not(&.-icon), :not(&.-icon),

View file

@ -135,10 +135,12 @@
v-if="needMute" v-if="needMute"
class="button-unstyled" class="button-unstyled"
@click.prevent="toggleMute" @click.prevent="toggleMute"
><FAIcon >
class="fa-scale-110 fa-old-padding" <FAIcon
icon="eye-slash" class="fa-scale-110 fa-old-padding"
/></button> icon="eye-slash"
/>
</button>
</span> </span>
<div <div
v-if="notification.type === 'follow' || notification.type === 'follow_request'" v-if="notification.type === 'follow' || notification.type === 'follow_request'"

View file

@ -66,7 +66,9 @@
class="button-unstyled -link -fullwidth" class="button-unstyled -link -fullwidth"
@click.prevent="fetchOlderStatuses()" @click.prevent="fetchOlderStatuses()"
> >
<div class="new-status-notification text-center panel-footer">{{ $t('timeline.load_older') }}</div> <div class="new-status-notification text-center panel-footer">
{{ $t('timeline.load_older') }}
</div>
</button> </button>
<div <div
v-else v-else