changes how form elements are stretched to 100% width

Wed, 18 Aug 2021 16:02:40 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 18 Aug 2021 16:02:40 +0200
changeset 230
95b419e054fa
parent 229
23f936582c46
child 231
dcb1d5a7ea3a

changes how form elements are stretched to 100% width

src/main/webapp/WEB-INF/jsp/issue-view.jsp file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/jsp/site.jsp file | annotate | diff | comparison | revisions
src/main/webapp/lightpit.css file | annotate | diff | comparison | revisions
src/main/webapp/projects.css file | annotate | diff | comparison | revisions
     1.1 --- a/src/main/webapp/WEB-INF/jsp/issue-view.jsp	Wed Aug 18 15:51:13 2021 +0200
     1.2 +++ b/src/main/webapp/WEB-INF/jsp/issue-view.jsp	Wed Aug 18 16:02:40 2021 +0200
     1.3 @@ -81,13 +81,13 @@
     1.4      <tr>
     1.5          <th><fmt:message key="issue.category"/></th>
     1.6          <td>
     1.7 -            <div class="issue-tag ${issue.category}" style="width: auto">
     1.8 +            <div class="issue-tag ${issue.category}">
     1.9                  <fmt:message key="issue.category.${issue.category}" />
    1.10              </div>
    1.11          </td>
    1.12          <th><fmt:message key="issue.status"/></th>
    1.13          <td>
    1.14 -            <div class="issue-tag phase-${issue.status.phase.number}" style="width: auto">
    1.15 +            <div class="issue-tag phase-${issue.status.phase.number}">
    1.16                  <fmt:message key="issue.status.${issue.status}" />
    1.17              </div>
    1.18          </td>
     2.1 --- a/src/main/webapp/WEB-INF/jsp/site.jsp	Wed Aug 18 15:51:13 2021 +0200
     2.2 +++ b/src/main/webapp/WEB-INF/jsp/site.jsp	Wed Aug 18 16:02:40 2021 +0200
     2.3 @@ -31,7 +31,7 @@
     2.4  <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
     2.5  
     2.6  <%-- Version suffix for forcing browsers to update the CSS / JS files --%>
     2.7 -<c:set scope="page" var="versionSuffiuniversex" value="20210818"/>
     2.8 +<c:set scope="page" var="versionSuffiuniversex" value="20210818b"/>
     2.9  
    2.10  <%-- Make the base href easily available at request scope --%>
    2.11  <c:set scope="page" var="baseHref" value="${requestScope[Constants.REQ_ATTR_BASE_HREF]}"/>
     3.1 --- a/src/main/webapp/lightpit.css	Wed Aug 18 15:51:13 2021 +0200
     3.2 +++ b/src/main/webapp/lightpit.css	Wed Aug 18 16:02:40 2021 +0200
     3.3 @@ -237,19 +237,21 @@
     3.4  }
     3.5  
     3.6  table.formtable tbody td > * {
     3.7 -    width: 100%;
     3.8      margin: 0;
     3.9      box-sizing: border-box;
    3.10  }
    3.11  
    3.12 +table.formtable input[type=text],
    3.13 +table.formtable input[type=number],
    3.14 +table.formtable select,
    3.15 +table.formtable textarea {
    3.16 +    width: 100%;
    3.17 +}
    3.18 +
    3.19  table.formtable tfoot td {
    3.20      text-align: right;
    3.21  }
    3.22  
    3.23 -input[type=checkbox] {
    3.24 -    width: auto;
    3.25 -}
    3.26 -
    3.27  .fullwidth {
    3.28      width: 100%;
    3.29  }
     4.1 --- a/src/main/webapp/projects.css	Wed Aug 18 15:51:13 2021 +0200
     4.2 +++ b/src/main/webapp/projects.css	Wed Aug 18 16:02:40 2021 +0200
     4.3 @@ -189,7 +189,3 @@
     4.4  table.issue-view th {
     4.5      white-space: nowrap;
     4.6  }
     4.7 -
     4.8 -#issue-eta {
     4.9 -    width: auto;
    4.10 -}

mercurial