This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal



Dec 3, 2011, 2:49 AM
2 Posts

Are these sprites available through OneUIV2.1?

  • Category: Styles and Themes
  • Platform: Not Applicable
  • Release: 8.5.3
  • Role: Developer
  • Tags: oneui,themes,sprites
  • Replies: 2
In the OneUIV2.1 documentation they show these examples of messages. I have the color coding working but I was wondering if the image sprites are actually part of OneUI. 
 
 
Dec 4, 2011, 5:23 PM
1 Posts
Re: Are these sprites available through OneUIV2.1?
Technically, each product (e.g. Connections) would provide their own sprites, which would more or less mirror the ones available from the One UI example pages here:
 
    http://infolib.lotus.com/resources/oneui/2.1/css/images/lotusSprite-8bit.png
 
    http://infolib.lotus.com/resources/oneui/2.1/docResources/devdocImages/yourProductSprite-8bit.png
 
Therefore, you should be able to pull those into the pages you're developing with to make it work!
Dec 5, 2011, 8:19 AM
261 Posts
Re: Are these sprites available through OneUIV2.1?
I looked into this for my OneUI v2.1 demo but couldn't find them in the OneUI v2.1 theme folders (/domino/html/oneuiv2.1).
 
However, a basic installation of Domino 8.5.3 also still has a domino/html/oneuiv2 folder that contains all the icons for the messages. To use them you need to add this piece of CSS to your application (assuming you're already using the oneuiv2.1 stylesheets):
 
/* icons for messages */
.lotusWarning {
    background-image: url(/oneuiv2/images/iconWarning16.png);
    background-repeat: no-repeat;
    background-position: 8px 5px;
    padding-left: 30px;
}
.lotusError {
    background-image: url(/oneuiv2/images/iconError16.png);
    background-repeat: no-repeat;
    background-position: 8px 5px;
    padding-left: 30px;
}
.lotusInfo {
    background-image: url(/oneuiv2/images/iconInfo16.png);
    background-repeat: no-repeat;
    background-position: 8px 5px;
    padding-left: 30px;
}
.lotusConfirm {
    background-image: url(/oneuiv2/images/iconConfirmation16.png);
    background-repeat: no-repeat;
    background-position: 8px 5px;
    padding-left: 30px;
}

 
Cheers,
Mark
 

This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal