Moar miscellanous fixes / improvements

This commit is contained in:
Alexandre Aubin 2021-03-22 21:47:17 +01:00
parent eacd5c06d4
commit b38f213cc0
5 changed files with 25 additions and 4 deletions

View file

@ -25,6 +25,8 @@ body {
overflow-x: hidden; overflow-x: hidden;
min-height: 100vh; min-height: 100vh;
margin: 0; margin: 0;
color: #333;
font-size: 14px;
} }
#app { #app {
@ -98,6 +100,12 @@ body {
} }
} }
.card-header {
h1, h2, h3, h4, h5, h6 {
font-weight: 400;
}
}
// collapse icon // collapse icon
.not-collapsed > .icon { .not-collapsed > .icon {
transform: rotate(-90deg); transform: rotate(-90deg);
@ -108,6 +116,10 @@ body {
top: 2px; top: 2px;
} }
.list-group-item .icon {
margin-left: 0.3em;
}
// Fork-awesome overrides // Fork-awesome overrides
.fa-fw { .fa-fw {
width: 1.25em !important; width: 1.25em !important;
@ -129,3 +141,8 @@ code {
padding: 1rem; padding: 1rem;
background-color: $light; background-color: $light;
} }
.btn {
font-size: 1em;
line-height: 1.7;
}

View file

@ -1,7 +1,7 @@
<template> <template>
<view-base :queries="queries" @queries-response="onQueriesResponse" ref="view"> <view-base :queries="queries" @queries-response="onQueriesResponse" ref="view">
<!-- BASIC INFOS --> <!-- BASIC INFOS -->
<card v-if="infos" :title="`${$t('infos')} — ${infos.label}`" icon="info-circle"> <card v-if="infos" :title="`${infos.label}`" icon="cube">
<b-row <b-row
v-for="(value, prop) in infos" :key="prop" v-for="(value, prop) in infos" :key="prop"
no-gutters class="row-line" no-gutters class="row-line"

View file

@ -36,7 +36,9 @@
<b-col> <b-col>
<template v-if="group.isSpecial"> <template v-if="group.isSpecial">
<p class="text-primary"><icon iname="info-circle" /> {{ $t('group_explain_' + name) }}</p> <p class="text-primary">
<icon iname="info-circle" /> {{ $t('group_explain_' + name) }}
</p>
<p class="text-primary" v-if="name === 'visitors'"> <p class="text-primary" v-if="name === 'visitors'">
<em>{{ $t('group_explain_visitors_needed_for_external_client') }}</em> <em>{{ $t('group_explain_visitors_needed_for_external_client') }}</em>
</p> </p>

View file

@ -18,7 +18,7 @@
<div v-else-if="prop === 'suboperations'"> <div v-else-if="prop === 'suboperations'">
<div v-for="operation in value" :key="operation.name"> <div v-for="operation in value" :key="operation.name">
<icon v-if="!operation.success" iname="times" class="text-danger" /> <icon v-if="operation.success !== true" iname="times" class="text-danger" />
<b-link :to="{ name: 'tool-log', params: { name: operation.name } }"> <b-link :to="{ name: 'tool-log', params: { name: operation.name } }">
{{ operation.description }} {{ operation.description }}
</b-link> </b-link>
@ -121,6 +121,8 @@ export default {
const info = { path: log.log_path, started_at, ended_at } const info = { path: log.log_path, started_at, ended_at }
if (!success) info.error = error if (!success) info.error = error
if (suboperations && suboperations.length) info.suboperations = suboperations if (suboperations && suboperations.length) info.suboperations = suboperations
// eslint-disable-next-line
if (!ended_at) delete info.ended_at
this.info = info this.info = info
}, },

View file

@ -27,7 +27,7 @@
<div> <div>
<h5 class="font-weight-bold"> <h5 class="font-weight-bold">
{{ user.username }} {{ user.username }}
<small class="text-secondary">({{ user.fullname }})</small> <small class="text-secondary">{{ user.fullname }}</small>
</h5> </h5>
<p class="m-0"> <p class="m-0">
{{ user.mail }} {{ user.mail }}