| author | Sidharth Singh | 2012-04-03 10:35:17 (EDT) |
|---|---|---|
| committer | Manik Kishore | 2012-06-19 07:25:32 (EDT) |
| commit | 436db1c404781490b14cff099cd226d178298266 (patch) (side-by-side diff) | |
| tree | a080004db58265c3bdbe6e2d87bc8fcfaf436b39 | |
| parent | 9a51c42d4560af06250b9782f44f64685650d302 (diff) | |
| download | org.eclipse.stardust.ui.web-436db1c404781490b14cff099cd226d178298266.zip org.eclipse.stardust.ui.web-436db1c404781490b14cff099cd226d178298266.tar.gz org.eclipse.stardust.ui.web-436db1c404781490b14cff099cd226d178298266.tar.bz2 | |
Jira-ID: CRNT-23779
1)Added a new style participantAutoCplRow to handle the word-wrap of AutoComplete Text in nirvanaPortal.css
2)Added a panelGroup to participantAutocompleteSingleSelector.xhtml autoComplete Text
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/ui.web@55245 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
3 files changed, 19 insertions, 2 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 ebd7da1..9127d15 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 @@ -1912,4 +1912,13 @@ table.autoCompTable, table.autoCompTable > tbody > tr, table.autoCompTable > tbo height:300px;
}
-/******** context-portal.css Style Ends**********/
\ No newline at end of file +/******** context-portal.css Style Ends**********/
+
+/* ********* Tooltip for Participant Single Select AutoComplete Text ********** */
+.participantAutoCplRow
+{
+ white-space: normal;
+ word-wrap: break-word;
+ width:85px;
+}
+/***************Participant Single Select AutoComplete Ends *******************/
\ No newline at end of file diff --git a/portal-common/src/main/resources/META-INF/xhtml/css/nirvanaPortal_ie7.css b/portal-common/src/main/resources/META-INF/xhtml/css/nirvanaPortal_ie7.css index 4d114bd..65d5b5c 100644 --- a/portal-common/src/main/resources/META-INF/xhtml/css/nirvanaPortal_ie7.css +++ b/portal-common/src/main/resources/META-INF/xhtml/css/nirvanaPortal_ie7.css @@ -11,3 +11,8 @@ margin-top: -2px;
}
+.participantAutoCplRow {
+ white-space: normal !important;
+ word-wrap: break-word;
+ overflow:hidden;
+}
\ No newline at end of file diff --git a/views-common/src/main/resources/META-INF/xhtml/user/participantAutocompleteSingleSelector.xhtml b/views-common/src/main/resources/META-INF/xhtml/user/participantAutocompleteSingleSelector.xhtml index 234dca0..370061f 100644 --- a/views-common/src/main/resources/META-INF/xhtml/user/participantAutocompleteSingleSelector.xhtml +++ b/views-common/src/main/resources/META-INF/xhtml/user/participantAutocompleteSingleSelector.xhtml @@ -25,7 +25,10 @@ <ice:panelGroup rendered="true">
<ice:graphicImage value="#{user.icon}" width="24px" height="24px" style="padding-right: 10px;" />
</ice:panelGroup>
- <ice:outputText value="#{user.text}" escape="false" style="white-space:normal;" />
+ <ice:panelGroup styleClass="participantAutoCplRow">
+ <ice:outputText value="#{user.text}" escape="false"
+ style="white-space:normal;" />
+ </ice:panelGroup>
</ice:panelGrid>
</f:facet>
</c:if>
|

