Skip to content

Commit

Permalink
fix(AdminSettings): make all button visually interactive
Browse files Browse the repository at this point in the history
- replace tertiary-no-background with tertiary

Signed-off-by: Grigorii K. Shartsev <[email protected]>
  • Loading branch information
ShGKme committed Jul 29, 2024
1 parent 361a3fa commit c413a8b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/AdminSettings/RecordingServer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</NcCheckboxRadioSwitch>

<NcButton v-show="!loading"
type="tertiary-no-background"
type="tertiary"
:aria-label="t('spreed', 'Delete this server')"
@click="removeServer">
<template #icon>
Expand Down
2 changes: 1 addition & 1 deletion src/components/AdminSettings/SignalingServer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</NcCheckboxRadioSwitch>

<NcButton v-show="!loading"
type="tertiary-no-background"
type="tertiary"
:aria-label="t('spreed', 'Delete this server')"
@click="removeServer">
<template #icon>
Expand Down
3 changes: 2 additions & 1 deletion src/components/AdminSettings/StunServer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
fill-color="#E9322D" />

<NcButton v-show="!loading"
type="tertiary-no-background"
type="tertiary"
:aria-label="t('spreed', 'Delete this server')"
@click="removeServer">
<template #icon>
Expand Down Expand Up @@ -111,6 +111,7 @@ export default {
display: flex;
align-items: center;
margin-bottom: calc(var(--default-grid-baseline) * 2);
gap: var(--default-grid-baseline);
&__wrapper {
display: flex;
Expand Down
4 changes: 2 additions & 2 deletions src/components/AdminSettings/TurnServer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
@input="updateProtocols" />

<NcButton v-show="!loading"
type="tertiary-no-background"
type="tertiary"
:aria-label="testResult"
@click="testServer">
<template #icon>
Expand All @@ -64,7 +64,7 @@
</template>
</NcButton>
<NcButton v-show="!loading"
type="tertiary-no-background"
type="tertiary"
:aria-label="t('spreed', 'Delete this server')"
@click="removeServer">
<template #icon>
Expand Down

0 comments on commit c413a8b

Please sign in to comment.