1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /****************************************************************
- ** 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.
- *****************************************************************/
- /****************************************************************
- ** Layout for context menus with icons, not combobox drop down
- *****************************************************************/
- .claro .dijitMenuItem {
-
- }
- /* Icon area of drop down menu item */
- /*.claro .dijitMenuItemIcon{
- padding-left: 4px;
- _padding-right: 4px;
- margin-left: 4px;
- _margin-right: 4px;
- height: 16px;
- width: 16px;
- }
- */
- /* label area of drop down menu item */
- .claro .dijitMenuItemLabel{
- _margin-left: 4px; /* adjust for IE */
- }
-
- /****************************************************************
- ** Highlight in Cognos peach shades
- *****************************************************************/
- .claro .dijitMenuPassive .dijitMenuItemHover,
- .claro .dijitMenuItemSelected {
- background: #f7d7a5 url("images/contextmenu/dialog_pulldown_h.png") repeat-x top left;
- border-top: 1px solid #EED4A7; /* Added width makes context menu items expand and contract */
- border-bottom: 1px solid #F6DBB0; /* Override in dijitMenuTable for context menu items but keep for combobox */
- color:#000000; /* font */
- margin: 0px;
- padding: 0px;
- }
- /* Context menu menu item hover only, not the combobox contents hover */
- /* This stops the expand/contract action when highlighting and blurring a menu item */
- .claro .dijitMenuTable .dijitMenuItemHover,
- .claro .dijitMenuTable .dijitMenuItemSelected {
- border-top: 0px;
- border-bottom: 0px;
- }
- /* Background for context menus but not for combobox drop down menus */
- /* This provides the look of a blue gradient gutter for icons */
- /*.claro .dijitMenuTable{
- background: #F8FAFB url("images/contextmenu/menu_iconbg_grad.gif") no-repeat top left;
- border: 1px solid B9DCF3;
- -moz-border-radius:15px;
- border-radius:15px;
- }
- */
- /****************************************************************
- ** Separator
- *****************************************************************/
- /* Separator can be two pixels */
- /* Set border of either one to 0px to have only one */
- /* hide top line for single line separator */
- .claro .dijitMenuSeparatorTop {
- border-bottom: 0px;
- }
- /* show single line separator in Cognos color*/
- .claro .dijitMenuSeparatorBottom {
- border-top: 1px solid #9CAEC6;
- }
|