#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
--- a/src/main/webapp/WEB-INF/jsp/site.jsp	Tue Aug 03 15:10:43 2021 +0200
+++ b/src/main/webapp/WEB-INF/jsp/site.jsp	Mon Aug 09 15:50:37 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 --%>
-<c:set scope="page" var="versionSuffix" value="20210803"/>
+<c:set scope="page" var="versionSuffix" value="20210809"/>
 
 <%-- Make the base href easily available at request scope --%>
 <c:set scope="page" var="baseHref" value="${requestScope[Constants.REQ_ATTR_BASE_HREF]}"/>
--- a/src/main/webapp/lightpit.css	Tue Aug 03 15:10:43 2021 +0200
+++ b/src/main/webapp/lightpit.css	Mon Aug 09 15:50:37 2021 +0200
@@ -72,6 +72,11 @@
     padding: 0;
 }
 
+textarea, input, button, select {
+    font-family: inherit;
+    font-size: inherit;
+}
+
 a {
     cursor: pointer;
     color: #3060f8;

mercurial