Actions
Defect #39780
closedUser select element on activity sidebar views cutoff when displaying long user names
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
When the user zooms the viewport to >150%, the user select element on activity sidebar views (#33602) is cutoff:
Files
Updated by Go MAEDA 10 months ago
- Target version set to Candidate for next minor release
The following patch fixes the issue.
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;}
Updated by Go MAEDA 10 months ago
- Subject changed from User select element on activity sidebar views cutoff when viewport is zoomed-in. to User select element on activity sidebar views cutoff when displaying long user names
- Status changed from New to Resolved
- Assignee set to Go MAEDA
- Resolution set to Fixed
Committed the fix in r22682. Thank you for pointing out the UI issue.
Actions