combo.css 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /****************************************************************
  2. ** IBM Confidential
  3. **
  4. ** OCO Source Materials
  5. **
  6. ** BI and PM: tm1web
  7. **
  8. ** (C) Copyright IBM Corp. 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. /****************************************************************
  15. ** Layout for context menus with icons, not combobox drop down
  16. *****************************************************************/
  17. .claro .dijitMenuItem {
  18. }
  19. /* Icon area of drop down menu item */
  20. /*.claro .dijitMenuItemIcon{
  21. padding-left: 4px;
  22. _padding-right: 4px;
  23. margin-left: 4px;
  24. _margin-right: 4px;
  25. height: 16px;
  26. width: 16px;
  27. }
  28. */
  29. /* label area of drop down menu item */
  30. .claro .dijitMenuItemLabel{
  31. _margin-left: 4px; /* adjust for IE */
  32. }
  33. /****************************************************************
  34. ** Highlight in Cognos peach shades
  35. *****************************************************************/
  36. .claro .dijitMenuPassive .dijitMenuItemHover,
  37. .claro .dijitMenuItemSelected {
  38. background: #f7d7a5 url("images/contextmenu/dialog_pulldown_h.png") repeat-x top left;
  39. border-top: 1px solid #EED4A7; /* Added width makes context menu items expand and contract */
  40. border-bottom: 1px solid #F6DBB0; /* Override in dijitMenuTable for context menu items but keep for combobox */
  41. color:#000000; /* font */
  42. margin: 0px;
  43. padding: 0px;
  44. }
  45. /* Context menu menu item hover only, not the combobox contents hover */
  46. /* This stops the expand/contract action when highlighting and blurring a menu item */
  47. .claro .dijitMenuTable .dijitMenuItemHover,
  48. .claro .dijitMenuTable .dijitMenuItemSelected {
  49. border-top: 0px;
  50. border-bottom: 0px;
  51. }
  52. /* Background for context menus but not for combobox drop down menus */
  53. /* This provides the look of a blue gradient gutter for icons */
  54. /*.claro .dijitMenuTable{
  55. background: #F8FAFB url("images/contextmenu/menu_iconbg_grad.gif") no-repeat top left;
  56. border: 1px solid B9DCF3;
  57. -moz-border-radius:15px;
  58. border-radius:15px;
  59. }
  60. */
  61. /****************************************************************
  62. ** Separator
  63. *****************************************************************/
  64. /* Separator can be two pixels */
  65. /* Set border of either one to 0px to have only one */
  66. /* hide top line for single line separator */
  67. .claro .dijitMenuSeparatorTop {
  68. border-bottom: 0px;
  69. }
  70. /* show single line separator in Cognos color*/
  71. .claro .dijitMenuSeparatorBottom {
  72. border-top: 1px solid #9CAEC6;
  73. }