1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /****************************************************************
- ** 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.
- *****************************************************************/
- .claro .dijitDialogTitleBar {
- background: #E7F3FF;
- background-image: none;
- }
- .claro .dijitDialogCloseIcon {
- background: url("images/dialog/dialog_icon_close.gif") no-repeat right top;
- height: 18px;
- width: 18px;
- /* position: absolute;
- vertical-align: middle;
- right: 6px;
- top: 4px;
- height: 15px;
- width: 15px;
- cursor: pointer;*/
- }
- .claro .dijitDialog {
- border: 1px solid #769dc0;
- box-shadow:0px 1px 5px rgba(0,0,0,0.25);
- -webkit-box-shadow:0px 1px 5px rgba(0,0,0,0.25);
- -moz-box-shadow: 0px 1px 5px rgba(0,0,0,0.25);
- background:none repeat scroll 0 0 #FFFFFF;
- font-family: Tahoma, Arial;
- font:12px Myriad,Helvetica,Tahoma,Arial,clean,sans-serif;
- }
- .dj_ie6 .claro .dijitDialogCloseIcon {
- background : url("images/dialog/dialog_icon_close.gif") no-repeat right top;
- height: 18px;
- width: 18px;
- }
- .claro .dijitDialogCloseIcon-hover {
- background: url("images/dialog/dialog_icon_close_h.gif") no-repeat right top;
- height: 18px;
- width: 18px;
- }
- .dj_ie6 .claro .dijitDialogCloseIcon-hover {
- background : url("images/dialog/dialog_icon_close_h.gif") no-repeat right top;
- height: 18px;
- width: 18px;
- }
|