Skip to content

Commit

Permalink
Adjust reporter styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajfa committed Nov 6, 2023
1 parent c56b3cc commit b0a75c1
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion client/web/admin/src/components/Apigw/CFiltersTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
@click.stop="onRowClick(filter, index)"
>
<font-awesome-icon
:icon="['fas', 'pen']"
:icon="['far', 'edit']"
/>
</b-button>
<c-input-confirm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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") }}
Expand Down
2 changes: 1 addition & 1 deletion client/web/admin/src/views/Automation/Session/List.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
:to="{ name: editRoute, params: { [primaryKey]: item[primaryKey] } }"
>
<font-awesome-icon
:icon="['fas', 'pen']"
:icon="['far', 'edit']"
/>
</b-button>
</template>
Expand Down
6 changes: 6 additions & 0 deletions client/web/compose/src/components/Common/Grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -166,3 +166,9 @@ export default {
},
}
</script>

<style lang="scss">
.vue-grid-item.vue-grid-placeholder {
background: var(--primary) !important;
}
</style>
8 changes: 0 additions & 8 deletions client/web/reporter/src/components/Report/Grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
4 changes: 2 additions & 2 deletions client/web/reporter/src/views/Report/Builder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
:to="reportEditor"
>
<font-awesome-icon
:icon="['fas', 'pen']"
:icon="['far', 'edit']"
/>
</b-button>
</b-button-group>
Expand Down Expand Up @@ -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 () {
Expand Down
2 changes: 1 addition & 1 deletion client/web/reporter/src/views/Report/View.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
:to="reportEditor"
>
<font-awesome-icon
:icon="['fas', 'pen']"
:icon="['far', 'edit']"
/>
</b-button>
</b-button-group>
Expand Down
1 change: 1 addition & 0 deletions lib/vue/src/components/navigation/CTopbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ $nav-user-icon-size: 50px;
.vue-portal-target {
display: flex;
justify-content: end;
align-items: center;
flex-wrap: wrap;
}
}
Expand Down

0 comments on commit b0a75c1

Please sign in to comment.