Compare commits
No commits in common. "b7508ed23e017f67b3898a8c513b9e668092dcf8" and "16e597d7cc09827dfbcfe766399ee0c2fe631686" have entirely different histories.
b7508ed23e
...
16e597d7cc
3 changed files with 6 additions and 9 deletions
|
@ -771,8 +771,6 @@ option {
|
||||||
|
|
||||||
.btn.button-default {
|
.btn.button-default {
|
||||||
min-height: 2em;
|
min-height: 2em;
|
||||||
padding-left: 0.5em;
|
|
||||||
padding-right: 0.5em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.new-status-notification {
|
.new-status-notification {
|
||||||
|
@ -786,11 +784,6 @@ option {
|
||||||
.mobile-hidden {
|
.mobile-hidden {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn.button-default {
|
|
||||||
padding-left: 0.7em;
|
|
||||||
padding-right: 0.7em;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes spin {
|
@keyframes spin {
|
||||||
|
|
|
@ -303,6 +303,10 @@
|
||||||
button {
|
button {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.subscribe-button {
|
||||||
|
width: 2em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -198,7 +198,7 @@
|
||||||
<template v-if="relationship.following">
|
<template v-if="relationship.following">
|
||||||
<ProgressButton
|
<ProgressButton
|
||||||
v-if="!relationship.subscribing"
|
v-if="!relationship.subscribing"
|
||||||
class="btn button-default"
|
class="btn button-default subscribe-button"
|
||||||
:click="subscribeUser"
|
:click="subscribeUser"
|
||||||
:title="$t('user_card.subscribe')"
|
:title="$t('user_card.subscribe')"
|
||||||
>
|
>
|
||||||
|
@ -206,7 +206,7 @@
|
||||||
</ProgressButton>
|
</ProgressButton>
|
||||||
<ProgressButton
|
<ProgressButton
|
||||||
v-else
|
v-else
|
||||||
class="btn button-default toggled"
|
class="btn button-default subscribe-button toggled"
|
||||||
:click="unsubscribeUser"
|
:click="unsubscribeUser"
|
||||||
:title="$t('user_card.unsubscribe')"
|
:title="$t('user_card.unsubscribe')"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue