Merge branch 'button-invisible' into 'develop'
Frontend fixes See merge request funkwhale/funkwhale!1205
This commit is contained in:
commit
0dfe633d65
|
@ -7,10 +7,10 @@
|
|||
@input="$emit('input', $event.target.value)"
|
||||
:id="fieldId"
|
||||
:value="value">
|
||||
<button @click.prevent="showPassword = !showPassword" :title="labels.title" class="ui icon button">
|
||||
<button @click.prevent="showPassword = !showPassword" type="button" :title="labels.title" class="ui icon button">
|
||||
<i class="eye icon"></i>
|
||||
</button>
|
||||
<button v-if="copyButton" @click.prevent="copy" class="ui icon button" :title="labels.copy">
|
||||
<button v-if="copyButton" @click.prevent="copy" type="button" class="ui icon button" :title="labels.copy">
|
||||
<i class="copy icon"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -10,7 +10,7 @@ $vibrant-focus-color: var(--vibrant-hover-color) !default;
|
|||
$success-color: #206b00 !default;
|
||||
$success-hover-color: #3a9104 !default;
|
||||
$success-active-color: #198f35 !default;
|
||||
$success-focus-color: var(--$success-hover-color) !default;
|
||||
$success-focus-color: var(--success-hover-color) !default;
|
||||
|
||||
$primary-color: #0050C6 !default;
|
||||
$primary-hover-color: #1678c2 !default;
|
||||
|
|
|
@ -13,6 +13,4 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
.ui.inverted.menu .item .header {
|
||||
color: var(--inverted-menu-item-header-color);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue