importWizard.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /****************************************************************
  2. ** Licensed Materials - Property of IBM
  3. **
  4. ** IBM Cognos Products: mdsrv
  5. **
  6. ** (C) Copyright IBM Corp. 2008, 2013
  7. **
  8. ** US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  9. *****************************************************************/
  10. .commandButtonInactiveII
  11. {
  12. font-size: 70%;
  13. /*width: 100%;*/
  14. cursor: default;
  15. color: #999999;
  16. /*height: 100%;*/
  17. text-decoration: none;
  18. border: #999999 1px solid;
  19. background-color: #ffffff;
  20. }
  21. .commandButton, .commandButtonInactiveII, .commandButtonOver, .commandButtonDown
  22. {
  23. vertical-align: middle;
  24. margin: 3px;
  25. padding: 3px 8px;
  26. }
  27. /* Don't know why this is required, but without it the font sizes are minuscule! */
  28. .formLabel, .dialogHintText
  29. {
  30. font-size: 100%;
  31. margin-bottom: 3px;
  32. }
  33. .accessKey
  34. {
  35. text-decoration: underline;
  36. }
  37. .dialogHeader
  38. {
  39. width: 100%;
  40. margin: 3px;
  41. font-size: 140%;
  42. white-space: nowrap;
  43. }
  44. .dialogButtonBar
  45. {
  46. width: 100%;
  47. margin: 3px;
  48. padding: 8px;
  49. font-size: 140%;
  50. vertical-align: middle;
  51. white-space: nowrap;
  52. }
  53. /* Based on clsPaneHeader_active from hal.css */
  54. .propGridHeader
  55. {
  56. overflow: hidden;
  57. cursor: default;
  58. text-align: left;
  59. white-space: nowrap;
  60. padding: 2px 1px 3px 3px;
  61. font-weight: bold;
  62. border: 1px solid #999999;
  63. border-bottom-width: 0px;
  64. background-color: #e7e7e7;
  65. color: #134679;
  66. }
  67. /*
  68. Hacks to override the HAL Progress Dialog styles, as requested by the UE team.
  69. */
  70. /* Hide the button bar from the progress dialogs */
  71. div#D_Progress div.clsDlgButtonBar
  72. {
  73. display: none;
  74. }
  75. /* 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) */
  76. div.clsModalDlgWin table.clsModalDlg tr.clsModalDlgHeader_active
  77. {
  78. display: none;
  79. }
  80. /* 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) */
  81. div.clsModalDlgWin
  82. {
  83. border: 1px solid black;
  84. }