Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Commit

Permalink
Fix: Aling criteria (#2509)
Browse files Browse the repository at this point in the history
* Fix: Aling Criteria

* Fix: Aling Criteria
  • Loading branch information
Ricargame authored Jul 26, 2024
1 parent 886a6a8 commit 66b22b1
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
8 changes: 5 additions & 3 deletions src/views/ADempiere/ReportViewerEngine/reportPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
-->
<template>
<div>
<el-card>
<el-card class="containerReportEnginer">
<reportSearchCriteria
:container-uuid="reportOutput.containerUuid"
:report-output="reportOutput"
Expand All @@ -44,7 +44,7 @@
:row-class-name="tableRowClassName"
:default-expand-all="false"
:tree-props="{ children: 'children' }"
height="calc(100vh - 265px)"
height="calc(100vh - 275px)"
border
:cell-style="{ padding: '0', height: '30px', border: 'none' }"
:cell-class-name="getRowClassName"
Expand Down Expand Up @@ -420,9 +420,11 @@ export default defineComponent({
text-align: right;
}
}

</style>
<style>
.containerReportEnginer .el-card__body {
padding: 20px !important
}
:root {
--level-offset: 20px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ export default defineComponent({
})
</script>

<style>
<style scoped>
.containerReport {
display: flex;
align-items: center;
margin-bottom: 20px;
display: flex !important;
align-items: center !important;
margin-bottom: 1% !important;
}
@media screen and (max-width:1150px) {
.containerReport, .custom-button {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="container">
<div class="PrimtFormatcontainer">
<label for="report-format-select" class="select-label">{{ $t('report.reportEnginer.printFormat') }}</label>
<el-select
id="report-format-select"
Expand Down Expand Up @@ -162,15 +162,15 @@ export default defineComponent({
})
</script>
<style>
.container {
.PrimtFormatcontainer {
display: flex;
flex-direction: column;
gap: 20px;
margin: 0 auto;
}
@media screen and (min-width: 800px) {
.container {
.PrimtFormatcontainer {
flex-direction: row;
justify-content: space-between;
align-items: center;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="select-container" style="margin-left: -10px; display: flex; align-items: center;">
<div style="margin-left: -10px; display: flex; align-items: center;">
<el-button
:loading="isLoading"
type="success"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="select-container" style="margin-top: 10px; margin-left: 0px; display: flex; align-items: center;">
<div style="margin-left: 0px; display: flex; align-items: center;">
<label for="report-format-switch" class="select-label" style="margin-right: 15px;">{{ $t('report.reportEnginer.summary') }}</label>
<el-switch
id="report-format-switch"
Expand Down

0 comments on commit 66b22b1

Please sign in to comment.