| author | Sidharth Singh | 2012-05-17 01:15:40 (EDT) |
|---|---|---|
| committer | Manik Kishore | 2012-06-19 07:29:54 (EDT) |
| commit | b1460a6b53c6855ba03ede5615f1ba9a238042a6 (patch) (side-by-side diff) | |
| tree | 5c9969c0ea53fb26408e4997fd69a6070281d925 | |
| parent | d8ecd54d6ca3828d13a9e6d7c3b03ae0071b88b0 (diff) | |
| download | org.eclipse.stardust.ui.web-b1460a6b53c6855ba03ede5615f1ba9a238042a6.zip org.eclipse.stardust.ui.web-b1460a6b53c6855ba03ede5615f1ba9a238042a6.tar.gz org.eclipse.stardust.ui.web-b1460a6b53c6855ba03ede5615f1ba9a238042a6.tar.bz2 | |
Jira-ID: CRNT-24799
1)Added a new style .icon-style in nirvanaPortal.css similar to .toolbar-button except width and height attributes
2)Changed reference from styleClas="toolbar-button" to "icon-style in AutoComplete Action Columns and portalContent.xhtml and portalToolbar.xhtml
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/ui.web@56398 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
5 files changed, 11 insertions, 4 deletions
diff --git a/portal-common/src/main/resources/META-INF/xhtml/css/nirvanaPortal.css b/portal-common/src/main/resources/META-INF/xhtml/css/nirvanaPortal.css index 92d510b..a00c321 100644 --- a/portal-common/src/main/resources/META-INF/xhtml/css/nirvanaPortal.css +++ b/portal-common/src/main/resources/META-INF/xhtml/css/nirvanaPortal.css @@ -850,6 +850,13 @@ img height: 16px;
}
+.icon-style
+{
+ border: 1px dotted transparent;
+ margin: 2px;
+ padding: 2px;
+}
+
.toolbar-button:hover
{
border: 1px dotted black;
diff --git a/portal-common/src/main/resources/META-INF/xhtml/portalContent.xhtml b/portal-common/src/main/resources/META-INF/xhtml/portalContent.xhtml index 2595e25..7122b66 100644 --- a/portal-common/src/main/resources/META-INF/xhtml/portalContent.xhtml +++ b/portal-common/src/main/resources/META-INF/xhtml/portalContent.xhtml @@ -60,7 +60,7 @@ <ice:commandButton
image="/plugins/common/images/icons/tab-bttn-minimize.png"
action="#{ippPortalApp.deactivateFullScreenMode}"
- styleClass="toolbar-button"
+ styleClass="icon-style" style="width:14px;height:13px;"
title="#{common_msgPropsBean['portalFramework.view.closeFullScreen']}" />
</ice:panelGroup>
</td>
diff --git a/portal-common/src/main/resources/META-INF/xhtml/portalToolbar.xhtml b/portal-common/src/main/resources/META-INF/xhtml/portalToolbar.xhtml index c4f1b82..3ddab73 100644 --- a/portal-common/src/main/resources/META-INF/xhtml/portalToolbar.xhtml +++ b/portal-common/src/main/resources/META-INF/xhtml/portalToolbar.xhtml @@ -18,7 +18,7 @@ <pc:automationTag value="auto-FW-ShowLPs" standAlone="false" />
<ice:graphicImage
url="/plugins/common/images/icons/pane-expand.png"
- styleClass="toolbar-button"
+ styleClass="icon-style"
title="#{common_msgPropsBean['portalFramework.launchPanels.show']}"/>
</ice:commandLink>
</td>
diff --git a/process-portal/src/main/resources/META-INF/xhtml/processportal/views/qualityassurance/qualityACAutocompleteMultiSelectedTableColumns.xhtml b/process-portal/src/main/resources/META-INF/xhtml/processportal/views/qualityassurance/qualityACAutocompleteMultiSelectedTableColumns.xhtml index 97267cc..6e63846 100644 --- a/process-portal/src/main/resources/META-INF/xhtml/processportal/views/qualityassurance/qualityACAutocompleteMultiSelectedTableColumns.xhtml +++ b/process-portal/src/main/resources/META-INF/xhtml/processportal/views/qualityassurance/qualityACAutocompleteMultiSelectedTableColumns.xhtml @@ -18,7 +18,7 @@ <ice:commandLink action="#{row.remove}">
<pc:automationTag value="auto-PP-QualityAssuranceCodesMultiSel-ActionsRemove"
standAlone="false" />
- <ice:graphicImage value="/plugins/views-common/images/icons/dialog-windowbttn-close.png"/>
+ <ice:graphicImage value="/plugins/views-common/images/icons/dialog-windowbttn-close.png" styleClass="icon-style"/>
</ice:commandLink>
</ice:panelGroup>
</ice:panelGroup>
diff --git a/views-common/src/main/resources/META-INF/xhtml/user/userAutocompleteMultiSelectorUserTable.xhtml b/views-common/src/main/resources/META-INF/xhtml/user/userAutocompleteMultiSelectorUserTable.xhtml index 252800a..8bfac74 100644 --- a/views-common/src/main/resources/META-INF/xhtml/user/userAutocompleteMultiSelectorUserTable.xhtml +++ b/views-common/src/main/resources/META-INF/xhtml/user/userAutocompleteMultiSelectorUserTable.xhtml @@ -50,7 +50,7 @@ standAlone="false" />
<ice:graphicImage
value="/plugins/views-common/images/icons/dialog-windowbttn-close.png"
- styleClass="#{(not user.removeable) ? 'iceCmdBtn-dis' : ''}" />
+ styleClass="#{(not user.removeable) ? 'iceCmdBtn-dis' : 'icon-style'}" />
</ice:commandLink>
</td>
</tr>
|

