diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/App.scss | 2 | ||||
| -rw-r--r-- | src/components/notification/notification.vue | 10 | ||||
| -rw-r--r-- | src/components/timeline/timeline.vue | 4 |
3 files changed, 10 insertions, 6 deletions
diff --git a/src/App.scss b/src/App.scss index 1d0abb51..76a5e797 100644 --- a/src/App.scss +++ b/src/App.scss @@ -71,7 +71,6 @@ a { } .button-default { - user-select: none; color: $fallback--text; color: var(--btnText, $fallback--text); background-color: $fallback--fg; @@ -85,6 +84,7 @@ a { font-size: 14px; font-family: sans-serif; font-family: var(--interfaceFont, sans-serif); + user-select: none; i[class*=icon-], :not(&.-icon), diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue index ba3648fd..08eb80c9 100644 --- a/src/components/notification/notification.vue +++ b/src/components/notification/notification.vue @@ -135,10 +135,12 @@ v-if="needMute" class="button-unstyled" @click.prevent="toggleMute" - ><FAIcon - class="fa-scale-110 fa-old-padding" - icon="eye-slash" - /></button> + > + <FAIcon + class="fa-scale-110 fa-old-padding" + icon="eye-slash" + /> + </button> </span> <div v-if="notification.type === 'follow' || notification.type === 'follow_request'" diff --git a/src/components/timeline/timeline.vue b/src/components/timeline/timeline.vue index 52fd674e..0326342b 100644 --- a/src/components/timeline/timeline.vue +++ b/src/components/timeline/timeline.vue @@ -66,7 +66,9 @@ class="button-unstyled -link -fullwidth" @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> <div v-else |
