From eda9bcea35b28d0e61cf1f5a6a1d712e0baa3e3f Mon Sep 17 00:00:00 2001 From: Mohammed Rabeeh Date: Tue, 28 Jan 2020 22:03:58 +0530 Subject: [PATCH] Fix horizontal scroll of tables Signed-off-by: Mohammed Rabeeh --- themes/bootstrap/scss/_common.scss | 3 +++ themes/metro/scss/_common.scss | 3 +++ themes/original/scss/_common.scss | 3 +++ themes/pmahomme/scss/_common.scss | 3 +++ 4 files changed, 12 insertions(+) diff --git a/themes/bootstrap/scss/_common.scss b/themes/bootstrap/scss/_common.scss index 0f95ae2eff..e1ac1ecb95 100644 --- a/themes/bootstrap/scss/_common.scss +++ b/themes/bootstrap/scss/_common.scss @@ -2515,6 +2515,9 @@ input#auto_increment_opt { } #table_columns { + display: block; + overflow: auto; + input { &[type=text], &[type=password], diff --git a/themes/metro/scss/_common.scss b/themes/metro/scss/_common.scss index ee2a027c28..fa802fe008 100644 --- a/themes/metro/scss/_common.scss +++ b/themes/metro/scss/_common.scss @@ -2652,6 +2652,9 @@ form.append_fields_form .tblFooters { } #table_columns { + display: block; + overflow: auto; + input { &[type="text"], &[type="password"], diff --git a/themes/original/scss/_common.scss b/themes/original/scss/_common.scss index 31ac3493a9..d503eef739 100644 --- a/themes/original/scss/_common.scss +++ b/themes/original/scss/_common.scss @@ -2128,6 +2128,9 @@ input#auto_increment_opt { } #table_columns { + display: block; + overflow: auto; + input { &[type="text"], &[type="password"], diff --git a/themes/pmahomme/scss/_common.scss b/themes/pmahomme/scss/_common.scss index e32f4c77f9..e7d18365e3 100644 --- a/themes/pmahomme/scss/_common.scss +++ b/themes/pmahomme/scss/_common.scss @@ -2529,6 +2529,9 @@ input#auto_increment_opt { } #table_columns { + display: block; + overflow: auto; + input { &[type=text], &[type=password],