From 4dba244ba6cb4c867218b53c961295cf538180dc Mon Sep 17 00:00:00 2001 From: "Barbara B. Frosik" <bfrosik@aps.anl.gov> Date: Thu, 2 Jul 2015 18:56:16 +0000 Subject: [PATCH] changed style for input text --- .../DmWebPortal/web/resources/css/portal.css | 19 ++++++++++++++++++ .../allowedPolicyValueCreatePanelGrid.xhtml | 4 ++-- .../allowedPolicyValueListEditDataTable.xhtml | 4 ++-- .../private/experimentCreatePanelGrid.xhtml | 6 +++--- .../private/experimentEditPanelGrid.xhtml | 2 +- .../experimentTypeCreatePanelGrid.xhtml | 6 +++--- .../private/experimentTypeEditPanelGrid.xhtml | 6 +++--- .../policyPropertyCreatePanelGrid.xhtml | 12 +++++------ .../private/policyPropertyEditPanelGrid.xhtml | 10 +++++----- .../private/policyTypeEditPanelGrid.xhtml | 2 +- .../private/roleTypeEditPanelGrid.xhtml | 2 +- .../private/userInfoCreatePanelGrid.xhtml | 18 ++++++++--------- .../private/userInfoEditPanelGrid.xhtml | 20 +++++++++---------- 13 files changed, 65 insertions(+), 46 deletions(-) diff --git a/src/java/DmWebPortal/web/resources/css/portal.css b/src/java/DmWebPortal/web/resources/css/portal.css index 1efe9da1..efcf58f0 100644 --- a/src/java/DmWebPortal/web/resources/css/portal.css +++ b/src/java/DmWebPortal/web/resources/css/portal.css @@ -177,6 +177,25 @@ a:link:hover, a:visited:hover { font-size: 105%; } +.entityDataInputText { + font-weight: normal; + float: left; + background: white; +} + +.entityDataInputTextShort { + font-weight: normal; + float: left; + width: 150px; + background: white; +} + +.entityDataEmphasizedInputText { + font-weight: bold; + font-size: 105%; + background: white; +} + .entityDataText { font-weight: normal; float: left; diff --git a/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueCreatePanelGrid.xhtml b/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueCreatePanelGrid.xhtml index 6505933f..4592178d 100644 --- a/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueCreatePanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueCreatePanelGrid.xhtml @@ -10,10 +10,10 @@ <p:panelGrid columns="2" styleClass="createEntityDetails"> <h:outputLabel for="policyValue" value="Policy Value" styleClass="entityDataLabel"/> - <h:inputText id="policyValue" value="#{allowedPolicyValueObject.policyValue}" title="Policy Value" styleClass="entityDataText"/> + <h:inputText id="policyValue" value="#{allowedPolicyValueObject.policyValue}" title="Policy Value" styleClass="entityDataInputText"/> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{allowedPolicyValueObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{allowedPolicyValueObject.description}" title="Description" styleClass="entityDataInputText"/> </p:panelGrid> diff --git a/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueListEditDataTable.xhtml b/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueListEditDataTable.xhtml index d589e947..553b5ddf 100644 --- a/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueListEditDataTable.xhtml +++ b/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueListEditDataTable.xhtml @@ -36,12 +36,12 @@ and open the template in the editor. <p:column sortBy="#{allowedPolicyValueObject.policyValue}" headerText="Policy Value" filterBy="#{allowedPolicyValueObject.policyValue}" filterMatchMode="contains" > - <h:inputText value="#{allowedPolicyValueObject.policyValue}" styleClass="entityDataTextShort"/> + <h:inputText value="#{allowedPolicyValueObject.policyValue}" styleClass="entityDataInputTextShort"/> </p:column> <p:column sortBy="#{allowedPolicyValueObject.description}" headerText="Description" filterBy="#{allowedPolicyValueObject.description}" filterMatchMode="contains"> - <h:inputText value="#{allowedPolicyValueObject.description}" styleClass="entityDataTextShort"/> + <h:inputText value="#{allowedPolicyValueObject.description}" styleClass="entityDataInputTextShort"/> </p:column> <p:column headerText="Actions" > diff --git a/src/java/DmWebPortal/web/views/experiment/private/experimentCreatePanelGrid.xhtml b/src/java/DmWebPortal/web/views/experiment/private/experimentCreatePanelGrid.xhtml index f1183eff..d22c5438 100644 --- a/src/java/DmWebPortal/web/views/experiment/private/experimentCreatePanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/experiment/private/experimentCreatePanelGrid.xhtml @@ -11,10 +11,10 @@ <p:panelGrid columns="2" > <h:outputLabel for="name" value="Name" styleClass="entityDataEmphasizedLabel"/> - <h:inputText id="name" value="#{experimentObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> + <h:inputText id="name" value="#{experimentObject.name}" title="Name" styleClass="entityDataEmphasizedInputText"/> <h:outputLabel for="experimentType" value="Experiment Type" styleClass="entityDataLabel"/> - <p:selectOneMenu id="experimentType" value="#{experimentObject.experimentType}" styleClass="entityDataText"> + <p:selectOneMenu id="experimentType" value="#{experimentObject.experimentType}" styleClass="entityDataInputText"> <f:selectItem itemLabel="Select Type" itemValue="" noSelectionOption="true" /> <f:selectItems value="#{experimentTypeController.getAvailableItems()}" var="experimentType" @@ -24,7 +24,7 @@ </p:selectOneMenu> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{experimentObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{experimentObject.description}" title="Description" styleClass="entityDataInputText"/> <h:outputLabel for="startDate" value="Start Date"/> <p:calendar id="startDate" value="#{experimentObject.startDate}" mode="popup" showOn="button" pattern="#{resources.DateTimePattern}" /> diff --git a/src/java/DmWebPortal/web/views/experiment/private/experimentEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/experiment/private/experimentEditPanelGrid.xhtml index 880a70c7..d5a26b47 100644 --- a/src/java/DmWebPortal/web/views/experiment/private/experimentEditPanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/experiment/private/experimentEditPanelGrid.xhtml @@ -16,7 +16,7 @@ <h:outputText id="experimentType" value="#{experimentObject.experimentType.name}" title="Name" styleClass="entityDataText"/> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{experimentObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{experimentObject.description}" title="Description" styleClass="entityDataInputText"/> <h:outputLabel for="startDate" value="Start Date" styleClass="entityDataLabel"/> <p:calendar id="startDate" value="#{experimentObject.startDate}" mode="popup" showOn="button" pattern="#{resources.DateTimePattern}" /> diff --git a/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeCreatePanelGrid.xhtml b/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeCreatePanelGrid.xhtml index 0dbfd762..15ce12c4 100644 --- a/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeCreatePanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeCreatePanelGrid.xhtml @@ -10,13 +10,13 @@ <p:panelGrid columns="2" styleClass="createEntityDetails"> <h:outputLabel for="name" value="Name" styleClass="entityDataEmphasizedLabel"/> - <h:inputText id="name" value="#{experimentTypeObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> + <h:inputText id="name" value="#{experimentTypeObject.name}" title="Name" styleClass="entityDataEmphasizedInputText"/> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{experimentTypeObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{experimentTypeObject.description}" title="Description" styleClass="entityDataInputText"/> <h:outputLabel for="rootDataPath" value="Root Data Path" styleClass="entityDataLabel"/> - <h:inputText id="rootDataPath" value="#{experimentTypeObject.rootDataPath}" title="Root Data Path" styleClass="entityDataText"/> + <h:inputText id="rootDataPath" value="#{experimentTypeObject.rootDataPath}" title="Root Data Path" styleClass="entityDataInputText"/> </p:panelGrid> diff --git a/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeEditPanelGrid.xhtml index db6fdc86..fc27c0be 100644 --- a/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeEditPanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeEditPanelGrid.xhtml @@ -10,13 +10,13 @@ <p:panelGrid columns="2" styleClass="editEntityDetails"> <h:outputLabel for="name" value="Name" styleClass="entityDataEmphasizedLabel"/> - <h:inputText id="name" value="#{experimentTypeObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> + <h:outputText id="name" value="#{experimentTypeObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{experimentTypeObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{experimentTypeObject.description}" title="Description" styleClass="entityDataInputText"/> <h:outputLabel for="rootDataPath" value="Root Data Path" styleClass="entityDataLabel"/> - <h:inputText id="rootDataPath" value="#{experimentTypeObject.rootDataPath}" title="Root Data Path" styleClass="entityDataText"/> + <h:inputText id="rootDataPath" value="#{experimentTypeObject.rootDataPath}" title="Root Data Path" styleClass="entityDataInputText"/> </p:panelGrid> </ui:composition> diff --git a/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyCreatePanelGrid.xhtml b/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyCreatePanelGrid.xhtml index 178c21e3..60673d8a 100644 --- a/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyCreatePanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyCreatePanelGrid.xhtml @@ -10,22 +10,22 @@ <p:panelGrid columns="2" styleClass="createEntityDetails"> <h:outputLabel for="name" value="Name" styleClass="entityDataEmphasizedLabel"/> - <h:inputText id="name" value="#{policyPropertyObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> + <h:inputText id="name" value="#{policyPropertyObject.name}" title="Name" styleClass="entityDataEmphasizedInputText"/> <h:outputLabel for="units" value="Units" styleClass="entityDataLabel"/> - <h:inputText id="units" value="#{policyPropertyObject.units}" title="Units" styleClass="entityDataText"/> + <h:inputText id="units" value="#{policyPropertyObject.units}" title="Units" styleClass="entityDataInputText"/> <h:outputLabel for="defaultValue" value="Default Value" styleClass="entityDataLabel"/> - <h:inputText id="defaultValue" value="#{policyPropertyObject.defaultValue}" title="Default Value" styleClass="entityDataText"/> + <h:inputText id="defaultValue" value="#{policyPropertyObject.defaultValue}" title="Default Value" styleClass="entityDataInputText"/> <h:outputLabel for="lowerLimit" value="Lower Limit" styleClass="entityDataLabel"/> - <h:inputText id="lowerLimit" value="#{policyPropertyObject.lowerLimit}" title="Lower Limit" styleClass="entityDataText"/> + <h:inputText id="lowerLimit" value="#{policyPropertyObject.lowerLimit}" title="Lower Limit" styleClass="entityDataInputText"/> <h:outputLabel for="upperLimit" value="Upper Limit" styleClass="entityDataLabel"/> - <h:inputText id="upperLimit" value="#{policyPropertyObject.upperLimit}" title="Upper Limit" styleClass="entityDataText"/> + <h:inputText id="upperLimit" value="#{policyPropertyObject.upperLimit}" title="Upper Limit" styleClass="entityDataInputText"/> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{policyPropertyObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{policyPropertyObject.description}" title="Description" styleClass="entityDataInputText"/> </p:panelGrid> diff --git a/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyEditPanelGrid.xhtml index a8ffa0b1..6129d15c 100644 --- a/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyEditPanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyEditPanelGrid.xhtml @@ -13,19 +13,19 @@ <h:outputText id="name" value="#{policyPropertyObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> <h:outputLabel for="units" value="Units" styleClass="entityDataLabel"/> - <h:inputText id="units" value="#{policyPropertyObject.units}" title="Units" styleClass="entityDataText"/> + <h:inputText id="units" value="#{policyPropertyObject.units}" title="Units" styleClass="entityDataInputText"/> <h:outputLabel for="defaultValue" value="Default Value" styleClass="entityDataLabel"/> - <h:inputText id="defaultValue" value="#{policyPropertyObject.defaultValue}" title="Default Value" styleClass="entityDataText"/> + <h:inputText id="defaultValue" value="#{policyPropertyObject.defaultValue}" title="Default Value" styleClass="entityDataInputText"/> <h:outputLabel for="lowerLimit" value="Lower Limit" styleClass="entityDataLabel"/> - <h:inputText id="lowerLimit" value="#{policyPropertyObject.lowerLimit}" title="Lower Limit" styleClass="entityDataText"/> + <h:inputText id="lowerLimit" value="#{policyPropertyObject.lowerLimit}" title="Lower Limit" styleClass="entityDataInputText"/> <h:outputLabel for="upperLimit" value="Upper Limit" styleClass="entityDatadLabel"/> - <h:inputText id="upperLimit" value="#{policyPropertyObject.upperLimit}" title="Upper Limit" styleClass="entityDataText"/> + <h:inputText id="upperLimit" value="#{policyPropertyObject.upperLimit}" title="Upper Limit" styleClass="entityDataInputText"/> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{policyPropertyObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{policyPropertyObject.description}" title="Description" styleClass="entityDataInputText"/> </p:panelGrid> </ui:composition> \ No newline at end of file diff --git a/src/java/DmWebPortal/web/views/policyType/private/policyTypeEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/policyType/private/policyTypeEditPanelGrid.xhtml index b8baac24..b941d5df 100644 --- a/src/java/DmWebPortal/web/views/policyType/private/policyTypeEditPanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/policyType/private/policyTypeEditPanelGrid.xhtml @@ -13,7 +13,7 @@ <h:outputText id="name" value="#{policyTypeObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{policyTypeObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{policyTypeObject.description}" title="Description" styleClass="entityDataInputText"/> </p:panelGrid> </ui:composition> \ No newline at end of file diff --git a/src/java/DmWebPortal/web/views/roleType/private/roleTypeEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/roleType/private/roleTypeEditPanelGrid.xhtml index 805a2b51..3fea8f8c 100644 --- a/src/java/DmWebPortal/web/views/roleType/private/roleTypeEditPanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/roleType/private/roleTypeEditPanelGrid.xhtml @@ -14,7 +14,7 @@ <h:outputText id="name" value="#{roleTypeObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{roleTypeObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{roleTypeObject.description}" title="Description" styleClass="entityDataInputText"/> </p:panelGrid> </ui:composition> diff --git a/src/java/DmWebPortal/web/views/userInfo/private/userInfoCreatePanelGrid.xhtml b/src/java/DmWebPortal/web/views/userInfo/private/userInfoCreatePanelGrid.xhtml index 98998af7..54d501f7 100644 --- a/src/java/DmWebPortal/web/views/userInfo/private/userInfoCreatePanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/userInfo/private/userInfoCreatePanelGrid.xhtml @@ -10,31 +10,31 @@ <p:panelGrid columns="2" styleClass="createEntityDetails"> <h:outputLabel for="badge" value="Badge" styleClass="entityDataEmphasizedLabel"/> - <h:inputText id="badge" value="#{userInfoObject.badge}" title="Badge" styleClass="entityDataEmphasizedText"/> + <h:inputText id="badge" value="#{userInfoObject.badge}" title="Badge" styleClass="entityDataEmphasizedInputText"/> <h:outputLabel for="username" value="Username" styleClass="entityDataEmphasizedLabel"/> - <h:inputText id="username" value="#{userInfoObject.username}" title="Username" styleClass="entityDataEmphasizedText"/> + <h:inputText id="username" value="#{userInfoObject.username}" title="Username" styleClass="entityDataEmphasizedInputText"/> <h:outputLabel for="lastName" value="Last Name" styleClass="entityDataLabel"/> - <h:inputText id="lastName" value="#{userInfoObject.lastName}" title="Last Name" styleClass="entityDataText"/> + <h:inputText id="lastName" value="#{userInfoObject.lastName}" title="Last Name" styleClass="entityDataInputText"/> <h:outputLabel for="firstName" value="First Name" styleClass="entityDataLabel"/> - <h:inputText id="firstName" value="#{userInfoObject.firstName}" title="First Name" styleClass="entityDataText"/> + <h:inputText id="firstName" value="#{userInfoObject.firstName}" title="First Name" styleClass="entityDataInputText"/> <h:outputLabel for="middleName" value="Middle Name" styleClass="entityDataLabel"/> - <h:inputText id="middleName" value="#{userInfoObject.middleName}" title="Middle Name" styleClass="entityDataText"/> + <h:inputText id="middleName" value="#{userInfoObject.middleName}" title="Middle Name" styleClass="entityDataInputText"/> <h:outputLabel for="email" value="Email" styleClass="entityDataLabel"/> - <h:inputText id="email" value="#{userInfoObject.email}" title="Email" styleClass="entityDataText"/> + <h:inputText id="email" value="#{userInfoObject.email}" title="Email" styleClass="entityDataInputText"/> <h:outputLabel for="password" value="Password" styleClass="entityDataLabel"/> - <p:password id="password" value="#{userInfoController.passwordEntry}" title="Password" feedback="true" styleClass="entityDataText"/> + <p:password id="password" value="#{userInfoController.passwordEntry}" title="Password" feedback="true" styleClass="entityDataInputText"/> <h:outputLabel for="globusUsername" value="Globus Username" styleClass="entityDataEmphasizedLabel"/> - <h:inputText id="globusUsername" value="#{userInfoObject.globusUsername}" title="Globus Username" styleClass="entityDataEmphasizedText"/> + <h:inputText id="globusUsername" value="#{userInfoObject.globusUsername}" title="Globus Username" styleClass="entityDataEmphasizedInputText"/> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{userInfoObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{userInfoObject.description}" title="Description" styleClass="entityDataInputText"/> </p:panelGrid> diff --git a/src/java/DmWebPortal/web/views/userInfo/private/userInfoEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/userInfo/private/userInfoEditPanelGrid.xhtml index 2fb6d2d1..63b750ae 100644 --- a/src/java/DmWebPortal/web/views/userInfo/private/userInfoEditPanelGrid.xhtml +++ b/src/java/DmWebPortal/web/views/userInfo/private/userInfoEditPanelGrid.xhtml @@ -12,35 +12,35 @@ <h:outputLabel for="badge" value="Badge" styleClass="entityDataEmphasizedLabel"/> - <h:inputText id="badge" value="#{userInfoObject.badge}" title="Badge" styleClass="entityDataEmphasizedText"/> + <h:outputText id="badge" value="#{userInfoObject.badge}" title="Badge" styleClass="entityDataEmphasizedText"/> <h:outputLabel for="username" value="Username" styleClass="entityDataEmphasizedLabel"/> - <h:inputText id="username" value="#{userInfoObject.username}" rendered="#{isFieldWriteable}" title="Username" styleClass="entityDataEmphasizedText"/> + <h:inputText id="username" value="#{userInfoObject.username}" rendered="#{isFieldWriteable}" title="Username" styleClass="entityDataEmphasizedInputText"/> <h:outputText id="usernameOutput" value="#{userInfoObject.username}" rendered="#{!isFieldWriteable}" title="Username" styleClass="entityDataEmphasizedText"/> <h:outputLabel for="lastName" value="Last Name" styleClass="entityDataLabel"/> - <h:inputText id="lastName" value="#{userInfoObject.lastName}" rendered="#{isFieldWriteable}" title="Last Name" styleClass="entityDataText"/> + <h:inputText id="lastName" value="#{userInfoObject.lastName}" rendered="#{isFieldWriteable}" title="Last Name" styleClass="entityDataInputText"/> <h:outputText id="lastNameOutput" value="#{userInfoObject.lastName}" rendered="#{!isFieldWriteable}" title="Last Name" styleClass="entityDataText"/> <h:outputLabel for="firstName" value="First Name" styleClass="entityDataLabel"/> - <h:inputText id="firstName" value="#{userInfoObject.firstName}" rendered="#{isFieldWriteable}" title="First Name" styleClass="entityDataText"/> + <h:inputText id="firstName" value="#{userInfoObject.firstName}" rendered="#{isFieldWriteable}" title="First Name" styleClass="entityDataInputText"/> <h:outputText id="firstNameOutput" value="#{userInfoObject.firstName}" rendered="#{!isFieldWriteable}" title="First Name" styleClass="entityDataText"/> <h:outputLabel for="middleName" value="Middle Name" styleClass="entityDataLabel"/> - <h:inputText id="middleName" value="#{userInfoObject.middleName}" title="Middle Name" rendered="#{isFieldWriteable}" styleClass="entityDataText"/> + <h:inputText id="middleName" value="#{userInfoObject.middleName}" title="Middle Name" rendered="#{isFieldWriteable}" styleClass="entityDataInputText"/> <h:outputText id="middleNameOutput" value="#{userInfoObject.middleName}" title="Middle Name" rendered="#{!isFieldWriteable}" styleClass="entityDataText"/> <h:outputLabel for="email" value="Email" styleClass="entityDataLabel"/> - <h:inputText id="email" value="#{userInfoObject.email}" title="Email" styleClass="entityDataText"/> + <h:inputText id="email" value="#{userInfoObject.email}" title="Email" styleClass="entityDataInputText"/> <h:outputLabel for="password" value="Password" styleClass="entityDataLabel" rendered="#{userInfoObject.isDmUser}"/> - <p:password id="password" rendered="#{userInfoObject.isDmUser}" value="#{userInfoController.passwordEntry}" title="Password" feedback="true" styleClass="entityDataText"/> + <p:password id="password" rendered="#{userInfoObject.isDmUser}" value="#{userInfoController.passwordEntry}" title="Password" feedback="true" styleClass="entityDataInputText"/> - <h:outputLabel for="globusUsername" value="Globus Username" styleClass="entityDataEmphasizedLabel"/> - <h:inputText id="globusUsername" value="#{userInfoObject.globusUsername}" title="Globus Username" styleClass="entityDataEmphasizedText"/> + <h:outputLabel for="globusUsername" value="Globus Username" styleClass="entityDataLabel"/> + <h:inputText id="globusUsername" value="#{userInfoObject.globusUsername}" title="Globus Username" styleClass="entityDataInputText"/> <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/> - <h:inputText id="description" value="#{userInfoObject.description}" title="Description" styleClass="entityDataText"/> + <h:inputText id="description" value="#{userInfoObject.description}" title="Description" styleClass="entityDataInputText"/> </p:panelGrid> </ui:composition> -- GitLab