Author: thuy.nguyen
Date: 2009-12-16 23:42:45 -0500 (Wed, 16 Dec 2009)
New Revision: 1033
Modified:
portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageSelector/Stylesheet.css
portal/trunk/web/portal/src/main/webapp/groovy/portal/webui/page/UIPageSelector2.gtmpl
Log:
GTNPORTAL-258: Error displaying in Page Selector form when change language to Russian
Modified:
portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageSelector/Stylesheet.css
===================================================================
---
portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageSelector/Stylesheet.css 2009-12-17
04:39:43 UTC (rev 1032)
+++
portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageSelector/Stylesheet.css 2009-12-17
04:42:45 UTC (rev 1033)
@@ -70,21 +70,6 @@
margin-top: 2px;
}
-.UIPageSelector .UIFormInfo .PropertyName {
- float: left; /* orientation=lt */
- float: right; /* orientation=rt */
- width: 100px;
- text-align: right; /* orientation=lt */
- text-align: left; /* orientation=rt */
- padding: 4px 10px 4px 0px; /* orientation=lt */
- padding: 4px 0px 4px 10px; /* orientation=rt */
-}
-
-.UIPageSelector .UIFormInfo .PropertyValue {
- color: #3176e3;
- padding: 4px;
-}
-
.UIPageSelector .FloatBlockHidden {
filter: alpha(opacity=30); -moz-opacity: .30; opacity: .30;
cursor: default;
Modified:
portal/trunk/web/portal/src/main/webapp/groovy/portal/webui/page/UIPageSelector2.gtmpl
===================================================================
---
portal/trunk/web/portal/src/main/webapp/groovy/portal/webui/page/UIPageSelector2.gtmpl 2009-12-17
04:39:43 UTC (rev 1032)
+++
portal/trunk/web/portal/src/main/webapp/groovy/portal/webui/page/UIPageSelector2.gtmpl 2009-12-17
04:42:45 UTC (rev 1033)
@@ -27,7 +27,7 @@
UIFormInputSet uiform = uicomponent.getChild(UIFormInputSet.class);
%>
-<div class="UIPageSelector" id="<%=uicomponent.getId();%>"
>
+<div class="UIPageSelector"
id="<%=uicomponent.getId();%>">
<div class="PageSelectorTitle">
<div class="Icon
BlueInfoBox16x16Icon"><span></span></div>
<div
class="Title"><%=_ctx.appRes(uicomponent.getId()+".label.currentSelectedPage")%></div>
@@ -35,37 +35,37 @@
</div>
<div class="UIFormInfo">
<div class="FormInfoBG">
- <div class="FormInfoIcon">
- <div class="UIPropertyInfo">
- <div class="OverflowContainer">
- <div
class="PropertyName"><%=_ctx.appRes(uicomponent.getId()+".header.id")%>:</div>
- <div class="PropertyValue">
+ <div class="FormInfoIcon UIForm">
+ <table class="UIPropertyInfo UIFormGrid">
+ <tr>
+ <td
class="FieldLabel"><%=_ctx.appRes(uicomponent.getId()+".header.id")%>:</td>
+ <td class="FieldComponent">
<% if(page != null) { %>
$pageId
<% } %>
- </div>
- </div>
- <div class="OverflowContainer">
- <div
class="PropertyName"><%=_ctx.appRes(uicomponent.getId()+".label.name")%>:</div>
- <div class="PropertyValue">
+ </td>
+ </tr>
+ <tr>
+ <td
class="FieldLabel"><%=_ctx.appRes(uicomponent.getId()+".label.name")%>:</td>
+ <td class="FieldComponent">
<% if(page == null) { %>
<% uiform.renderChild("pageName");%>
<% } else { %>
$name
<% } %>
- </div>
- </div>
- <div class="OverflowContainer">
- <div
class="PropertyName"><%=_ctx.appRes(uicomponent.getId()+".label.title")%>:</div>
- <div class="PropertyValue">
+ </td>
+ </tr>
+ <tr>
+ <td
class="FieldLabel"><%=_ctx.appRes(uicomponent.getId()+".label.title")%>:</td>
+ <td class="FieldComponent">
<% if(page == null) { %>
<% uiform.renderChild("pageTitle");%>
<% } else { %>
$title
<% } %>
- </div>
- </div>
- </div>
+ </td>
+ </tr>
+ </table>
</div>
</div>
</div>
Show replies by date