1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /****************************************************************
- ** IBM Confidential
- **
- ** OCO Source Materials
- **
- ** BI and PM: tm1web
- **
- ** (C) Copyright IBM Corp. 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.
- *****************************************************************/
- /* set the background to the container that will hold the tree and tabs */
- .claro .navTabContainer {
- background-color: #D6EBFF;
- border-left: 1px solid #EFF7FF;
- border-right: 1px solid #EFF7FF;
- }
- .treeContain {
- padding-left: 5px;
- padding-right: 5px;
- padding-bottom: 0px;
- padding-top: 0px;
- border: 0px;
- }
- /* look and feel of navigator contents */
- .claro .dijitContentPane .treePane {
- background-color: #FBFBFB;
- border-left: 1px solid #ADC3D6;
- border-right: 1px solid #ADC3D6;
- }
- .claro .dijitTreeNodeHover {}
- .dijitTreeLabel {
- background-color: none;
- font-family: "Tahoma";
- background: none;
- font-size: 9pt;
- }
- .claro .dijitTreeNodeSelected .dijitTreeLabel {
- background: #F6DBA7;
- outline: none;
- padding-right: 5px;
- font-size: 9pt;
- }
- .claro .dijitTreeExpandoOpened {
- background-image:url(images/tree/tree_open.gif);
- background-position: 0px 0px;
- }
- .claro .dijitTreeExpandoClosed {
- background-image:url(images/tree/tree_closed.gif);
- background-position: 0px 0px;
- }
- .claro .dijitTreeRowHover .dijitTreeExpandoOpened,
- .claro .dijitTreeRowHover .dijitTreeExpandoClosed {
- background-position: 0px 0px;
- }
- .claro .dijitTreeIcon
- {
- background-image: url(images/tree/tree_node_icon.gif);
- }
|