diff options
author | Go MAEDA <maeda@farend.jp> | 2024-02-06 09:13:36 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-02-06 09:13:36 +0000 |
commit | 555357e394ab8105dba6d2fa8ba1c6be13bd1cc0 (patch) | |
tree | e9927f54de8a91c0d654f94814f5f98732d512a6 | |
parent | 61e223f69818baad181d17bc830496a6015bca79 (diff) | |
download | redmine-555357e394ab8105dba6d2fa8ba1c6be13bd1cc0.tar.gz redmine-555357e394ab8105dba6d2fa8ba1c6be13bd1cc0.zip |
Fix cutoff of user select element in activity sidebar when displaying long user names (#39780).
Patch by Go MAEDA (@maeda).
git-svn-id: https://svn.redmine.org/redmine/trunk@22682 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | public/stylesheets/application.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 622d70b25..84a26c16f 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -691,6 +691,10 @@ div#activity dl dt:first-child { border: 0px; } +#activity_scope_form select#user_id { + max-width: 100%; +} + #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; } div#search-results-counts {float:right;} |