aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/App.scss12
-rw-r--r--src/components/notification/notification.vue10
2 files changed, 13 insertions, 9 deletions
diff --git a/src/App.scss b/src/App.scss
index 76a5e797..b2c7be13 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -71,6 +71,7 @@ a {
}
.button-default {
+ user-select: none;
color: $fallback--text;
color: var(--btnText, $fallback--text);
background-color: $fallback--fg;
@@ -84,10 +85,8 @@ a {
font-size: 14px;
font-family: sans-serif;
font-family: var(--interfaceFont, sans-serif);
- user-select: none;
i[class*=icon-],
- :not(&.-icon),
.svg-inline--fa {
color: $fallback--text;
color: var(--btnText, $fallback--text);
@@ -110,7 +109,8 @@ a {
background-color: $fallback--fg;
background-color: var(--btnPressed, $fallback--fg);
- svg, i {
+ svg,
+ i {
color: $fallback--text;
color: var(--btnPressedText, $fallback--text);
}
@@ -123,7 +123,8 @@ a {
background-color: $fallback--fg;
background-color: var(--btnDisabled, $fallback--fg);
- svg, i {
+ svg,
+ i {
color: $fallback--text;
color: var(--btnDisabledText, $fallback--text);
}
@@ -137,7 +138,8 @@ a {
box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.3), 0px 1px 0px 0px rgba(0, 0, 0, 0.2) inset, 0px -1px 0px 0px rgba(255, 255, 255, 0.2) inset;
box-shadow: var(--buttonPressedShadow);
- svg, i {
+ svg,
+ i {
color: $fallback--text;
color: var(--btnToggledText, $fallback--text);
}
diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue
index 08eb80c9..f56aa977 100644
--- a/src/components/notification/notification.vue
+++ b/src/components/notification/notification.vue
@@ -17,10 +17,12 @@
<button
class="button-unstyled unmute"
@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>
</div>
<div
v-else