CRN.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /****************************************************************
  2. ** Licensed Materials - Property of IBM
  3. **
  4. ** BI and PM: qs
  5. **
  6. ** (C) Copyright IBM Corp. 2001, 2017
  7. **
  8. ** US Government Users Restricted Rights - Use, duplication or
  9. ** disclosure restricted by GSA ADP Schedule Contract with
  10. ** IBM Corp.
  11. *****************************************************************/
  12. /*
  13. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  14. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  15. */
  16. /*General styles*/
  17. .mainHeader3
  18. {
  19. background-color: #ffffff;
  20. border-top: 1px solid #ffffff;
  21. }
  22. .outsideMenuFrame
  23. {
  24. width:100%;
  25. height:100%;
  26. border-top: 1px solid #000000;
  27. }
  28. /*menu bar styles*/
  29. .menuBar
  30. {
  31. padding: 1px;
  32. background-color: #000000;
  33. border-bottom: 1px solid #000066;
  34. }
  35. .clsMenu
  36. {
  37. display: inline;
  38. background-color: white;
  39. border: 2px outset threedhighlight;
  40. -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight;
  41. -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight;
  42. position:absolute;
  43. padding: 2px 2px 2px 2px;
  44. overflow: visible;
  45. cursor: default;
  46. left: 0px;
  47. top:0px;
  48. margin:0px;
  49. }
  50. .menuTitle_normal
  51. {
  52. background-color: #000000;
  53. color:#ffffff;
  54. font-weight: bold;
  55. }
  56. .menuTitle_hover
  57. {
  58. background-color: #e8ecf4;
  59. color:#000066;
  60. font-weight: bold;
  61. }
  62. .menuTitle_pressed
  63. {
  64. background-color: #e8ecf4;
  65. color:#000066;
  66. font-weight: bold;
  67. }
  68. .menuItem_normal
  69. {
  70. font-size: 70%;
  71. border-right: #ffffff 1px solid;
  72. padding-right: 1px;
  73. border-top: #ffffff 1px solid;
  74. padding-left: 1px;
  75. padding-bottom: 1px;
  76. border-left: #ffffff 1px solid;
  77. color:blue;
  78. padding-top: 1px;
  79. border-bottom: #ffffff 1px solid;
  80. font-family: Tahoma;
  81. background-color: #ffffff;
  82. text-decoration: underline;
  83. cursor: pointer;
  84. cursor: hand;
  85. }
  86. .menuItem_hover
  87. {
  88. font-size: 70%;
  89. border-right: #99aacc 1px solid;
  90. padding-right: 1px;
  91. border-top: #99aacc 1px solid;
  92. padding-left: 1px;
  93. padding-bottom: 1px;
  94. border-left: #99aacc 1px solid;
  95. color: blue;
  96. padding-top: 1px;
  97. border-bottom: #99aacc 1px solid;
  98. font-family: Tahoma;
  99. background-color: #e3e9f3;
  100. text-decoration: underline;
  101. cursor: pointer;
  102. cursor: hand;
  103. }
  104. .menuItem_pressed
  105. {
  106. font-size: 70%;
  107. border-right: #ffffff 1px solid;
  108. padding-right: 1px;
  109. border-top: #ffffff 1px solid;
  110. padding-left: 1px;
  111. padding-bottom: 1px;
  112. border-left: #ffffff 1px solid;
  113. color: blue;
  114. padding-top: 1px;
  115. border-bottom: #ffffff 1px solid;
  116. font-family: Tahoma;
  117. background-color: #e3e9f3;
  118. text-decoration: underline;
  119. cursor: pointer;
  120. cursor: hand;
  121. }
  122. .menuItem_disabled
  123. {
  124. font-size: 70%;
  125. background-color: white;
  126. border: 1px solid white;
  127. color:lightgrey;
  128. text-decoration: underline;
  129. }
  130. .menuContainer
  131. {
  132. background-color: #ffffff;
  133. border: 1px solid #000000;
  134. }
  135. /*toolbar styles*/
  136. .toolbar
  137. {
  138. width: 25px;
  139. height: 25px;
  140. padding: 2px;
  141. background-color: #e0e0e0;
  142. border-bottom: 1px solid #cccccc;
  143. }
  144. /* Drop down arrow */
  145. .dropDownArrow
  146. {
  147. height: 22px;
  148. width: 13px;
  149. border: 1px solid #ffffff;
  150. background-color: #FFFFFF;
  151. }
  152. .dropDownArrowOver
  153. {
  154. height: 22px;
  155. width: 13px;
  156. border: 1px solid #666699;
  157. background-color: #D9E8DB;
  158. cursor: pointer;
  159. cursor: hand;
  160. }
  161. /* Seperators */
  162. .menuHorizontalSeperator
  163. {
  164. color:black;
  165. }
  166. .toolbarVerticalSeperator
  167. {
  168. color:black;
  169. }
  170. /* QS header */
  171. .headerButton
  172. {
  173. border: #b3e283 1px solid;
  174. background-color: #b3e283;
  175. cursor:pointer;
  176. width: 22px;
  177. }
  178. .headerButtonRollover
  179. {
  180. border: 1px solid #000000;
  181. background-color: #b3e283;
  182. cursor:pointer;
  183. width: 22px;
  184. }
  185. .headerButtonLogon
  186. {
  187. border: #b3e283 1px solid;
  188. background-color: #b3e283;
  189. cursor:pointer;
  190. color: #000000;
  191. font-size: 70%;
  192. padding-top: 1px;
  193. text-decoration: underline;
  194. }
  195. .headerButtonDropDown
  196. {
  197. border: #b3e283 1px solid;
  198. background-color: #b3e283;
  199. cursor: pointer;
  200. width: 3px;
  201. }
  202. .headerButtonDropDownRollover
  203. {
  204. border: #000000 1px solid;
  205. background-color: #b3e283;
  206. cursor: pointer;
  207. width: 3px;
  208. }
  209. .headerButtonOver
  210. {
  211. border: #000000 1px solid;
  212. background-color: #b3e283;
  213. cursor:pointer;
  214. }
  215. .headerLogoImageContainer
  216. {
  217. padding-left: 5px;
  218. padding-right: 5px;
  219. padding-top: 0px;
  220. padding-bottom: 0px;
  221. }
  222. .qsOptions
  223. {
  224. color: #b3e283;
  225. cursor: pointer;
  226. font-size: 70%;
  227. text-decoration: none;
  228. }
  229. .qsToolbarSeperator
  230. {
  231. background-image: url(../../../qs/images/tool_sep.gif);
  232. background-position: top left;
  233. background-repeat: no-repeat;
  234. font-size: 0px;
  235. width: 3px;
  236. height:20px;
  237. margin-right: 2px;
  238. }