mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
fix some css
This commit is contained in:
parent
ee304249fb
commit
de78d5b485
8 changed files with 7 additions and 8 deletions
|
@ -79,6 +79,7 @@ export default {
|
|||
.btn + .btn {
|
||||
margin-left: .5rem;
|
||||
}
|
||||
background-color: $background-color-primary !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
@remove="onRemoveTag({ option: tag, removeTag })"
|
||||
:title="tag"
|
||||
:disabled="disabled || disabledItems.includes(tag)"
|
||||
variant="light"
|
||||
class="border border-dark mb-2"
|
||||
>
|
||||
<icon v-if="tagIcon" :iname="tagIcon" /> {{ tag }}
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
</b-card-body>
|
||||
|
||||
<template #buttons>
|
||||
<b-button variant="light" size="sm" @click="performPostInstall(true)">
|
||||
<b-button size="sm" @click="performPostInstall(true)">
|
||||
<icon iname="warning" /> {{ $t('postinstall.force') }}
|
||||
</b-button>
|
||||
</template>
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
<b-card-footer footer-bg-variant="danger">
|
||||
<!-- TODO add copy error ? -->
|
||||
<b-button
|
||||
variant="light" size="sm"
|
||||
size="sm"
|
||||
v-t="'ok'" @click="dismiss"
|
||||
/>
|
||||
</b-card-footer>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<b-overlay
|
||||
variant="white" opacity="0.75"
|
||||
variant="" opacity="0.75"
|
||||
no-center
|
||||
:show="waiting || reconnecting || error !== null"
|
||||
>
|
||||
|
@ -8,7 +8,7 @@
|
|||
|
||||
<template v-slot:overlay>
|
||||
<b-card no-body class="card-overlay">
|
||||
<b-card-header header-bg-variant="white">
|
||||
<b-card-header>
|
||||
<query-header :request="error || currentRequest" status-size="lg" />
|
||||
</b-card-header>
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
<b-card-footer footer-bg-variant="warning">
|
||||
<b-button
|
||||
variant="light" size="sm"
|
||||
size="sm"
|
||||
v-t="'ok'" @click="dismiss"
|
||||
/>
|
||||
</b-card-footer>
|
||||
|
|
|
@ -134,7 +134,6 @@ export default {
|
|||
icon = 'info-circle'
|
||||
} else if (item.ignored) {
|
||||
icon = status !== 'error' ? status : 'times'
|
||||
item.variant = 'light'
|
||||
report.ignoreds++
|
||||
} else if (status === 'warning') {
|
||||
icon = status
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
<b-button
|
||||
v-if="moreLogsAvailable"
|
||||
variant="white" class="w-100 rounded-0"
|
||||
class="w-100 rounded-0"
|
||||
@click="$refs.view.fetchQueries()"
|
||||
>
|
||||
<icon iname="plus" /> {{ $t('logs_more') }}
|
||||
|
|
Loading…
Add table
Reference in a new issue