Defect #31238
closed
The input field of the Gantt chart page is narrow
Added by Mizuki ISHIKAWA over 5 years ago.
Updated over 5 years ago.
Description
The input field of the Gantt chart page is narrow.
I think that the cause is that "box-sizing: border-box;" is added to the style of the input field.
Related to #31147.
Affected version: trunk.
Files
The problem is solved if you change it as below.
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 5890180819..4b2dc5ea5a 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -775,7 +775,7 @@ label.no-css {
width:auto;
}
input#time_entry_comments { width: 90%;}
-input#months { width: 30px; }
+input#months { width: 46px; }
.jstBlock .jstTabs, .jstBlock .wiki-preview { width: 99%; }
- Related to Patch #31147: Add custom styles for all fields added
- Status changed from New to Closed
- Assignee set to Go MAEDA
- Resolution set to Fixed
Committed the patch. Thank you for detecting and fixing the bug.
Also available in: Atom
PDF