From 33347bb1d1a6dc2b8c81a8a45ef509218bfcd72d Mon Sep 17 00:00:00 2001 From: Michael Simon <simon@kit.edu> Date: Thu, 11 Jul 2024 07:21:38 +0200 Subject: [PATCH] NO_STORY fix table styling --- .../src/main/webapp/project/edit-local-project-admins.xhtml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bwreg-webapp/src/main/webapp/project/edit-local-project-admins.xhtml b/bwreg-webapp/src/main/webapp/project/edit-local-project-admins.xhtml index 44faa272..53ce558d 100644 --- a/bwreg-webapp/src/main/webapp/project/edit-local-project-admins.xhtml +++ b/bwreg-webapp/src/main/webapp/project/edit-local-project-admins.xhtml @@ -57,7 +57,8 @@ </p:outputPanel> <p:dataTable id="dataTableAllMemberList" var="member" value="#{userEditLocalProjectAdminsBean.memberList}" paginator="true" - lazy="true" rows="15"> + lazy="true" rows="15" + style="width:auto; font-size: 1.2rem;"> <p:column sortBy="#{member.prefUser.id}" style="width:128px;"> <f:facet name="header"> <h:outputText value="#{messages.id}" /> @@ -97,7 +98,8 @@ <h6 style="margin-top: 1em;"><h:outputText value="#{messages['project.edit_admins.remove_admin']}"/></h6> <div class="text"><h:outputText value="#{messages['project.edit_admins.remove_admin_text']}"/></div> <p:dataTable id="dataTableAdmins" var="a" value="#{userEditLocalProjectAdminsBean.adminList}" paginator="true" - rows="15"> + rows="15" + style="width:auto; font-size: 1.2rem;"> <p:column> <f:facet name="header"> <h:outputText value="#{messages.id}" /> -- GitLab