From c21b960ac2e6bd4896d346a77a1cacbc1b982bff Mon Sep 17 00:00:00 2001 From: Reza Askari Date: Sun, 31 Mar 2024 16:14:59 +0330 Subject: [PATCH] Fix responsive table edit-box in rtl mode Signed-off-by: Reza Askari --- themes/bootstrap/scss/_common.scss | 4 ++++ themes/metro/scss/_common.scss | 4 ++++ themes/original/scss/_common.scss | 4 ++++ themes/pmahomme/scss/_common.scss | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/themes/bootstrap/scss/_common.scss b/themes/bootstrap/scss/_common.scss index db94b7d46e..abf8f3171f 100644 --- a/themes/bootstrap/scss/_common.scss +++ b/themes/bootstrap/scss/_common.scss @@ -2719,3 +2719,7 @@ body .ui-dialog { .table-responsive-md .data { z-index: 9; } + +.table-responsive-md { + max-width: fit-content; +} diff --git a/themes/metro/scss/_common.scss b/themes/metro/scss/_common.scss index 0a5593f597..597fab6bc3 100644 --- a/themes/metro/scss/_common.scss +++ b/themes/metro/scss/_common.scss @@ -2882,3 +2882,7 @@ body { .table-responsive-md .data { z-index: 9; } + +.table-responsive-md { + max-width: fit-content; +} diff --git a/themes/original/scss/_common.scss b/themes/original/scss/_common.scss index 149458583e..3e85ffdfe4 100644 --- a/themes/original/scss/_common.scss +++ b/themes/original/scss/_common.scss @@ -2734,3 +2734,7 @@ body { .table-responsive-md .data { z-index: 9; } + +.table-responsive-md { + max-width: fit-content; +} diff --git a/themes/pmahomme/scss/_common.scss b/themes/pmahomme/scss/_common.scss index ae970c421e..d8ab36e502 100644 --- a/themes/pmahomme/scss/_common.scss +++ b/themes/pmahomme/scss/_common.scss @@ -2866,6 +2866,10 @@ body .ui-dialog { z-index: 9; } +.table-responsive-md { + max-width: fit-content; +} + .bg-secondary { color: #333; }