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 {
|
.btn + .btn {
|
||||||
margin-left: .5rem;
|
margin-left: .5rem;
|
||||||
}
|
}
|
||||||
|
background-color: $background-color-primary !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
@remove="onRemoveTag({ option: tag, removeTag })"
|
@remove="onRemoveTag({ option: tag, removeTag })"
|
||||||
:title="tag"
|
:title="tag"
|
||||||
:disabled="disabled || disabledItems.includes(tag)"
|
:disabled="disabled || disabledItems.includes(tag)"
|
||||||
variant="light"
|
|
||||||
class="border border-dark mb-2"
|
class="border border-dark mb-2"
|
||||||
>
|
>
|
||||||
<icon v-if="tagIcon" :iname="tagIcon" /> {{ tag }}
|
<icon v-if="tagIcon" :iname="tagIcon" /> {{ tag }}
|
||||||
|
|
|
@ -63,7 +63,7 @@
|
||||||
</b-card-body>
|
</b-card-body>
|
||||||
|
|
||||||
<template #buttons>
|
<template #buttons>
|
||||||
<b-button variant="light" size="sm" @click="performPostInstall(true)">
|
<b-button size="sm" @click="performPostInstall(true)">
|
||||||
<icon iname="warning" /> {{ $t('postinstall.force') }}
|
<icon iname="warning" /> {{ $t('postinstall.force') }}
|
||||||
</b-button>
|
</b-button>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
<b-card-footer footer-bg-variant="danger">
|
<b-card-footer footer-bg-variant="danger">
|
||||||
<!-- TODO add copy error ? -->
|
<!-- TODO add copy error ? -->
|
||||||
<b-button
|
<b-button
|
||||||
variant="light" size="sm"
|
size="sm"
|
||||||
v-t="'ok'" @click="dismiss"
|
v-t="'ok'" @click="dismiss"
|
||||||
/>
|
/>
|
||||||
</b-card-footer>
|
</b-card-footer>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<b-overlay
|
<b-overlay
|
||||||
variant="white" opacity="0.75"
|
variant="" opacity="0.75"
|
||||||
no-center
|
no-center
|
||||||
:show="waiting || reconnecting || error !== null"
|
:show="waiting || reconnecting || error !== null"
|
||||||
>
|
>
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
<template v-slot:overlay>
|
<template v-slot:overlay>
|
||||||
<b-card no-body class="card-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" />
|
<query-header :request="error || currentRequest" status-size="lg" />
|
||||||
</b-card-header>
|
</b-card-header>
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
<b-card-footer footer-bg-variant="warning">
|
<b-card-footer footer-bg-variant="warning">
|
||||||
<b-button
|
<b-button
|
||||||
variant="light" size="sm"
|
size="sm"
|
||||||
v-t="'ok'" @click="dismiss"
|
v-t="'ok'" @click="dismiss"
|
||||||
/>
|
/>
|
||||||
</b-card-footer>
|
</b-card-footer>
|
||||||
|
|
|
@ -134,7 +134,6 @@ export default {
|
||||||
icon = 'info-circle'
|
icon = 'info-circle'
|
||||||
} else if (item.ignored) {
|
} else if (item.ignored) {
|
||||||
icon = status !== 'error' ? status : 'times'
|
icon = status !== 'error' ? status : 'times'
|
||||||
item.variant = 'light'
|
|
||||||
report.ignoreds++
|
report.ignoreds++
|
||||||
} else if (status === 'warning') {
|
} else if (status === 'warning') {
|
||||||
icon = status
|
icon = status
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
|
|
||||||
<b-button
|
<b-button
|
||||||
v-if="moreLogsAvailable"
|
v-if="moreLogsAvailable"
|
||||||
variant="white" class="w-100 rounded-0"
|
class="w-100 rounded-0"
|
||||||
@click="$refs.view.fetchQueries()"
|
@click="$refs.view.fetchQueries()"
|
||||||
>
|
>
|
||||||
<icon iname="plus" /> {{ $t('logs_more') }}
|
<icon iname="plus" /> {{ $t('logs_more') }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue