forked from AkkomaGang/akkoma-fe
fix profile field buttons, remove attachment button
This commit is contained in:
parent
fe78ed78fd
commit
dcba920f92
3 changed files with 18 additions and 31 deletions
|
@ -302,11 +302,12 @@
|
||||||
:key="file.url"
|
:key="file.url"
|
||||||
class="media-upload-wrapper"
|
class="media-upload-wrapper"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<button
|
||||||
class="fa-scale-110 fa-old-padding"
|
class="button-unstyled hider"
|
||||||
icon="times"
|
|
||||||
@click="removeMediaFile(file)"
|
@click="removeMediaFile(file)"
|
||||||
/>
|
>
|
||||||
|
<FAIcon icon="times" />
|
||||||
|
</button>
|
||||||
<attachment
|
<attachment
|
||||||
:attachment="file"
|
:attachment="file"
|
||||||
:set-media="() => $store.dispatch('setMedia', newStatus.files)"
|
:set-media="() => $store.dispatch('setMedia', newStatus.files)"
|
||||||
|
@ -516,26 +517,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.attachments .media-upload-wrapper {
|
.attachments .media-upload-wrapper {
|
||||||
padding: 0 0.5em;
|
position: relative;
|
||||||
|
|
||||||
.attachment {
|
.attachment {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fa-scale-110 fa-old-padding {
|
|
||||||
position: absolute;
|
|
||||||
margin: 10px;
|
|
||||||
margin: .75em;
|
|
||||||
padding: .5em;
|
|
||||||
background: rgba(230,230,230,0.6);
|
|
||||||
z-index: 2;
|
|
||||||
color: black;
|
|
||||||
border-radius: $fallback--attachmentRadius;
|
|
||||||
border-radius: var(--attachmentRadius, $fallback--attachmentRadius);
|
|
||||||
font-weight: bold;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -111,16 +111,17 @@
|
||||||
.profile-fields {
|
.profile-fields {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
&>.emoji-input {
|
& > .emoji-input {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
margin: 0 .2em .5em;
|
margin: 0 0.2em 0.5em;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&>.icon-container {
|
& > .button-unstyled {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
margin: 0 .2em .5em;
|
margin: 0 0.2em 0.5em;
|
||||||
|
padding: 0 0.5em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -124,24 +124,24 @@
|
||||||
:placeholder="$t('settings.profile_fields.value')"
|
:placeholder="$t('settings.profile_fields.value')"
|
||||||
>
|
>
|
||||||
</EmojiInput>
|
</EmojiInput>
|
||||||
<div
|
<button
|
||||||
class="icon-container"
|
class="button-unstyled"
|
||||||
|
@click="deleteField(i)"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
v-show="newFields.length > 1"
|
v-show="newFields.length > 1"
|
||||||
icon="times"
|
icon="times"
|
||||||
@click="deleteField(i)"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<a
|
<button
|
||||||
v-if="newFields.length < maxFields"
|
v-if="newFields.length < maxFields"
|
||||||
class="add-field faint"
|
class="add-field faint button-unstyled"
|
||||||
@click="addField"
|
@click="addField"
|
||||||
>
|
>
|
||||||
<FAIcon icon="plus" />
|
<FAIcon icon="plus" />
|
||||||
{{ $t("settings.profile_fields.add_field") }}
|
{{ $t("settings.profile_fields.add_field") }}
|
||||||
</a>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<p>
|
<p>
|
||||||
<Checkbox v-model="bot">
|
<Checkbox v-model="bot">
|
||||||
|
|
Loading…
Reference in a new issue