Fixup some layout gap issues
This commit is contained in:
@@ -87,6 +87,9 @@ footer > .p {
|
||||
}
|
||||
|
||||
.table-actions {
|
||||
display: flex;
|
||||
justify-content: end;
|
||||
gap: 6px;
|
||||
/* those margins will give table rows in Pankow TableViews some more space */
|
||||
margin-top: 4px;
|
||||
margin-bottom: 4px;
|
||||
@@ -132,6 +135,25 @@ tr:hover .table-actions {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 50px;
|
||||
gap: 5px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
.section-header > div {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
h1.section-header {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
/* info table label:value in Sections */
|
||||
.info-row {
|
||||
display: flex;
|
||||
|
||||
@@ -544,20 +544,6 @@ h2 {
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 50px;
|
||||
gap: 5px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
h1.section-header {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.offscreen {
|
||||
position: absolute;
|
||||
left: -999em;
|
||||
|
||||
@@ -261,7 +261,7 @@ onUnmounted(() => {
|
||||
</div>
|
||||
</template>
|
||||
<template #actions="slotProps">
|
||||
<div class="actions">
|
||||
<div class="table-actions">
|
||||
<ButtonGroup>
|
||||
<Button small secondary tool v-if="slotProps.type !== APP_TYPES.LINK" :href="'/logs.html?appId=' + slotProps.id" target="_blank" v-tooltip="$t('app.logsActionTooltip')" icon="fas fa-align-left"></Button>
|
||||
<Button small secondary tool v-if="slotProps.type !== APP_TYPES.PROXIED && slotProps.type !== APP_TYPES.LINK" :href="'/terminal.html?id=' + slotProps.id" target="_blank" v-tooltip="$t('app.terminalActionTooltip')" icon="fa fa-terminal"></Button>
|
||||
@@ -364,15 +364,6 @@ onUnmounted(() => {
|
||||
}
|
||||
}
|
||||
|
||||
.actions {
|
||||
text-align: right;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
tr:hover .actions {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
|
||||
@@ -176,7 +176,7 @@ onMounted(async () => {
|
||||
|
||||
<Section :title="$t('services.title')">
|
||||
<template #header-buttons>
|
||||
<Button @click="refreshAll()" :loading="refreshBusy">{{ $t('services.refresh') }}</Button>
|
||||
<Button @click="refreshAll()" :loading="refreshBusy" :disabled="refreshBusy">{{ $t('services.refresh') }}</Button>
|
||||
</template>
|
||||
|
||||
<p>{{ $t('services.description') }}</p>
|
||||
|
||||
Reference in New Issue
Block a user