1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /****************************************************************
- ** Licensed Materials - Property of IBM
- **
- ** IBM Cognos Products: mdsrv
- **
- ** (C) Copyright IBM Corp. 2008, 2013
- **
- ** US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- *****************************************************************/
- .commandButtonInactiveII
- {
- font-size: 70%;
- /*width: 100%;*/
- cursor: default;
- color: #999999;
- /*height: 100%;*/
- text-decoration: none;
- border: #999999 1px solid;
- background-color: #ffffff;
- }
- .commandButton, .commandButtonInactiveII, .commandButtonOver, .commandButtonDown
- {
- vertical-align: middle;
- margin: 3px;
- padding: 3px 8px;
- }
- /* Don't know why this is required, but without it the font sizes are minuscule! */
- .formLabel, .dialogHintText
- {
- font-size: 100%;
- margin-bottom: 3px;
- }
- .accessKey
- {
- text-decoration: underline;
- }
- .dialogHeader
- {
- width: 100%;
- margin: 3px;
- font-size: 140%;
- white-space: nowrap;
- }
- .dialogButtonBar
- {
- width: 100%;
- margin: 3px;
- padding: 8px;
- font-size: 140%;
- vertical-align: middle;
- white-space: nowrap;
- }
- /* Based on clsPaneHeader_active from hal.css */
- .propGridHeader
- {
- overflow: hidden;
- cursor: default;
- text-align: left;
- white-space: nowrap;
- padding: 2px 1px 3px 3px;
- font-weight: bold;
-
- border: 1px solid #999999;
- border-bottom-width: 0px;
- background-color: #e7e7e7;
- color: #134679;
- }
- /*
- Hacks to override the HAL Progress Dialog styles, as requested by the UE team.
- */
- /* Hide the button bar from the progress dialogs */
- div#D_Progress div.clsDlgButtonBar
- {
- display: none;
- }
- /* Hide the title bar from the progress dialogs (WARNING: This may impact other HAL dialogs that are used in pages that use this CSS file) */
- div.clsModalDlgWin table.clsModalDlg tr.clsModalDlgHeader_active
- {
- display: none;
- }
- /* Add an extra black border around the progress dialog (WARNING: This may impact other HAL dialogs that are used in pages that use this CSS file) */
- div.clsModalDlgWin
- {
- border: 1px solid black;
- }
|