contextmenu.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .WebFX-ContextMenu {
  2. border: 0;/*2px outset;*/
  3. width: 10px;
  4. }
  5. .WebFX-ContextMenu-Body {
  6. background-color: Menu;
  7. margins: 0px;
  8. padding: 1px;
  9. border: 2px outset;
  10. }
  11. .WebFX-ContextMenu-Item {
  12. cursor: default;
  13. font: menu;
  14. color: MenuText;
  15. width: 100%;
  16. padding: 2px 16px 2px 16px;
  17. }
  18. .WebFX-ContextMenu-Over {
  19. cursor: default;
  20. background-color: highlight;
  21. font: menu;
  22. width: 100%;
  23. padding: 2px 16px 2px 16px;
  24. color: highlighttext;
  25. }
  26. .WebFX-ContextMenu-Disabled {
  27. cursor: default;
  28. font: menu;
  29. width: 100%;
  30. padding: 2px 16px 2px 16px;
  31. color:graytext;
  32. }
  33. .WebFX-ContextMenu-Disabled-Over {
  34. cursor: default;
  35. background-color: highlight;
  36. font: menu;
  37. width: 100%;
  38. padding: 2px 16px 2px 16px;
  39. color: graytext;
  40. }
  41. .WebFX-ContextMenu-Separator
  42. {
  43. font-size: 0pt;
  44. border: 1px inset;
  45. height: 2px;
  46. overflow: hidden;
  47. margin: 3px 1px 3px 1px;
  48. }
  49. .WebFX-ContextMenu-Disabled-Over .WebFX-ContextMenu-DisabledContainer
  50. {
  51. display: block;
  52. width: 100%;
  53. vertical-align: center;
  54. }
  55. /*very nice hack by erik below */
  56. .WebFX-ContextMenu-Disabled .WebFX-ContextMenu-DisabledContainer
  57. {
  58. display: block;
  59. background: GrayText;
  60. filter: chroma(color=#010101) dropshadow(color=ButtonHighlight, offx=1, offy=1);
  61. width: 100%;
  62. vertical-align: center;
  63. }
  64. .WebFX-ContextMenu-Disabled .WebFX-ContextMenu-DisabledContainer .WebFX-ContextMenu-DisabledContainer
  65. {
  66. background: Transparent;
  67. filter: gray()
  68. /* Remove all bright shades of gray */
  69. chroma(color=#ffffff) chroma(color=#fefefe) chroma(color=#fdfdfd)
  70. chroma(color=#fcfcfc) chroma(color=#fbfbfb) chroma(color=#fafafa)
  71. chroma(color=#f9f9f9) chroma(color=#f8f8f8) chroma(color=#f7f7f7)
  72. chroma(color=#f6f6f6) chroma(color=#f5f5f5) chroma(color=#f4f4f4)
  73. chroma(color=#f3f3f3)
  74. mask(color=#010101);
  75. }
  76. .WebFX-ContextMenu-Disabled-Over .WebFX-ContextMenu-DisabledContainer .WebFX-ContextMenu-DisabledContainer
  77. {
  78. }