Use new button variants
This commit is contained in:
parent
866607a949
commit
674eaa5eeb
32 changed files with 87 additions and 92 deletions
|
|
@ -5,7 +5,7 @@
|
|||
<div class="room-name no-upper">{{ $t("profile.title") }}</div>
|
||||
<v-btn
|
||||
id="btn-close"
|
||||
text
|
||||
variant="text"
|
||||
class="header-button-right"
|
||||
v-show="$navigation && $navigation.canPop()"
|
||||
@click.stop="$navigation.pop"
|
||||
|
|
@ -53,7 +53,7 @@
|
|||
<!-- <div v-if="$matrix.currentUser.is_guest">
|
||||
{{ $t("profile.temporary_identity") }}
|
||||
</div> -->
|
||||
<v-btn id="btn-logout" depressed block class="outlined-button" @click.stop="showLogoutPopup=true">
|
||||
<v-btn id="btn-logout" variant="flat" block class="outlined-button" @click.stop="showLogoutPopup=true">
|
||||
{{ $t("menu.logout") }}
|
||||
</v-btn>
|
||||
<LogoutRoomDialog
|
||||
|
|
@ -151,14 +151,14 @@
|
|||
<v-divider></v-divider>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn id="btn-password-cancel" text @click="closeEditPasswordDialog">{{
|
||||
<v-btn id="btn-password-cancel" variant="text" @click="closeEditPasswordDialog">{{
|
||||
$t("menu.cancel")
|
||||
}}</v-btn>
|
||||
<v-btn
|
||||
id="btn-password-set"
|
||||
:disabled="!passwordsMatch"
|
||||
color="primary"
|
||||
text
|
||||
variant="text"
|
||||
@click="
|
||||
setPassword(
|
||||
$matrix.currentUser.is_guest
|
||||
|
|
@ -191,13 +191,13 @@
|
|||
<v-divider></v-divider>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn id="btn-displayname-cancel" text @click="showEditDisplaynameDialog = false">{{
|
||||
<v-btn id="btn-displayname-cancel" variant="text" @click="showEditDisplaynameDialog = false">{{
|
||||
$t("menu.cancel")
|
||||
}}</v-btn>
|
||||
<v-btn
|
||||
id="btn-displayname-set"
|
||||
color="primary"
|
||||
text
|
||||
variant="text"
|
||||
@click="
|
||||
updateDisplayName(editValue);
|
||||
showEditDisplaynameDialog = false;
|
||||
|
|
@ -230,8 +230,7 @@
|
|||
<v-row cols="12">
|
||||
<v-col cols="6">
|
||||
<v-btn
|
||||
depressed
|
||||
text
|
||||
variant="flat"
|
||||
block
|
||||
class="text-button"
|
||||
@click="onNotifyDialogClosed"
|
||||
|
|
@ -241,7 +240,7 @@
|
|||
<v-col cols="6" align="center">
|
||||
<v-btn
|
||||
color="primary"
|
||||
depressed
|
||||
variant="flat"
|
||||
block
|
||||
class="filled-button"
|
||||
@click.stop="onNotifyDialog"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue