3971c016eb44eb2c74c733ddaf24e7debf620a60.svn-base 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*button text - all levels*/
  2. #altermenu .menuButtonSecond td, .menuButton td, .menuButtondown td, .menuButtonover td {
  3. cursor:default;
  4. }
  5. /*menu text - all levels*/
  6. #altermenu .defaultMenuText{
  7. font:12px Arial,sans-serif;
  8. padding-left:10px;
  9. padding-right:5px;
  10. }
  11. /*menu caption if any*/
  12. #altermenu .menuName{
  13. color : Blue;
  14. font : 11px Arial,sans-serif;
  15. letter-spacing : 3px;
  16. padding-left : 10px;
  17. padding-right : 10px;
  18. }
  19. /*========= BUTTONS ======================*/
  20. /*plain button state - top level*/
  21. #altermenu .menuButton {
  22. border : solid 1px #d3f3fe;
  23. }
  24. /*down button state - top level*/
  25. #altermenu .menuButtondown {
  26. background-color : #6495ed;
  27. border: solid 1px #d3f3fe;
  28. cursor : default;
  29. color:white;
  30. }
  31. /*mouse over button state - top level*/
  32. #altermenu .menuButtonover {
  33. background-color : #6495ed;
  34. border: solid 1px #d3f3fe;
  35. cursor : default;
  36. }
  37. /*plain button state - other levels*/
  38. #altermenu .menuButtonSecond {
  39. background-color:#d3f3fe;
  40. border : solid 1px #d3f3fe;
  41. font:12px Arial,sans-serif;
  42. }
  43. /*mouse over button and down button states - other levels*/
  44. #altermenu .menuButtonSeconddown {
  45. border : solid 1px #d3f3fe;
  46. font:12px Arial,sans-serif;
  47. background-color : #6495ed;
  48. color:white;
  49. cursor : default;
  50. }
  51. /*icon place style on button over/down - other levels
  52. .menuButtonSeconddownimg {
  53. background-color : #C9D9F5;
  54. }*/
  55. /*text of mouse over button - other levels*/
  56. #altermenu .menuButtonSeconddown td {
  57. color:white;
  58. cursor:default;
  59. border:0px solid;
  60. }
  61. /*============ PANELS and DEVIDERS ===========================================*/
  62. /*manu panel - top level*/
  63. #altermenu .menuTable{
  64. background-color : #d3f3fe;
  65. border: solid #6495ed 1px;
  66. margin : 0px;
  67. -moz-user-select : none;
  68. padding : 0px;
  69. }
  70. /*menu panel - other levels*/
  71. #altermenu .secondMenuTable{
  72. background-color : #d3f3fe;
  73. border: solid #6495ed 1px;
  74. margin : 2px;
  75. -moz-user-select : none;
  76. padding : 0 1 0 2;
  77. }
  78. /*devider - horizontal*/
  79. #altermenu .menudividery {
  80. background-color : blue;
  81. border-bottom : solid #FFFFFF 1px;
  82. border-top : solid #6495ed 1px;
  83. height : 2px;
  84. overflow : hidden;
  85. width : 100%;
  86. }
  87. /*================== DRAG HANDLERS ==================*/
  88. /*drag handler for menu - horizontal*/
  89. #altermenu .menuhandle {
  90. background-color : #6495ed;
  91. border-bottom : solid #d3f3fe 1px;
  92. border-left : solid #FFFFFF 1px;
  93. border-right : solid #d3f3fe 1px;
  94. border-top : solid #FFFFFF 1px;
  95. cursor : move;
  96. height : 100%;
  97. overflow : hidden;
  98. width : 3px;
  99. }
  100. /*============ ICONS and SCROLLERS ====================*/
  101. /*disabled icon - all levels*/
  102. #altermenu .iconGray {
  103. filter : BlendTrans(Percent=50) gray();
  104. cursor: default;
  105. border:solid 1px #D4D0C8;
  106. }
  107. /*enabled scroller*/
  108. #altermenu .menuscrollerenabled{
  109. background-color:#CAC8D4;
  110. cursor: pointer;
  111. text-align:center;
  112. }
  113. /*disabled scroller*/
  114. #altermenu .menuscrollerdisabled{
  115. background-color: #CAC8D4;
  116. cursor: default;
  117. visibility:hidden;
  118. text-align:center;
  119. }