From 0c8b9be47b6a145a0644a53fa4da412e870e0eba Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 10 Sep 2024 15:15:15 +0530 Subject: [PATCH] fix(style): print format --- .../print_format_builder.js | 6 +++--- .../js/print_format_builder/PrintFormat.vue | 1 - .../PrintFormatBuilder.vue | 9 +++++---- .../PrintFormatControls.vue | 19 ++++++++++++------- frappe/public/scss/desk/print_preview.scss | 5 ++--- 5 files changed, 22 insertions(+), 18 deletions(-) diff --git a/frappe/printing/page/print_format_builder/print_format_builder.js b/frappe/printing/page/print_format_builder/print_format_builder.js index 5b70f8e2ff..1cb90dbc3d 100644 --- a/frappe/printing/page/print_format_builder/print_format_builder.js +++ b/frappe/printing/page/print_format_builder/print_format_builder.js @@ -49,9 +49,9 @@ frappe.PrintFormatBuilder = class PrintFormatBuilder { this.page.sidebar = $('').appendTo( this.page.sidebar ); - this.page.main = $( - '' - ).appendTo(this.page.main); + this.page.main = $('').appendTo( + this.page.main + ); // future-bindings for buttons on sections / fields // bind only once diff --git a/frappe/public/js/print_format_builder/PrintFormat.vue b/frappe/public/js/print_format_builder/PrintFormat.vue index a08286df80..2a35f5b4c4 100644 --- a/frappe/public/js/print_format_builder/PrintFormat.vue +++ b/frappe/public/js/print_format_builder/PrintFormat.vue @@ -127,6 +127,5 @@ watch(print_format, () => (store.dirty.value = true), { deep: true }); margin-left: auto; background-color: white; box-shadow: var(--shadow-lg); - border-radius: var(--border-radius); } diff --git a/frappe/public/js/print_format_builder/PrintFormatBuilder.vue b/frappe/public/js/print_format_builder/PrintFormatBuilder.vue index d436b4f7cf..cae9fdf06d 100644 --- a/frappe/public/js/print_format_builder/PrintFormatBuilder.vue +++ b/frappe/public/js/print_format_builder/PrintFormatBuilder.vue @@ -1,9 +1,9 @@