123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /****************************************************************
- ** 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.
- *****************************************************************/
- /* Disable default selection in Firefox */
- table
- {
- -moz-user-select: none;
- }
- .TreeNode
- {
- padding: 1px;
- cursor: default;
- }
- .TreeNodeHover
- {
- color : #000000;
- background-color: #e3e9f3;
- font-size: 8pt;
- padding: 1px;
- cursor: pointer;
- }
- .TreeNodeHeader
- {
- font-weight: bold;
- padding: 1px;
- cursor: default;
- font-size: 9pt;
- }
- .TreeNodeSelected
- {
- color:#ffffff;
- background-color:#000000;
- font-size: 8pt;
- padding: 1px;
- cursor: pointer;
- }
- .TreeNavPanel
- {
- padding-top:4px;
- padding-left:1px;
- border: #7C7C94 1px solid;
- font-size: 9pt;
- cursor: default;
- }
- .toolbar
- {
- height: 27px;
- background-image: url(../../images/toolbar-bkgrnd.png);
- background-color: Transparent;
- white-space: normal;
- vertical-align:middle;
- }
- .tbi_hide, .tbi_show
- {
- position: absolute;
- top: 2px;
- }
- .tbi_hide
- {
- visibility: hidden;
- }
- .tbi_show
- {
- visibility: visible;
- }
|