# HG changeset patch # User Mike Becker # Date 1629295360 -7200 # Node ID 95b419e054fa4a88030a249851bba29490154665 # Parent 23f936582c4697315a06f4ee453d5ab7e843bde5 changes how form elements are stretched to 100% width diff -r 23f936582c46 -r 95b419e054fa src/main/webapp/WEB-INF/jsp/issue-view.jsp --- a/src/main/webapp/WEB-INF/jsp/issue-view.jsp Wed Aug 18 15:51:13 2021 +0200 +++ b/src/main/webapp/WEB-INF/jsp/issue-view.jsp Wed Aug 18 16:02:40 2021 +0200 @@ -81,13 +81,13 @@ -
+
-
+
diff -r 23f936582c46 -r 95b419e054fa src/main/webapp/WEB-INF/jsp/site.jsp --- a/src/main/webapp/WEB-INF/jsp/site.jsp Wed Aug 18 15:51:13 2021 +0200 +++ b/src/main/webapp/WEB-INF/jsp/site.jsp Wed Aug 18 16:02:40 2021 +0200 @@ -31,7 +31,7 @@ <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> <%-- Version suffix for forcing browsers to update the CSS / JS files --%> - + <%-- Make the base href easily available at request scope --%> diff -r 23f936582c46 -r 95b419e054fa src/main/webapp/lightpit.css --- a/src/main/webapp/lightpit.css Wed Aug 18 15:51:13 2021 +0200 +++ b/src/main/webapp/lightpit.css Wed Aug 18 16:02:40 2021 +0200 @@ -237,19 +237,21 @@ } table.formtable tbody td > * { - width: 100%; margin: 0; box-sizing: border-box; } +table.formtable input[type=text], +table.formtable input[type=number], +table.formtable select, +table.formtable textarea { + width: 100%; +} + table.formtable tfoot td { text-align: right; } -input[type=checkbox] { - width: auto; -} - .fullwidth { width: 100%; } diff -r 23f936582c46 -r 95b419e054fa src/main/webapp/projects.css --- a/src/main/webapp/projects.css Wed Aug 18 15:51:13 2021 +0200 +++ b/src/main/webapp/projects.css Wed Aug 18 16:02:40 2021 +0200 @@ -189,7 +189,3 @@ table.issue-view th { white-space: nowrap; } - -#issue-eta { - width: auto; -}