12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /****************************************************************
- ** IBM Confidential
- **
- ** OCO Source Materials
- **
- ** BI and PM: tm1web
- **
- ** (C) Copyright IBM Corp. 2007, 2009, 2011
- **
- ** The source code for this program is not published or otherwise
- ** divested of its trade secrets, irrespective of what has been
- ** deposited with the U.S. Copyright Office.
- *****************************************************************/
- .elemHovered
- {
- background-color: #E0E0E0;
- cursor:pointer;
- white-space: nowrap;
- overflow: hidden;
- }
- .elem
- {
- white-space: nowrap;
- overflow: hidden;
- }
- .toolbar
- {
- height: 27px;
- background-image: url(../../images/toolbar-bkgrnd.png);
- background-color: Transparent;
- white-space: normal;
- }
- .tbi_hide, .tbi_show
- {
- position: absolute;
- top: 2px;
- }
- .tbi_hide
- {
- visibility: hidden;
- }
- .tbi_show
- {
- visibility: visible;
- }
- .tbTextb
- {
- position: absolute;
- cursor: pointer;
- font-family: Tahoma;
- font-size: 9pt;
- font-weight: bold;
- text-align: center;
- top: 6px;
- }
|