[Rt-commit] rt branch 5.0/search-filter-icon-style updated. rt-5.0.3-432-gef1484b5d9
BPS Git Server
git at git.bestpractical.com
Tue Apr 18 20:01:01 UTC 2023
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "rt".
The branch, 5.0/search-filter-icon-style has been updated
via ef1484b5d99d209496d0bf1d741758e0062acf8d (commit)
from 0624d1a7db13ed0c9852b192249575563aeb63be (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit ef1484b5d99d209496d0bf1d741758e0062acf8d
Author: sunnavy <sunnavy at bestpractical.com>
Date: Tue Apr 18 21:52:03 2023 +0800
Apply min-width rules to form for search filter modals
The rules didn't take effect after we added "modal-dialog-scrollable"
class to .modal-dialog, as the display was changed to "flex", which
caused children to not take the full width.
This commit sets rules to the form directly to get around the issue.
diff --git a/share/static/css/elevator-light/misc.css b/share/static/css/elevator-light/misc.css
index acb9656d4c..6ed4dd5eb1 100644
--- a/share/static/css/elevator-light/misc.css
+++ b/share/static/css/elevator-light/misc.css
@@ -172,11 +172,11 @@ ul.ui-autocomplete {
background-color: inherit;
}
-.modal.search-results-filter .modal-dialog.modal-sm {
+.modal.search-results-filter .modal-dialog.modal-sm form {
min-width: 300px;
}
-.modal.search-results-filter .modal-dialog.modal-md {
+.modal.search-results-filter .modal-dialog.modal-md form {
min-width: 500px;
}
-----------------------------------------------------------------------
Summary of changes:
share/static/css/elevator-light/misc.css | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
rt
More information about the rt-commit
mailing list