Author: chris.laprun(a)jboss.com
Date: 2010-10-26 06:24:08 -0400 (Tue, 26 Oct 2010)
New Revision: 4841
Modified:
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml
components/wsrp/trunk/admin-gui/src/main/webapp/styles/style.css
Log:
- GTNWSRP-113: Improved size of columns.
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml
===================================================================
---
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml 2010-10-26
10:23:54 UTC (rev 4840)
+++
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml 2010-10-26
10:24:08 UTC (rev 4841)
@@ -36,7 +36,7 @@
rendered="#{!consumersMgr.consumersEmpty}"
rowClasses="EvenRow,OddRow"
styleClass="UIGrid ConsumerGrid"
width="100%">
- <h:column>
+ <h:column headerClass="consumerNameColumn">
<f:facet name="header">
#{i18n.consumers_table_column_consumer}
<div style="font-size: 90%; display:inline; font-weight:
normal;">
Modified:
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml
===================================================================
---
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml 2010-10-26
10:23:54 UTC (rev 4840)
+++
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exportDetail.xhtml 2010-10-26
10:24:08 UTC (rev 4841)
@@ -30,7 +30,7 @@
<table width="100%" class="portlet-table-body">
<tr>
- <th>#{i18n.export_detail_export_time}</th>
+ <th width="20%">#{i18n.export_detail_export_time}</th>
<td>#{consumer.currentExport.exportTime}</td>
</tr>
<ui:remove>
Modified:
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml
===================================================================
---
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml 2010-10-26
10:23:54 UTC (rev 4840)
+++
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/exports.xhtml 2010-10-26
10:24:08 UTC (rev 4841)
@@ -43,7 +43,7 @@
</h:column>
</ui:remove>
- <h:column>
+ <h:column headerClass="hasFailedColumn">
<f:facet
name="header">#{i18n.export_detail_has_failed}</f:facet>
<h:selectBooleanCheckbox id="hasFailed"
value="#{export.hasFailedPortlets}" disabled="true"/>
</h:column>
Modified:
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml
===================================================================
---
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml 2010-10-26
10:23:54 UTC (rev 4840)
+++
components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/exports/import.xhtml 2010-10-26
10:24:08 UTC (rev 4841)
@@ -31,7 +31,7 @@
<h:form id="import-form">
<h:dataTable id="portletsList"
value="#{consumer.currentExport.exportedPortlets}" var="portlet"
rowClasses="EvenRow,OddRow" styleClass="UIGrid"
width="100%">
- <h:column>
+ <h:column headerClass="importColumn">
<f:facet name="header">#{i18n.import_use}</f:facet>
<h:selectBooleanCheckbox id="selected"
value="#{portlet.selected}"
valueChangeListener="#{portlet.select}"
Modified: components/wsrp/trunk/admin-gui/src/main/webapp/styles/style.css
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/styles/style.css 2010-10-26 10:23:54
UTC (rev 4840)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/styles/style.css 2010-10-26 10:24:08
UTC (rev 4841)
@@ -385,3 +385,16 @@
margin: 0 auto 0 auto;
width: 100%;
}
+
+.wsrp-consumers-ui .consumerNameColumn {
+ width: 37%;
+}
+
+.wsrp-consumers-ui .hasFailedColumn {
+ width: 15%;
+}
+
+.wsrp-consumers-ui .importColumn {
+ width: 7%;
+}
+