3
0

Adjust reporter styles

This commit is contained in:
Jože Fortun 2023-11-06 16:51:07 +01:00
parent c56b3cc989
commit b0a75c1326
9 changed files with 14 additions and 15 deletions

View File

@ -45,7 +45,7 @@
@click.stop="onRowClick(filter, index)"
>
<font-awesome-icon
:icon="['fas', 'pen']"
:icon="['far', 'edit']"
/>
</b-button>
<c-input-confirm

View File

@ -18,7 +18,7 @@
:to="{ name: 'system.connection.edit', params: { connectionID: (connection || {}).connectionID } }"
>
<font-awesome-icon
:icon="['fas', 'pen']"
:icon="['far', 'edit']"
/>
</b-button>
</h3>

View File

@ -46,7 +46,7 @@
lg="6"
>
<b-form-group
label-class="text-primary"
label-class="d-flex align-items-center text-primary"
>
<template #label>
{{ $t("image.editor.label") }}

View File

@ -98,7 +98,7 @@
:to="{ name: editRoute, params: { [primaryKey]: item[primaryKey] } }"
>
<font-awesome-icon
:icon="['fas', 'pen']"
:icon="['far', 'edit']"
/>
</b-button>
</template>

View File

@ -166,3 +166,9 @@ export default {
},
}
</script>
<style lang="scss">
.vue-grid-item.vue-grid-placeholder {
background: var(--primary) !important;
}
</style>

View File

@ -122,11 +122,3 @@ export default {
background: var(--primary) !important;
}
</style>
<style lang="scss" scoped>
.editable-grid-item {
touch-action: none;
background-image: linear-gradient(45deg, var(--gray-200) 25%, var(--white) 25%, var(--white) 50%, var(--gray-200) 50%, var(--gray-200) 75%, var(--white) 75%, var(--white) 100%);
background-size: 28.28px 28.28px;
}
</style>

View File

@ -76,7 +76,7 @@
:to="reportEditor"
>
<font-awesome-icon
:icon="['fas', 'pen']"
:icon="['far', 'edit']"
/>
</b-button>
</b-button-group>
@ -526,7 +526,7 @@ export default {
pageTitle () {
const title = this.report ? (this.report.meta.name || this.report.handle) : ''
return `${this.$t('builder:report.builder')} - '${title}'` || this.$t('builder:report.builder')
return `${this.$t('builder:report.builder')} - "${title}"` || this.$t('builder:report.builder')
},
canRead () {

View File

@ -46,7 +46,7 @@
:to="reportEditor"
>
<font-awesome-icon
:icon="['fas', 'pen']"
:icon="['far', 'edit']"
/>
</b-button>
</b-button-group>

View File

@ -342,6 +342,7 @@ $nav-user-icon-size: 50px;
.vue-portal-target {
display: flex;
justify-content: end;
align-items: center;
flex-wrap: wrap;
}
}