navtree.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /****************************************************************
  2. ** IBM Confidential
  3. **
  4. ** OCO Source Materials
  5. **
  6. ** BI and PM: tm1web
  7. **
  8. ** (C) Copyright IBM Corp. 2007, 2009, 2011
  9. **
  10. ** The source code for this program is not published or otherwise
  11. ** divested of its trade secrets, irrespective of what has been
  12. ** deposited with the U.S. Copyright Office.
  13. *****************************************************************/
  14. /* Disable default selection in Firefox */
  15. table
  16. {
  17. -moz-user-select: none;
  18. }
  19. .TreeNode
  20. {
  21. padding: 1px;
  22. cursor: default;
  23. }
  24. .TreeNodeHover
  25. {
  26. color : #000000;
  27. background-color: #e3e9f3;
  28. font-size: 8pt;
  29. padding: 1px;
  30. cursor: pointer;
  31. }
  32. .TreeNodeHeader
  33. {
  34. font-weight: bold;
  35. padding: 1px;
  36. cursor: default;
  37. font-size: 9pt;
  38. }
  39. .TreeNodeSelected
  40. {
  41. color:#ffffff;
  42. background-color:#000000;
  43. font-size: 8pt;
  44. padding: 1px;
  45. cursor: pointer;
  46. }
  47. .TreeNavPanel
  48. {
  49. padding-top:4px;
  50. padding-left:1px;
  51. border: #7C7C94 1px solid;
  52. font-size: 9pt;
  53. cursor: default;
  54. }
  55. .toolbar
  56. {
  57. height: 27px;
  58. background-image: url(../../images/toolbar-bkgrnd.png);
  59. background-color: Transparent;
  60. white-space: normal;
  61. vertical-align:middle;
  62. }
  63. .tbi_hide, .tbi_show
  64. {
  65. position: absolute;
  66. top: 2px;
  67. }
  68. .tbi_hide
  69. {
  70. visibility: hidden;
  71. }
  72. .tbi_show
  73. {
  74. visibility: visible;
  75. }