Use new button variants
This commit is contained in:
parent
866607a949
commit
674eaa5eeb
32 changed files with 87 additions and 92 deletions
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="create-root fill-height">
|
||||
<div class="mt-4 d-flex flex-row align-center">
|
||||
<v-btn id="btn-back" text class="back-button" v-show="$navigation && $navigation.canPop()" @click.stop="goBack"
|
||||
<v-btn id="btn-back" variant="text" class="back-button" v-show="$navigation && $navigation.canPop()" @click.stop="goBack"
|
||||
:disabled="creatingRoom">
|
||||
<v-icon>arrow_back</v-icon>
|
||||
</v-btn>
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
v-on="{ ...roomTopicInputListeners }"></v-text-field>
|
||||
|
||||
<!-- Message History (public room) -->
|
||||
<v-card class="ma-0 mt-10" flat>
|
||||
<v-card class="ma-0 mt-10" variant="flat">
|
||||
<v-card-text class="with-right-label">
|
||||
<div>
|
||||
<div class="paragraph-bold">{{ $t('room_info.message_history') }}</div>
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
<hr color="#ededed" />
|
||||
|
||||
<!-- Limit History (message retention) -->
|
||||
<v-card class="ma-0 mt-2" flat>
|
||||
<v-card class="ma-0 mt-2" variant="flat">
|
||||
<v-card-text class="with-right-label">
|
||||
<div>
|
||||
<div class="paragraph-bold">{{ $t('room_info.message_retention') }}</div>
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
<div class="text-red" v-if="errorMessage != null">{{ this.errorMessage }}</div>
|
||||
|
||||
<!-- Create button -->
|
||||
<v-btn :disabled="!formIsValid || creatingRoom" color="#6360F0" depressed @click.stop="onCreate"
|
||||
<v-btn :disabled="!formIsValid || creatingRoom" color="#6360F0" variant="flat" @click.stop="onCreate"
|
||||
class="filled-button mt-4">
|
||||
<div v-if="creatingRoom && !enterRoomDialog" class="text-center">
|
||||
{{ creatingRoomStatus }}
|
||||
|
|
@ -116,7 +116,7 @@
|
|||
</v-checkbox>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-btn color="black" depressed class="filled-button" @click.stop="onEnterRoom"
|
||||
<v-btn color="black" variant="flat" class="filled-button" @click.stop="onEnterRoom"
|
||||
:disabled="!acceptUA || !selectedProfile.name">
|
||||
{{ $t("join.enter_room") }}
|
||||
</v-btn>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue