default_layout.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. @charset "UTF-8";
  2. /*
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: rstyles
  5. (C) Copyright IBM Corp. 2003, 2014
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /*
  9. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  10. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  11. */
  12. /*
  13. Default font for the report
  14. */
  15. .page,
  16. .chart
  17. {
  18. font-family: 'Arial Unicode MS', 'Andale WT', Tahoma, Arial, 'MS UI Gothic', Gulim, SimSun, PMingLiU, Raghu8, sans-serif;
  19. }
  20. .chartTitle
  21. {
  22. font-size: 12pt;
  23. text-align: center;
  24. font-weight: bold;
  25. }
  26. .chartSubtitle,
  27. .chartNoteText,
  28. .chartFooter
  29. {
  30. font-size: 10pt;
  31. text-align: center;
  32. font-weight: normal;
  33. }
  34. .chartLegendTitle,
  35. {
  36. font-size: 10pt;
  37. font-weight: bold;
  38. text-align: left;
  39. }
  40. .chartAxisTitle
  41. {
  42. font-size: 10pt;
  43. text-align: center;
  44. font-weight: bold;
  45. }
  46. .chartLegend,
  47. .chartAxisLabels,
  48. .chartBody
  49. {
  50. font-size: 10pt;
  51. font-weight: normal;
  52. }
  53. /*
  54. A bug in IE prevents TABLE elements from properly inheriting text properties.
  55. These properties include color, font-size, font-weight, font-style,
  56. font-variant, text-decoration, text-transform, letter-spacing, and line-height.
  57. All of the text properties of TABLE elements, except font-family, are inherited
  58. from the BODY element otherwise setting these on the page would be enough.
  59. */
  60. .page,
  61. .table,
  62. .list,
  63. .crosstab,
  64. .repeater,
  65. .section
  66. {
  67. font-size: 10pt;
  68. color: #000000;
  69. }
  70. /*
  71. These values should be consistent with the design mode attributes to
  72. ensure that drag and drop is consistent by default
  73. */
  74. .pageBody,
  75. .pageHeader,
  76. .pageFooter,
  77. .listColumn,
  78. .listColumnTitle,
  79. .rowCell,
  80. .crosstabLevel,
  81. .crosstabMember,
  82. .levelHeader,
  83. .levelFooter,
  84. .crosstabCell,
  85. .crosstabCorner,
  86. .fieldSet,
  87. .inlineHeader,
  88. .inlineFooter,
  89. .inlineSummary,
  90. .innerHeader,
  91. .innerFooter,
  92. .innerSummary,
  93. .outerHeader,
  94. .outerFooter,
  95. .outerSummary,
  96. .crosstabInnerHeaderCell,
  97. .crosstabInnerFooterCell,
  98. .crosstabOuterHeaderCell,
  99. .crosstabOuterFooterCell
  100. {
  101. padding-left: 5px;
  102. padding-right: 5px;
  103. }
  104. .page
  105. {
  106. width: 100%;
  107. height: 100%;
  108. }
  109. .pageBody
  110. {
  111. height: 100%;
  112. }
  113. .listColumn,
  114. .listColumnTitle,
  115. .rowCell,
  116. .levelHeader,
  117. .levelFooter,
  118. .crosstabCell,
  119. .crosstabLevel,
  120. .crosstabMember,
  121. .crosstabCorner,
  122. .inlineHeader,
  123. .inlineFooter,
  124. .inlineSummary,
  125. .innerHeader,
  126. .innerFooter,
  127. .innerSummary,
  128. .outerHeader,
  129. .outerFooter,
  130. .outerSummary,
  131. .crosstabInnerHeaderCell,
  132. .crosstabInnerFooterCell,
  133. .crosstabOuterHeaderCell,
  134. .crosstabOuterFooterCell,
  135. .reportTitle,
  136. .filterSubtitle,
  137. .reportSubtitle
  138. {
  139. padding-top: 3px;
  140. padding-bottom: 3px;
  141. }
  142. .listColumn,
  143. .listColumnTitle,
  144. .crosstabLevel,
  145. .crosstabMember,
  146. .crosstabCell,
  147. .levelHeader,
  148. .levelFooter,
  149. .rowCell,
  150. .inlineHeader,
  151. .inlineFooter,
  152. .inlineSummary,
  153. .crosstabInnerHeaderCell,
  154. .crosstabInnerFooterCell,
  155. .crosstabOuterHeaderCell,
  156. .crosstabOuterFooterCell
  157. {
  158. border: 1px solid #CCCCCC;
  159. }
  160. .listColumn,
  161. .listColumnTitle,
  162. .rowCell,
  163. .levelHeader,
  164. .levelFooter,
  165. .crosstabLevel,
  166. .crosstabMember,
  167. .crosstabCorner
  168. {
  169. vertical-align: top;
  170. line-break: strict;
  171. }
  172. .listColumnTitle
  173. {
  174. text-align: center;
  175. }
  176. .listColumnTitle,
  177. .crosstabLevel,
  178. .crosstabMember
  179. {
  180. background-color: #E3E3FC;
  181. font-weight: bold;
  182. }
  183. .levelHeader,
  184. .levelFooter
  185. {
  186. background-color: #E3E3FC;
  187. font-weight: bold;
  188. font-style: italic;
  189. }
  190. .crosstabCell,
  191. .crosstabInnerHeaderCell,
  192. .crosstabInnerFooterCell,
  193. .crosstabOuterHeaderCell,
  194. .crosstabOuterFooterCell
  195. {
  196. text-align: right;
  197. }
  198. .crosstabCorner
  199. {
  200. font-weight: bold;
  201. color: #CCCCCC;
  202. }
  203. .crosstabCell
  204. {
  205. white-space: nowrap;
  206. }
  207. .pageHeader,
  208. .pageBody,
  209. .pageFooter
  210. {
  211. vertical-align: top;
  212. }
  213. .fieldSet
  214. {
  215. display: inline;
  216. text-align: left;
  217. }
  218. .hyperlink
  219. {
  220. color: blue;
  221. text-decoration: underline;
  222. cursor: pointer; /* needed for ReportViewer NS7 */
  223. cursor: hand;
  224. }
  225. .button
  226. {
  227. border: 2px outset threedhighlight;
  228. background-color: buttonface;
  229. color: buttontext;
  230. padding: 2px;
  231. text-align: center;
  232. font-size: 10pt;
  233. }
  234. .promptButton
  235. {
  236. font-size: 90%;
  237. color: #000000;
  238. text-align: center;
  239. padding-left: 10px;
  240. padding-right: 10px;
  241. padding-bottom: 3px;
  242. padding-top: 2px;
  243. margin-right: 7px;
  244. background-color: #FFFFFF;
  245. border: 1px solid #999999;
  246. }
  247. .outerHeader
  248. {
  249. font-size: 10pt;
  250. font-weight: bold;
  251. border-bottom: 2px solid black;
  252. padding-top: 8px;
  253. }
  254. .innerHeader
  255. {
  256. font-weight: bold;
  257. padding-top: 8px;
  258. }
  259. .outerFooter,
  260. .outerSummary
  261. {
  262. border-top: 2px solid #999999;
  263. }
  264. .inlineHeader,
  265. .inlineFooter,
  266. .innerFooter,
  267. .outerFooter
  268. {
  269. color: #999999;
  270. }
  271. .inlineSummary,
  272. .innerSummary,
  273. .outerSummary,
  274. .crosstabInnerHeaderCell,
  275. .crosstabInnerFooterCell,
  276. .crosstabOuterHeaderCell,
  277. .crosstabOuterFooterCell
  278. {
  279. font-weight: bold;
  280. padding-left: 3px;
  281. padding-right: 3px;
  282. }
  283. .reportTitle
  284. {
  285. font-size: 14pt;
  286. font-weight: bold;
  287. text-align: center;
  288. color: #000000;
  289. }
  290. .reportTitleText
  291. {
  292. text-decoration: underline;
  293. }
  294. .filterSubtitle
  295. {
  296. font-size: 10pt;
  297. color: #9999CC;
  298. }
  299. .reportSubtitle
  300. {
  301. font-size: 10pt;
  302. text-align: center;
  303. color: #9999CC;
  304. }
  305. .filterSubtitleIcon
  306. {
  307. vertical-align: middle;
  308. margin-right: 4px;
  309. border: 0px;
  310. }
  311. @media print
  312. {
  313. .dontPrint
  314. {
  315. display: none;
  316. }
  317. }