#105 fixes wrong font for form controls

Mon, 09 Aug 2021 15:50:37 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 09 Aug 2021 15:50:37 +0200
changeset 213
5b55a5318a83
parent 212
c50da26a6d31
child 214
69647ddb57f2

#105 fixes wrong font for form controls

src/main/webapp/WEB-INF/jsp/site.jsp file | annotate | diff | comparison | revisions
src/main/webapp/lightpit.css file | annotate | diff | comparison | revisions
     1.1 --- a/src/main/webapp/WEB-INF/jsp/site.jsp	Tue Aug 03 15:10:43 2021 +0200
     1.2 +++ b/src/main/webapp/WEB-INF/jsp/site.jsp	Mon Aug 09 15:50:37 2021 +0200
     1.3 @@ -31,7 +31,7 @@
     1.4  <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
     1.5  
     1.6  <%-- Version suffix for forcing browsers to update the CSS / JS files --%>
     1.7 -<c:set scope="page" var="versionSuffix" value="20210803"/>
     1.8 +<c:set scope="page" var="versionSuffix" value="20210809"/>
     1.9  
    1.10  <%-- Make the base href easily available at request scope --%>
    1.11  <c:set scope="page" var="baseHref" value="${requestScope[Constants.REQ_ATTR_BASE_HREF]}"/>
     2.1 --- a/src/main/webapp/lightpit.css	Tue Aug 03 15:10:43 2021 +0200
     2.2 +++ b/src/main/webapp/lightpit.css	Mon Aug 09 15:50:37 2021 +0200
     2.3 @@ -72,6 +72,11 @@
     2.4      padding: 0;
     2.5  }
     2.6  
     2.7 +textarea, input, button, select {
     2.8 +    font-family: inherit;
     2.9 +    font-size: inherit;
    2.10 +}
    2.11 +
    2.12  a {
    2.13      cursor: pointer;
    2.14      color: #3060f8;

mercurial