promptCommon.css 21 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396
  1. @charset "UTF-8";
  2. /*
  3. *+-----------------------------------------------------------------------------------+
  4. *| Licensed Materials - Property of IBM
  5. *| BI and PM: prmt
  6. *| (C) Copyright IBM Corp. 2002, 2015
  7. *|
  8. *| US Government Users Restricted Rights - Use, duplication or
  9. *| disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  10. *|
  11. *+------------------------------------------------------------------------------------+
  12. */
  13. /*
  14. Prompt Control Styles
  15. This cascading stylesheet provides visual styles for the prompt user interface
  16. controls in IBM Cognos.
  17. */
  18. /* Common Prompt Styles */
  19. .clsPromptComponent
  20. {
  21. /* box type */
  22. display: inline;
  23. vertical-align: top;
  24. /* floating */
  25. clear: none;
  26. }
  27. /* used on block type containers
  28. to allow prompt controls to flow */
  29. .clsDisplayInline
  30. {
  31. display: inline;
  32. }
  33. .clsApplicationTitle
  34. {
  35. font-size: 80%;
  36. color: #000000;
  37. font-weight: bold;
  38. }
  39. .clsDocumentTitle
  40. {
  41. font-size: 80%;
  42. color: #000000;
  43. font-weight: normal;
  44. }
  45. .clsSecondaryTitle
  46. {
  47. font-size: 80%;
  48. color: #2c4f55;
  49. font-weight: bold;
  50. }
  51. .clsMenuTitle
  52. {
  53. font-size: 8pt;
  54. color: #2c4f55;
  55. font-weight: bold;
  56. }
  57. .clsLink
  58. {
  59. font-size: 8pt;
  60. color: #000000;
  61. font-weight: normal;
  62. }
  63. span.clsLink
  64. {
  65. cursor: default;
  66. }
  67. .clsHighLevelLink
  68. {
  69. font-size: 10.5pt;
  70. color: #000000;
  71. font-weight: normal;
  72. }
  73. .clsReadOnlyText
  74. {
  75. font-size: 8pt;
  76. color: #000000;
  77. font-weight: normal;
  78. }
  79. .clsControlLabel
  80. {
  81. font-size: 8pt;
  82. color: #6f8f7a;
  83. font-weight: bold;
  84. }
  85. .clsButtonText
  86. {
  87. font-size: 10.5pt;
  88. color: #000000;
  89. font-weight: normal;
  90. text-decoration: none;
  91. }
  92. .clsFieldSet
  93. {
  94. border:none;
  95. text-align:left;
  96. display:inline;
  97. vertical-align: top;
  98. padding-top:0px;
  99. }
  100. /*
  101. Do not merge the following class with a previous .clsFieldSet definition.
  102. ( IE will ignore the previous value for display, which we want to use as default. )
  103. */
  104. .clsFieldSet
  105. {
  106. display: -moz-inline-grid;
  107. }
  108. .clsDialogButton
  109. {
  110. height: 22px;
  111. border: 1px solid #999999;
  112. cursor: pointer;
  113. cursor: hand;
  114. }
  115. .clsDialogButton:hover
  116. {
  117. border: 1px solid #d9e8db;
  118. background-color: #cccce3;
  119. }
  120. .clsToolbarButton,.clsToolbarButton_hover,.clsToolbarButton_active
  121. {
  122. margin: 3px 0;
  123. padding: 2px;
  124. }
  125. .clsToolbarButton
  126. {
  127. border: 1px solid #cccccc;
  128. background-color: #ffffff;
  129. }
  130. .clsToolbarButton_hover
  131. {
  132. border: 1px solid #2c4f55;
  133. background-color: #d9e8db;
  134. }
  135. .clsToolbarButton_active
  136. {
  137. border: 1px solid #cccccc;
  138. background-color: #d9e8db;
  139. }
  140. .clsBottomBar
  141. {
  142. border-top: 1px solid #999999;
  143. margin: 0px;
  144. padding: 0px;
  145. padding-top: 5px;
  146. padding-bottom: 5px;
  147. text-align: right;
  148. }
  149. .clsBtnYearUp, .clsBtnYearDown {
  150. height: 15px;
  151. width: 15px;
  152. }
  153. .clsBtnYearUp {
  154. background-image : url(images/icon_year_up.gif);
  155. }
  156. .clsBtnYearDown {
  157. background-image : url(images/icon_year_down.gif);
  158. }
  159. .clsBtnTimeDown,.clsBtnTimeUp {
  160. width: 15px;
  161. height: 7px;
  162. }
  163. .clsBtnTimeDown {
  164. background-image : url(images/icon_time_down.gif);
  165. }
  166. .clsBtnTimeUp {
  167. background-image : url(images/icon_time_up.gif);
  168. }
  169. .clsInsertRemoveButton
  170. {
  171. color: #000000;
  172. text-decoration : none;
  173. text-align: center;
  174. padding:2px;
  175. width: 100%;
  176. overflow: visible;
  177. background-color: #FFFFFF;
  178. border: solid 1px #989898;
  179. white-space: nowrap;
  180. }
  181. .clsInsertRemoveButton[disabled]
  182. {
  183. color: #777777;
  184. text-decoration : none;
  185. text-align: center;
  186. padding:2px;
  187. width: 100%;
  188. overflow: visible;
  189. background-color: #FFFFFF;
  190. border: solid 1px #CCCCCC;
  191. white-space: nowrap;
  192. }
  193. .clsInsertRemoveButtonOver
  194. {
  195. color: #000000;
  196. background-color: #d9e8db;
  197. text-decoration : none;
  198. text-align: center;
  199. padding:2px;
  200. width: 100%;
  201. overflow: visible;
  202. border: solid 1px #999999;
  203. white-space: nowrap;
  204. }
  205. .clsInsertRemoveTable {
  206. width: 90px;
  207. min-width: 90px;
  208. }
  209. /* fix width for standard browsers, allow to stretch, so long custom labels are not truncated */
  210. html>body .clsInsertRemoveButton, html>body .clsInsertRemoveButton[disabled], html>body .clsInsertRemoveButtonOver
  211. {
  212. width: auto;
  213. min-width: 90px;
  214. }
  215. .clsChoicesHeader
  216. {
  217. color: #2c4f55;
  218. font-size: 10pt;
  219. }
  220. .clsChoicesListbox
  221. {
  222. margin-top:0px;
  223. }
  224. .clsFeedbackWidget
  225. {
  226. margin-top:0px;
  227. margin-bottom:0px;
  228. border-width: 0px;
  229. border-top-style: solid;
  230. border-color: #FFFFFF;
  231. border-top-color: none;
  232. padding-top:2px;
  233. }
  234. .clsFeedbackWidgetParseError
  235. {
  236. margin-top:0px;
  237. margin-bottom:0px;
  238. border-width: 2px;
  239. border-top-color: #FF6600;
  240. border-top-style: dashed;
  241. padding-top:0px;
  242. }
  243. .clsFeedbackWidgetParseErrorArrowLeft
  244. {
  245. margin: 0px;
  246. border-width: 2px;
  247. border-top-color: #FF6600;
  248. border-top-style: dashed;
  249. padding-top: 0px;
  250. }
  251. .clsFeedbackSpacer
  252. {
  253. width: 100%;
  254. min-width: 200px;
  255. }
  256. /* textBox Control */
  257. .clsTextWidget
  258. {
  259. }
  260. .clsTextWidgetParseError
  261. {
  262. border-bottom-width: 2px;
  263. border-bottom-color: #FF6600;
  264. border-bottom-style: dashed;
  265. }
  266. /* selectValue control: Radio Button, Check Box Styles */
  267. .clsCheckBoxList, .clsRadioGroupList
  268. {
  269. overflow: auto;
  270. border: 2px inset ThreeDHighlight;
  271. -moz-border-right-colors: ThreeDLightShadow ThreeDHighlight;
  272. -moz-border-bottom-colors: ThreeDLightShadow ThreeDHighlight;
  273. border-right-color: ThreeDLightShadow;
  274. border-bottom-color: ThreeDLightShadow;
  275. padding-left:5px;
  276. padding-right:10px;
  277. padding-bottom:2px;
  278. margin: 0px;
  279. width: 200px;
  280. cursor: default;
  281. max-height: 165px;
  282. /* the following is done for IE which does not support max-height */
  283. height: expression(offsetHeight > 165 ? "165px" : offsetHeight + "px");
  284. }
  285. .clsAlignRight
  286. {
  287. text-align:right;
  288. }
  289. /* selectValue control: Drop Down, List Styles */
  290. .clsListControl, .clsSelectControl
  291. {
  292. width: 200px;
  293. }
  294. .clsSelectControl option
  295. {
  296. white-space: pre;
  297. }
  298. .clsCheckBoxRow, .clsCheckBox
  299. {
  300. font-size: 8pt;
  301. color: #000000;
  302. white-space: nowrap;
  303. }
  304. /* checkbox 3-state, using classnames that match dojo */
  305. .clsPromptComponent .dijitCheckBox, .clsPromptComponent .dijitRadio, .clsPromptComponent .dijitCheckBoxInput {
  306. margin: 0 2px 0 0;
  307. padding: 0;
  308. border: 0;
  309. width: 16px;
  310. height: 16px;
  311. background-position:center center;
  312. background-repeat:no-repeat;
  313. overflow: hidden;
  314. vertical-align: middle;
  315. }
  316. .clsPromptComponent .dijitCheckBox INPUT, .clsPromptComponent .dijitRadio INPUT {
  317. margin: 0;
  318. padding: 0;
  319. }
  320. /* checkboxes CC & BUX, radio BUX */
  321. .clsPromptComponent .dijitCheckBoxInput {
  322. opacity : 0.01;
  323. filter: alpha(opacity=0);
  324. }
  325. /* just for radio button in CC */
  326. .clsPromptComponent .dijitRadio .dijitCheckBoxInput {
  327. opacity : 1;
  328. filter: none;
  329. }
  330. /* prompt high contrast */
  331. .clsPrompt_a11y .dijitCheckBox,.clsPrompt_a11y .dijitRadio {
  332. width: auto !important;
  333. height: auto !important;
  334. margin-left:2px;
  335. }
  336. .clsPrompt_a11y .dijitCheckBoxInput
  337. {
  338. margin: 0;
  339. opacity : 1;
  340. filter: none;
  341. width: auto;
  342. height: auto;
  343. }
  344. .clsPromptComponent .dijitCheckBox {
  345. background-image : url(images/checkbox_unchecked.gif);
  346. }
  347. .clsPromptComponent .dijitCheckBoxChecked {
  348. background-image : url(images/checkbox_checked.gif);
  349. }
  350. .clsPromptComponent .dijitCheckBoxMixed {
  351. background-image : url(images/checkbox_mixed.gif);
  352. }
  353. .clsCheckBoxRow input
  354. {
  355. vertical-align: middle;
  356. }
  357. /*
  358. In Firefox, it looks better with 'bottom'.
  359. We are using a selector that IE do not understand to make it specific to Firefox.
  360. */
  361. .clsCheckBoxRow> input
  362. {
  363. vertical-align: bottom;
  364. }
  365. .clsPromptComponent .dijitInline {
  366. display: inline;
  367. }
  368. .icdUI .clsPromptComponent .dijitInline {
  369. display: inline-block;
  370. }
  371. /* select date styles */
  372. .clsSelectDateCalendar
  373. {
  374. border: 1px solid #999999;
  375. color: #000000;
  376. padding: 3px;
  377. margin-right: 5px;
  378. text-align: center;
  379. vertical-align:top;
  380. background-color: #FFFFFF;
  381. height: 240px;
  382. overflow: visible;
  383. width: 200px;
  384. }
  385. .clsSelectDateCalendarDialog
  386. {
  387. border: 1px solid #999999;
  388. background-color: #FFFFFF;
  389. color: #000000;
  390. padding: 3px;
  391. text-align: center;
  392. vertical-align:top;
  393. overflow: visible;
  394. width:200px;
  395. }
  396. .clsSelectDateDialogTopTable
  397. {
  398. border-collapse: separate;
  399. }
  400. .clsSelectDateYears
  401. {
  402. text-align: center;
  403. background-color: #6f8f7a;
  404. color: #FFFFFF;
  405. font-weight: bold;
  406. }
  407. .clsSelectDateMonths
  408. {
  409. color: #2c4f55;
  410. font-size: 8pt;
  411. text-decoration: underline;
  412. margin-top: 3px;
  413. text-align: center;
  414. vertical-align: bottom;
  415. cursor: pointer;
  416. font-weight: normal;
  417. }
  418. .clsSelectDateMonthsSelected
  419. {
  420. background-color: #E3E9F3;
  421. color: #2c4f55;
  422. font-size: 8pt;
  423. text-decoration: underline;
  424. margin-top: 3px;
  425. text-align: center;
  426. vertical-align: bottom;
  427. cursor: pointer;
  428. font-weight: bold;
  429. }
  430. .clsSelectDateMonthsDisabled
  431. {
  432. color: #000000;
  433. font-size: 8pt;
  434. text-decoration: none;
  435. margin-top: 3px;
  436. text-align: center;
  437. vertical-align: bottom;
  438. cursor: default;
  439. font-weight: normal;
  440. }
  441. .clsSelectDateDaysOfWeek
  442. {
  443. background-color: #E3E3E3;
  444. font-size: 9pt;
  445. padding: 3px;
  446. color: #000000;
  447. text-decoration: none;
  448. text-align: center;
  449. white-space:nowrap;
  450. }
  451. .clsSelectDateDays
  452. {
  453. color: #2c4f55;
  454. text-decoration: underline;
  455. text-align: center;
  456. font-size: 10pt;
  457. padding: 3px;
  458. cursor: pointer;
  459. cursor: hand;
  460. font-weight: normal;
  461. background-color: #FFFFFF;
  462. }
  463. .clsSelectDateDaysSelected
  464. {
  465. color: #2c4f55;
  466. text-decoration: none;
  467. text-align: center;
  468. font-size: 10pt;
  469. padding: 3px;
  470. cursor: pointer;
  471. cursor: hand;
  472. font-weight: bold;
  473. background-color: #d9e8db;
  474. }
  475. .clsSelectDateDaysDisabled
  476. {
  477. color: #000000;
  478. text-decoration: none;
  479. text-align: center;
  480. font-size: 10pt;
  481. padding: 3px;
  482. cursor: default;
  483. font-weight: normal;
  484. background-color: #FFFFFF;
  485. }
  486. .clsSelectDateEditBox
  487. {
  488. padding:0px;
  489. padding-left: 5px;
  490. margin-top: 0px;
  491. margin-left: 2px;
  492. margin-right: 5px;
  493. width: auto;
  494. min-width: 140px;
  495. }
  496. .clsSelectDateEditBoxParseError
  497. {
  498. padding:0px;
  499. padding-left: 5px;
  500. margin-top: 0px;
  501. margin-left: 2px;
  502. margin-right: 5px;
  503. border-bottom-color: #FF6600;
  504. border-bottom-style: dashed;
  505. width: auto;
  506. min-width: 140px;
  507. }
  508. .clsSelectDateYearEditBox
  509. {
  510. text-align: center;
  511. font-weight: bold;
  512. }
  513. .clsSelectDateYearEditBoxParseError
  514. {
  515. text-align: center;
  516. border-bottom-color: #FF6600;
  517. border-bottom-style: dashed;
  518. font-weight: bold;
  519. }
  520. /* selectTime control */
  521. .clsSelectTimeEditBox, .clsSelectTimeEditBoxRTL
  522. {
  523. border: 2px inset threedhighlight;
  524. margin:0px;
  525. padding:0px;
  526. overflow: visible;
  527. overflow-x:visible;
  528. background-color:#FFFFFF;
  529. width: auto;
  530. min-width: 150px;
  531. }
  532. .clsSelectTimeEditBox
  533. {
  534. margin-right: 5px;
  535. }
  536. /* selectTime control RTL */
  537. .clsSelectTimeEditBoxRTL
  538. {
  539. margin-left: 5px;
  540. }
  541. .clsSelectTime
  542. {
  543. margin-left: 2px;
  544. top:0px;
  545. left:0px;
  546. }
  547. .clsClockPosition
  548. {
  549. }
  550. .clsSelectTimeControl, .clsSelectTimeControlParseError
  551. {
  552. text-align:center;
  553. padding:0px;
  554. margin:0px;
  555. border:none;
  556. border-bottom-width: 2px;
  557. width:2em;
  558. }
  559. .clsSelectTimeControl
  560. {
  561. border-bottom-color: #FFFFFF;
  562. border-bottom-style: solid;
  563. }
  564. .clsSelectTimeControlParseError
  565. {
  566. border-bottom-color: #FF6600;
  567. border-bottom-style: dashed;
  568. }
  569. .clsColon
  570. {
  571. vertical-align:absmiddle;
  572. background-color: #ffffff;
  573. margin:0px;
  574. border:0px;
  575. padding:0px;
  576. }
  577. .clsClock
  578. {
  579. margin:0px;
  580. height: 200px;
  581. width: 140px;
  582. background-color: #ffffff;
  583. position:relative;
  584. }
  585. .clsClockBlock
  586. {
  587. border: solid 1px #999999;
  588. background-color: #ffffff;
  589. margin-bottom:10px;
  590. width: 100%;
  591. text-align: center;
  592. position:relative;
  593. }
  594. .clsClockDigits
  595. {
  596. position:absolute;
  597. top:0px;
  598. left:0px;
  599. font-size:10px;
  600. color:#333333;
  601. text-align:center;
  602. }
  603. .clsClockDisabled, .clsDisabled
  604. {
  605. filter: alpha(opacity=75);
  606. -moz-opacity: 0.70;
  607. }
  608. *>.clsDisabled
  609. {
  610. height: auto;
  611. }
  612. .clsDisabled
  613. {
  614. cursor: default;
  615. }
  616. /* minutes */
  617. .clsMinuteHand
  618. {
  619. position:absolute;
  620. width:2px;
  621. height:2px;
  622. font-size:2px;
  623. background: #000000;
  624. }
  625. /* hours */
  626. .clsHourHand
  627. {
  628. position:absolute;
  629. width:2px;
  630. height:2px;
  631. font-size:2px;
  632. background: #000000;
  633. }
  634. /* seconds */
  635. .clsSecondHand
  636. {
  637. position:absolute;
  638. width:2px;
  639. height:2px;
  640. font-size:2px;
  641. background: #2c4f55;
  642. }
  643. .clsDivClock
  644. {
  645. position:absolute;
  646. top:0px;
  647. left:0px
  648. }
  649. .clsDivRelative
  650. {
  651. position:relative;
  652. }
  653. /* selectDateTime control */
  654. .clsBoundingBox
  655. {
  656. background-color:#E3E3E3;
  657. margin:5px;
  658. }
  659. /* interval control styles */
  660. .clsIntervalWidget
  661. {
  662. margin-top: 5px;
  663. margin-left: 0px;
  664. margin-right: 3px;
  665. }
  666. .clsIntervalWidgetParseError
  667. {
  668. margin-top: 5px;
  669. margin-left: 0px;
  670. margin-right: 3px;
  671. border-bottom-color: #FF6600;
  672. border-bottom-style: dashed;
  673. }
  674. /* selectWithSearch Prompt control styles */
  675. .clsSwsEditBox
  676. {
  677. margin-right: 5px;
  678. }
  679. .clsSwsSearchButton
  680. {
  681. padding:2px;
  682. margin-left: 5px;
  683. margin-right: 5px;
  684. color: #000000;
  685. }
  686. .clsSwsOptions
  687. {
  688. margin-top: 5px;
  689. color: #000000;
  690. font-size: 10pt;
  691. }
  692. .clsSwsResultsHeader, .clsSwsChoicesHeader
  693. {
  694. color: #2c4f55;
  695. font-size: 10pt;
  696. }
  697. .clsSwsResultsListbox
  698. {
  699. margin-top:0px;
  700. margin-left:5px;
  701. margin-right:5px;
  702. margin-bottom:5px;
  703. }
  704. .clsSwsChoicesListbox
  705. {
  706. margin-top:0px;
  707. margin-left:5px;
  708. margin-right:5px;
  709. margin-bottom:5px;
  710. }
  711. .clsOptions
  712. {
  713. cursor: pointer;
  714. cursor: hand;
  715. vertical-align:bottom;
  716. width:240px;
  717. padding: 0px;
  718. }
  719. .clsSearchOptionsExpand, .clsSearchOptionsCollapse {
  720. height:10px;
  721. width:10px;
  722. }
  723. .clsSearchOptionsExpand {
  724. background-image : url(images/prompt_option_expand.gif);
  725. }
  726. .clsSearchOptionsCollapse {
  727. background-image : url(images/prompt_option_collapse.gif);
  728. }
  729. /* Default Prompt Page Dialog Styles */
  730. .clsDialogTitle
  731. {
  732. font-size: 10.5pt;
  733. font-weight: bold;
  734. color: #003399;
  735. }
  736. .clsDialogHeaderBorder
  737. {
  738. background-color: #2c4f55;
  739. }
  740. .clsDialogIntroduction
  741. {
  742. font-size: 8pt;
  743. color: #003399;
  744. }
  745. .clsDialogSeperator
  746. {
  747. background-color: #999999;
  748. }
  749. .clsDialogFooterButtons
  750. {
  751. background-color: #999999;
  752. }
  753. .clsFormLabel
  754. {
  755. font-size: 8pt;
  756. font-weight: bold;
  757. color: #2c4f55;
  758. }
  759. .clsButton
  760. {
  761. font-size: 8pt;
  762. color: #000000;
  763. text-decoration : none;
  764. cursor: pointer;
  765. cursor:hand;
  766. width: 100%;
  767. height: 18px;
  768. padding-top : 2px;
  769. }
  770. .clsButton:hover
  771. {
  772. background-color: #CCCCE3;
  773. }
  774. /* prompt button styles */
  775. .clsPromptButton, .clsPromptButtonOver, .clsPromptButton[disabled]
  776. {
  777. font-size: 10.5pt;
  778. text-decoration : none;
  779. text-align: center;
  780. width: auto;
  781. height:26px;
  782. padding-top: 2px;
  783. padding-bottom: 2px;
  784. margin-right: 7px;
  785. white-space:nowrap;
  786. }
  787. .clsPromptButton
  788. {
  789. color: #000000;
  790. background-color: #FFFFFF;
  791. border: solid 1px #989898;
  792. cursor: pointer;
  793. }
  794. .clsPromptButtonOver
  795. {
  796. color: #000000;
  797. background-color: #E3E9F3;
  798. border: solid 1px #999999;
  799. cursor: pointer;
  800. }
  801. .clsPromptButton[disabled]
  802. {
  803. color: #777777;
  804. background-color: #FFFFFF;
  805. border: solid 1px #CCCCCC;
  806. cursor: not-allowed;
  807. }
  808. /* styles for the table look, used with pager controls */
  809. .clsTableHeader
  810. {
  811. background-color: #E7E7E7;
  812. }
  813. .clsTableLink
  814. {
  815. font-size: 8pt;
  816. color: #2c4f55;
  817. text-decoration : underline;
  818. }
  819. .clsTableText
  820. {
  821. font-size: 8pt;
  822. color: #2c4f55;
  823. }
  824. .clsTableItemCount
  825. {
  826. font-size: 8pt;
  827. font-weight: normal;
  828. color: #000000;
  829. }
  830. .clsTableSortTitle
  831. {
  832. text-decoration : none;
  833. font-weight: bold;
  834. color: #2c4f55;
  835. }
  836. .clsTableTitle
  837. {
  838. font-size: 8pt;
  839. font-weight: bold;
  840. color: #2c4f55;
  841. }
  842. .clsTableOutline
  843. {
  844. background-color: #000000;
  845. }
  846. .clsTableBody
  847. {
  848. background-color: #ffffff;
  849. }
  850. .clsTableOutlineIE
  851. {
  852. border : 1px solid;
  853. border-color : #000000 #9C9C9C #9C9C9C #000000;
  854. }
  855. .clsTableOutline1
  856. {
  857. background-color: #000000;
  858. }
  859. .clsTableOutline2
  860. {
  861. background-color: #9C9C9C;
  862. }
  863. .clsTableOutline3
  864. {
  865. background-color: #9C9C9C;
  866. }
  867. /* Tree Prompt Styles*/
  868. .clsTreePane
  869. {
  870. height: 400px;
  871. width: 300px;
  872. overflow: auto;
  873. border:solid #330000 1px;
  874. padding:5px;
  875. }
  876. .clsTreeNode_unselected
  877. {
  878. cursor: pointer;
  879. cursor: hand;
  880. margin: 0px;
  881. padding: 0px;
  882. background-color: #FFFFFF;
  883. color: #000000;
  884. vertical-align: middle;
  885. border: 0 none;
  886. }
  887. .clsTreeNode_partial
  888. {
  889. cursor: pointer;
  890. cursor: hand;
  891. /* background-color: #e8ecf4; New Bering Color */
  892. background-color: #E7E7E7;
  893. margin: 0px;
  894. padding: 0px;
  895. color: #000000;
  896. vertical-align: middle;
  897. }
  898. .clsTreeNode_selected
  899. {
  900. cursor: pointer;
  901. cursor: hand;
  902. margin: 0px;
  903. padding: 0px;
  904. /* background-color: #000000; New Bering Color */
  905. background-color: #d9e8db;
  906. /* color: #ffffff; New Bering Color */
  907. color: #000000;
  908. vertical-align: middle;
  909. }
  910. .clsTreeNode_hover
  911. {
  912. cursor: pointer;
  913. cursor: hand;
  914. margin: 0px;
  915. padding: 0px;
  916. color: #000000;
  917. background-color: #bec8dc;
  918. vertical-align: middle;
  919. }
  920. .clsPrompt_a11y .clsTreeNode_hover {
  921. border-style: dotted;
  922. border-width: thin;
  923. }
  924. .clsTreeLevel
  925. {
  926. margin:0px;
  927. padding:0px;
  928. vertical-align: middle;
  929. }
  930. .clsPrompt_a11y .clsTreeLevel {
  931. margin:2px;
  932. }
  933. .clsTreeLabel
  934. {
  935. cursor: pointer;
  936. cursor: hand;
  937. }
  938. .clsTreeLineIcon
  939. {
  940. width:19px;
  941. height:20px;
  942. vertical-align: middle;
  943. background-position: center;
  944. background-repeat: no-repeat;
  945. background-image : url(images/icon_tree_I.gif);
  946. }
  947. .clsTreeLineIconSpace
  948. {
  949. background-image : none;
  950. }
  951. img, span
  952. {
  953. margin:0px;
  954. padding:0px;
  955. }
  956. .clsTreeText
  957. {
  958. padding: 0px 1px 0px 3px;
  959. font-size: 8pt;
  960. vertical-align: middle;
  961. }
  962. .noLink
  963. {
  964. text-decoration: none;
  965. color: #000000;
  966. font-weight: normal;
  967. }
  968. .clsErrorRequired
  969. {
  970. margin-right: 2px;
  971. }
  972. /* tree toggle */
  973. .clsPromptComponent .dijitTreeExpando {
  974. width:19px;
  975. height:20px;
  976. cursor: pointer;
  977. vertical-align: middle;
  978. }
  979. .clsPrompt_a11y .dijitTreeExpando {
  980. display: none !important;
  981. }
  982. .clsPromptComponent .dijitTreeExpandoClosed {
  983. background-image:url(images/icon_tree_Lplus.gif);
  984. }
  985. .clsPromptComponent .dijitTreeExpandoOpened {
  986. background-image:url(images/icon_tree_Lminus.gif);
  987. }
  988. .clsPromptComponent .dijitTreeExpandoClosedRTL {
  989. background-image:url(images/icon_tree_Lplus_rtl.gif);
  990. }
  991. .clsPromptComponent .dijitTreeExpandoOpenedRTL {
  992. background-image:url(images/icon_tree_Lminus_rtl.gif);
  993. }
  994. .clsPromptComponent .dijitTreeExpandoNone {
  995. width:16px;
  996. height:16px;
  997. background-image:url(images/spacer.png);
  998. }
  999. .clsPromptComponent .dijitExpandoText {
  1000. display: none;
  1001. }
  1002. .clsPrompt_a11y .dijitExpandoText {
  1003. border-style: solid;
  1004. border-width: thin;
  1005. cursor: pointer;
  1006. display: inline;
  1007. font-family: monospace;
  1008. padding-left: 5px;
  1009. padding-right: 5px;
  1010. }
  1011. /* Color Picker Styles */
  1012. .clsCPCell
  1013. {
  1014. border:1px solid #cccccc;
  1015. width:15px;
  1016. height:15px;
  1017. text-align: center;
  1018. cursor: pointer;
  1019. cursor: hand;
  1020. }
  1021. .clsCPCell_hover
  1022. {
  1023. border:1px solid #336699;
  1024. width:15px;
  1025. height:15px;
  1026. text-align: center;
  1027. cursor: pointer;
  1028. cursor: hand;
  1029. }
  1030. .clsCPCell_active
  1031. {
  1032. border:1px solid #336699;
  1033. width:15px;
  1034. height:15px;
  1035. text-align: center;
  1036. }
  1037. .clsCPCellLabel
  1038. {
  1039. padding-left: 10px;
  1040. padding-right:40px;
  1041. padding-top: 5px;
  1042. padding-bottom: 5px;
  1043. }
  1044. .clsCPCustomTB
  1045. {
  1046. padding-left: 5px;
  1047. padding-right:5px;
  1048. }
  1049. .clsCPPreview
  1050. {
  1051. height:177px;
  1052. width:240px;
  1053. background-color : #e3e3e3;
  1054. border : 1px solid;
  1055. border-color : #cccccc;
  1056. }
  1057. .clsCPPreviewSwatch
  1058. {
  1059. height:110px;
  1060. width:145px;
  1061. cursor: pointer;
  1062. cursor: hand;
  1063. }
  1064. .clsCPButton
  1065. {
  1066. height:22px;
  1067. width:29px;
  1068. background-color: #ffffff;
  1069. border : 1px solid #ffffff;
  1070. margin-right:3px;
  1071. cursor: pointer;
  1072. cursor: hand;
  1073. }
  1074. .clsCPButtonOver
  1075. {
  1076. height:22px;
  1077. width:29px;
  1078. background-color: #d9e8db;
  1079. border: 1px solid #666699;
  1080. margin-right:3px;
  1081. cursor: pointer;
  1082. cursor: hand;
  1083. }
  1084. .clsCPLink
  1085. {
  1086. text-decoration:underline;
  1087. font-size: 8pt;
  1088. color: #336699;
  1089. cursor: pointer;
  1090. cursor: hand;
  1091. }
  1092. .clsCPMenuContainer
  1093. {
  1094. background-color: #ffffff;
  1095. border: 1px solid #336699;
  1096. }
  1097. .clsCPCaptionBar
  1098. {
  1099. padding: 3px;
  1100. background-color:#E8ECF4;
  1101. }
  1102. .clsCPPalette
  1103. {
  1104. padding: 3px;
  1105. }
  1106. .clsCPItem
  1107. {
  1108. border: 1px solid #FFFFFF;
  1109. padding: 1px;
  1110. }
  1111. .clsCPItem_hover
  1112. {
  1113. border: 1px solid #336699;
  1114. background-color: #bec8dc;
  1115. padding: 1px;
  1116. }
  1117. .clsCPItem_active
  1118. {
  1119. border: 1px solid #336699;
  1120. background-color: #E3E9F3;
  1121. padding: 1px;
  1122. }
  1123. /* Alignment Picker Styles */
  1124. .clsAPButtonNormal
  1125. {
  1126. border : 1px solid #cccccc;
  1127. background-color: #ffffff;
  1128. padding: 2px;
  1129. }
  1130. .clsAPButtonOver
  1131. {
  1132. border : 1px solid #cccccc;
  1133. background-color: #d9e8db;
  1134. cursor: pointer;
  1135. cursor: hand;
  1136. padding: 2px;
  1137. }
  1138. .clsAPButtonPressed
  1139. {
  1140. border : 1px solid #336699;
  1141. background-color: #E3E9F3;
  1142. padding: 2px;
  1143. }
  1144. .clsAPButtonOverPressed
  1145. {
  1146. border : 1px solid #336699;
  1147. background-color: #E3E9F3;
  1148. padding: 2px;
  1149. }
  1150. .clsAPContainer
  1151. {
  1152. background-color: #ffffff;
  1153. border: 1px solid #336699;
  1154. }
  1155. .clsParentDetail
  1156. {
  1157. display: none;
  1158. }
  1159. /* expand/collapse icons */
  1160. .clsExpandCollapseHover
  1161. {
  1162. cursor: pointer;
  1163. cursor: hand;
  1164. }
  1165. .clsPromptDialog
  1166. {
  1167. border: 1px solid black;
  1168. background-color: #ffffff;
  1169. position: absolute;
  1170. padding: 2px;
  1171. top: 10%;
  1172. left: 10%;
  1173. width: 80%;
  1174. height: 80%;
  1175. z-index: 50;
  1176. }
  1177. /*
  1178. The following classes are required to fix Firefox's issues with display:inline on block elements.
  1179. */
  1180. .clsPromptComponent, .clsDisplayInline, .clsFieldSet
  1181. {
  1182. display: -moz-inline-grid;
  1183. }
  1184. *>.clsPromptComponent
  1185. {
  1186. /* ff3 supported feature(CSS 2.0) This value(inisde-table) map to formatting objects that are like tables on the inside, but participate in inline layout.*/
  1187. display: inline-table;
  1188. }
  1189. .clsPromptComponent[pt="btn"]
  1190. {
  1191. display: -moz-inline-box;
  1192. width: auto;
  1193. }
  1194. /*
  1195. In Firefox the tree view the icon and text are not aligned correctly.The following class is required to fix Firefox's issues with align:middle issue in tree.
  1196. */
  1197. .clsTextIconAlignFix
  1198. {
  1199. vertical-align:middle;
  1200. }
  1201. .clsHTML5Input
  1202. {
  1203. width:auto;
  1204. }