explore.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664
  1. @charset "UTF-8";
  2. /*
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: ans
  5. (C) Copyright IBM Corp. 2005, 2017
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /* General HTML element styles */
  9. html, body
  10. {
  11. height: 100%;
  12. width: 100%;
  13. /*Prevent cursor from switching to "I" over text*/
  14. cursor: default;
  15. overflow: hidden;
  16. }
  17. html
  18. {
  19. font-family: Tahoma, 'Arial Unicode MS', 'Andale WT', Arial, 'MS UI Gothic', Gulim, SimSun, PMingLiU, Raghu8, sans-serif;
  20. color: #000000;
  21. }
  22. /***************************************************
  23. * Using the language specific font list below can address IE rendering issue that happens on some OS
  24. ***************************************************/
  25. /****** For Japanese: use MS UI Gothic first ******/
  26. /*html
  27. {
  28. font-family: 'MS UI Gothic', Tahoma, 'Arial Unicode MS', 'Andale WT', Arial, Gulim, SimSun, PMingLiU, Raghu8, sans-serif;
  29. color: #000000;
  30. }*/
  31. /****** For Simplified Chinese: use SimSun first ******/
  32. /*html
  33. {
  34. font-family: SimSun, Tahoma, 'Arial Unicode MS', 'Andale WT', Arial, 'MS UI Gothic', Gulim, PMingLiU, Raghu8, sans-serif;
  35. color: #000000;
  36. }*/
  37. /****** For Traditional Chinese: use PMingLiU first ******/
  38. /*html
  39. {
  40. font-family: PMingLiU, Tahoma, 'Arial Unicode MS', 'Andale WT', Arial, 'MS UI Gothic', Gulim, SimSun, Raghu8, sans-serif;
  41. color: #000000;
  42. }*/
  43. /****** For Korean: use Gulim first ******/
  44. /*html
  45. {
  46. font-family: Gulim, Tahoma, 'Arial Unicode MS', 'Andale WT', Arial, 'MS UI Gothic', SimSun, PMingLiU, Raghu8, sans-serif;
  47. color: #000000;
  48. }*/
  49. .splashWorking
  50. {
  51. font-size: 80%;
  52. padding-right: 4px;
  53. }
  54. /*GM temp for memory leak tests*/
  55. .stab_test
  56. {
  57. position: absolute;
  58. top: 95%;
  59. left: 45%;
  60. }
  61. .stab_test2
  62. {
  63. position: absolute;
  64. top: 95%;
  65. left: 0%;
  66. }
  67. .stab_test3
  68. {
  69. position: absolute;
  70. top: 95%;
  71. left: 75%;
  72. }
  73. /* Drag 'n' drop tooltips */
  74. .clsDragTooltip, .clsDragTooltipVisible {
  75. color: #000000;
  76. padding: 1px;
  77. font-size: 10pt;
  78. border: 1px solid #000000;
  79. background-color: #FFFFCC;
  80. display: block;
  81. position: absolute;
  82. filter: alpha(opacity=50);
  83. opacity: 0.5;
  84. }
  85. .clsDragTooltip
  86. {
  87. display: none;
  88. }
  89. .tooltipTable {
  90. color: #000000;
  91. font-size: 8pt;
  92. padding: 0px;
  93. margin: 0px;
  94. white-space: pre;
  95. }
  96. /* Pane splitter styles */
  97. DIV.clsSplitterHoriz
  98. {
  99. margin: 0px;
  100. position: absolute;
  101. cursor: n-resize;
  102. line-height: 4px;
  103. overflow: hidden;
  104. background-color: transparent;
  105. background-image:url(../../../explore/images/blank.gif);
  106. }
  107. DIV.clsSplitterMoverHoriz
  108. {
  109. margin: 0px;
  110. position: absolute;
  111. cursor: n-resize;
  112. /*change CUIPaneSplitter.kiStaticDimensionSize if you change the following value*/
  113. line-height: 4px;
  114. overflow: hidden;
  115. background-image: url(../../../explore/images/splitter_active.gif);
  116. visibility: hidden;
  117. }
  118. DIV.clsSplitterVert
  119. {
  120. width: 0px;
  121. border-left: 2px solid #e7e7e7;;
  122. margin: 0px;
  123. position: absolute;
  124. cursor: e-resize;
  125. }
  126. DIV.clsSplitterMoverVert
  127. {
  128. width: 1px;
  129. border: 0px;
  130. background-image: url(../../../explore/images/splitter_active.gif);
  131. line-height: 4px;
  132. margin: 0px;
  133. position: absolute;
  134. visibility: hidden;
  135. }
  136. DIV.clsVertResizeBar
  137. {
  138. width: 10px;
  139. border: 0px solid green;
  140. position: absolute;
  141. top: 0px;
  142. left: 0px;
  143. cursor: e-resize;
  144. }
  145. .clsChartSliderMovingBar
  146. {
  147. border: 0px solid green;
  148. position: absolute;
  149. z-Index: 101;
  150. cursor: hand;
  151. padding:0px;
  152. }
  153. .clsVertChartSliderHandler
  154. {
  155. border: 0px;
  156. z-Index: 150;
  157. vertical-align: middle;
  158. }
  159. .clsVertChartSliderRuler
  160. {
  161. border: 0px;
  162. z-Index: 130;
  163. width: 90%;
  164. height: 1px;
  165. vertical-align: middle;
  166. }
  167. .sliderCoordinatesToolTip{
  168. border: 1px solid black;
  169. width: 80px;
  170. height: 20px;
  171. background-color: #FFFAC8;
  172. color: black;
  173. position: absolute;
  174. z-Index: 130;
  175. font-family: Tahoma;
  176. font-size: 70%;
  177. }
  178. .clsHorizChartSliderHandler
  179. {
  180. border: 0px;
  181. position: absolute;
  182. z-Index: 150;
  183. }
  184. .clsHorizChartSliderRuler
  185. {
  186. border: 0px;
  187. z-Index: 130;
  188. position: absolute;
  189. width: 1px;
  190. height: 100%;
  191. }
  192. /* Specific styles */
  193. .dialog_toolbar
  194. {
  195. display: inline-block;
  196. white-space: nowrap;
  197. }
  198. .app_pane
  199. {
  200. position: absolute;
  201. }
  202. .worksheet
  203. {
  204. border-collapse: collapse;
  205. text-align: center;
  206. top: 15%;
  207. /*Width and height are reset in CUIWorkSheet*/
  208. width: 60%;
  209. height: 85%;
  210. position:absolute;
  211. }
  212. .worksheet_status
  213. {
  214. position: absolute;
  215. font-size:70%;
  216. left: 60%;
  217. }
  218. .worksheet_paging
  219. {
  220. position: absolute;
  221. font-size:70%;
  222. }
  223. .crosstab
  224. {
  225. text-align: center;
  226. top: 0px;
  227. left: 0px;
  228. /* The height is reset in the code - see CUICrosstab.kfPercentWSHeight */
  229. height: 88.5%;
  230. position:absolute;
  231. background-color: white;
  232. overflow: hidden;
  233. font-weight: normal;
  234. }
  235. .crosstabTableDiv
  236. {
  237. font-size: 100%;
  238. overflow:hidden;
  239. position:absolute;
  240. left: 0px;
  241. width: 100%;
  242. }
  243. .crosstabTable, .sizeTestTable
  244. {
  245. border-collapse: collapse;
  246. border-width: 0px 0px 0px 0px;
  247. border-style: solid;
  248. border-color: #CCCCCC;
  249. position:absolute;
  250. top: 0px;
  251. left: 0px;
  252. padding: 0px 0px 0px 0px;
  253. font-size: 70%;
  254. }
  255. .crosstabTable_NS, .sizeTestTable_NS
  256. {
  257. border-collapse: collapse !important;
  258. border-spacing: 0px;
  259. border-style: none;
  260. position:absolute;
  261. top: 0px;
  262. left: 0px;
  263. padding: 0px 0px 0px 0px;
  264. font-size: 70%;
  265. }
  266. .sizeTestTable, .sizeTestTable_NS
  267. {
  268. top: -10000px;
  269. left: -10000px;
  270. visibility: hidden;
  271. padding: 0px;
  272. }
  273. /**********************************************
  274. * Context Bar Styles
  275. ***********************************************/
  276. .context_bar
  277. {
  278. background-color: #e3e9f3 ;
  279. overflow: hidden;
  280. border-style: solid;
  281. border-width: 1px;
  282. border-color: #99aacc;
  283. }
  284. .filters_applied_info
  285. {
  286. background-color: #e7e7e7 ;
  287. padding: 3px;
  288. border : 1px solid;
  289. border-color : #cccccc;
  290. height: auto;
  291. font-size: 70%;
  292. }
  293. .scroll_pane
  294. {
  295. overflow: hidden;
  296. }
  297. .invisible_link
  298. {
  299. white-space: pre;
  300. text-decoration: none;
  301. padding:0px;
  302. }
  303. .context_item_name_component
  304. {
  305. padding: 0px;
  306. white-space: nowrap;
  307. font-size: 70%;
  308. }
  309. .hierarchy_label
  310. {
  311. text-decoration: none;
  312. font-size: 100%;
  313. color: #346799;
  314. padding: 0px;
  315. text-align: center;
  316. font-style: italic;
  317. border: 0px;
  318. }
  319. .drag_handle
  320. {
  321. }
  322. .axis_context_table
  323. {
  324. padding-top: 0px;
  325. padding-bottom: 1px;
  326. }
  327. .axis_context_set_dragover, .filter_context_set_dragover
  328. {
  329. background-color: #000000;
  330. }
  331. .axis_context_tbody, .filter_context_tbody
  332. {
  333. vertical-align: top;
  334. }
  335. .axis_label, .rules_label
  336. {
  337. padding-left: 4px;
  338. white-space: nowrap;
  339. color: #336699;
  340. font-size: 60%;
  341. }
  342. .axis_context_item, .filter_context_item
  343. {
  344. white-space: nowrap;
  345. padding-left: 6px;
  346. }
  347. .axis_context_item_name, .axis_context_item_name_selected, .axis_context_item_name_dragover,
  348. .axis_context_item_name_HAMCdragover, .axis_context_item_name_semiselect, .axis_context_item_name_hover,
  349. .dup_dim_axis_context_item_name, .dup_dim_axis_context_item_name_selected, .dup_dim_axis_context_item_name_dragover,
  350. .dup_dim_axis_context_item_name_HAMCdragover, .dup_dim_axis_context_item_name_semiselect, .dup_dim_axis_context_item_name_hover
  351. {
  352. white-space: pre;
  353. border-style: solid;
  354. border-color: #99aacc;
  355. border-width: 1px;
  356. border-right: none;
  357. cursor: default;
  358. background-color: #e3e9f3;
  359. padding-left: 3px;
  360. padding-right: 3px;
  361. padding-top: 0px;
  362. padding-bottom: 0px;
  363. color: #000000;
  364. font-size: 70%;
  365. text-align: center;
  366. }
  367. .dup_dim_axis_context_item_name, .dup_dim_axis_context_item_name_selected, .dup_dim_axis_context_item_name_dragover,
  368. .dup_dim_axis_context_item_name_HAMCdragover, .dup_dim_axis_context_item_name_semiselect, .dup_dim_axis_context_item_name_hover, .dup_dim_context_item_name_component
  369. {
  370. font-size: 54%;
  371. }
  372. .axis_context_item_name_semiselect,.dup_dim_axis_context_item_name_semiselect
  373. {
  374. border-width: 2px;
  375. border-right: 1px solid #99aacc;
  376. padding-left: 2px;
  377. padding-right: 1px;
  378. }
  379. .dropdown_arrow, .filter_icon
  380. {
  381. cursor: pointer;
  382. cursor: hand;
  383. }
  384. .filter_icon
  385. {
  386. vertical-align: middle;
  387. margin-right: 2px;
  388. }
  389. .dropdown_arrow
  390. {
  391. border: 1px solid #99aacc;
  392. background-color: #e3e9f3;
  393. cursor: pointer;
  394. cursor: hand;
  395. }
  396. .dropdown_arrow_pressed
  397. {
  398. background-color: #bec8dc;
  399. border : 1px solid;
  400. border-color : #336699;
  401. }
  402. .dropdown_arrow_hover
  403. {
  404. background-color: #bec8dc;
  405. border : 1px solid;
  406. border-color : #99aacc;
  407. }
  408. .filter_context_table
  409. {
  410. padding-top: 0px;
  411. padding-bottom: 1px;
  412. }
  413. .right_resize_pane
  414. {
  415. background-color: #FFFFFF ;
  416. }
  417. .end_drop_zone
  418. {
  419. background-color: #FFFFFF ;
  420. padding: 2px;
  421. border: solid #cccccc 1px;
  422. }
  423. .filter_scroll_arrow, .filter_scroll_arrow_vis
  424. {
  425. background-color: #FFFFFF ;
  426. }
  427. .axis_scroll_arrow, .axis_scroll_arrow_vis
  428. {
  429. background-color: #e3e9f3 ;
  430. }
  431. .filter_scroll_arrow, .axis_scroll_arrow, .filter_scroll_arrow_vis, .axis_scroll_arrow_vis
  432. {
  433. padding-left: 1px;
  434. padding-right: 1px;
  435. }
  436. .scroll_arrow_button
  437. {
  438. background-color: #FFFFFF ;
  439. border : 1px solid;
  440. border-color : #cccccc;
  441. }
  442. .scrollArrowStyle {
  443. border-width:0px;
  444. }
  445. .button_hover
  446. {
  447. background-color: #bec8dc;
  448. border : 1px solid;
  449. border-color : #99aacc;
  450. cursor: pointer;
  451. cursor: hand;
  452. }
  453. .button_pressed
  454. {
  455. background-color: #bec8dc;
  456. border : 1px solid;
  457. border-color : #336699;
  458. cursor: pointer;
  459. cursor: hand;
  460. }
  461. .button_disabled
  462. {
  463. cursor: default;
  464. }
  465. .filter_context_item_name, .filter_context_item_name_root, .filter_context_item_name_selected,
  466. .filter_context_item_name_root_selected, .filter_context_item_name_hover, .filter_context_item_name_root_hover,
  467. .dup_dim_filter_context_item_name, .dup_dim_filter_context_item_name_root, .dup_dim_filter_context_item_name_selected,
  468. .dup_dim_filter_context_item_name_root_selected, .dup_dim_filter_context_item_name_hover, .dup_dim_filter_context_item_name_root_hover
  469. {
  470. white-space: nowrap;
  471. border-style: solid;
  472. border-color: #99aacc;
  473. border-width: 1px;
  474. border-right: none;
  475. background-color: #e3e9f3;
  476. padding-left: 3px;
  477. padding-right: 3px;
  478. font-weight: normal;
  479. font-size: 70%;
  480. color: #000000;
  481. text-align: center;
  482. }
  483. .dup_dim_filter_context_item_name, .dup_dim_filter_context_item_name_root, .dup_dim_filter_context_item_name_selected,
  484. .dup_dim_filter_context_item_name_root_selected, .dup_dim_filter_context_item_name_hover, .dup_dim_filter_context_item_name_root_hover
  485. {
  486. font-size: 54%;
  487. }
  488. .axis_context_item_name_selected, .dup_dim_axis_context_item_name_selected, .axis_context_item_name_hover, .dup_dim_axis_context_item_name_hover,
  489. .filter_context_item_name_selected,.filter_context_item_name_root_selected, .filter_context_item_name_hover, .filter_context_item_name_root_hover,
  490. .dup_dim_filter_context_item_name_selected,.dup_dim_filter_context_item_name_root_selected, .dup_dim_filter_context_item_name_hover, .dup_dim_filter_context_item_name_root_hover
  491. {
  492. border-width: 2px;
  493. border-color:#134679;
  494. border-right: 2px solid #134679;
  495. padding-left: 2px;
  496. padding-right: 1px;
  497. }
  498. .filter_context_item_name_root, .filter_context_item_name_root_selected, .filter_context_item_name_root_hover,
  499. .dup_dim_filter_context_item_name_root, .dup_dim_filter_context_item_name_root_selected, .dup_dim_filter_context_item_name_root_hover
  500. {
  501. color: #999999;
  502. }
  503. .context_item_HAMCdragover
  504. {
  505. background-color: gray;
  506. color: #FFFFFF ;
  507. }
  508. .context_item_dragover
  509. {
  510. background-color: #000000;
  511. color: #FFFFFF ;
  512. }
  513. /**********************************************
  514. * Left pane & dim tree styles
  515. ***********************************************/
  516. .mdmetadata, .analysis_item
  517. {
  518. color: #0000CC;
  519. left: 0px;
  520. position:absolute;
  521. font-size: 70%;
  522. font-family: Tahoma;
  523. padding: 3px 3px 3px 3px;
  524. overflow: auto;
  525. white-space: nowrap;
  526. vertical-align : middle;
  527. border-left: 1px solid #cccccc;
  528. border-right: 1px solid #cccccc;
  529. }
  530. .pane
  531. {
  532. text-align: left;
  533. position:absolute;
  534. padding: 3px;
  535. margin: 0px 0px 0px 0px;
  536. background-color : white;
  537. background-color: #e7e7e7;
  538. border : 1px solid;
  539. border-color : #e7e7e7 #cccccc #cccccc #e7e7e7;
  540. }
  541. .insert_objects
  542. {
  543. border-collapse: collapse;
  544. position: absolute;
  545. background-color: #ffffff;
  546. }
  547. .BlockProperties
  548. {
  549. border: 0px;
  550. padding: 0px;
  551. }
  552. .left_pane_footer
  553. {
  554. position:absolute;
  555. background-color : #e7e7e7;
  556. }
  557. .InfoTable
  558. {
  559. border-collapse: collapse;
  560. font-size: 70%;
  561. table-layout: fixed;
  562. }
  563. .InfoTable_NS
  564. {
  565. border-spacing: 0px;
  566. font-size: 70%;
  567. }
  568. .Description
  569. {
  570. display:none;
  571. background-color: #e8ecf4;
  572. padding: 3px;
  573. border-bottom : 1px solid #99aacc;
  574. font-size: 70%;
  575. }
  576. .InfoTableCell, .InfoDragCell
  577. {
  578. padding-left: 3px;
  579. padding-top: 3px;
  580. }
  581. .InfoDragCell
  582. {
  583. font-weight: bold;
  584. }
  585. .InfoDragText_Hover
  586. {
  587. background-color: #bec8dc;
  588. color: #000000;
  589. }
  590. .InfoDragText_Selected
  591. {
  592. background-color: #000000;
  593. color: #FFFFFF ;
  594. }
  595. .InfoDragIcon, .InfoLoadingIcon
  596. {
  597. margin-left: 2px;
  598. margin-right: 6px;
  599. }
  600. .InfoTableLabelText, .InfoTableValueText
  601. {
  602. display: inline;
  603. overflow: hidden;
  604. white-space: pre;
  605. }
  606. .InfoTableLabelText
  607. {
  608. font-weight: bold;
  609. }
  610. .hide_show
  611. {
  612. background-color: #e7e7e7;
  613. border : 1px solid;
  614. border-color : #cccccc #cccccc #cccccc #cccccc;
  615. position: absolute;
  616. }
  617. .hide_show_hover
  618. {
  619. background-color: #bec8dc;
  620. }
  621. .hide_show_pressed
  622. {
  623. border-color : #336699 #336699 #336699 #336699;
  624. }
  625. .tab_table{
  626. padding: 0px 0px 0px 0px;
  627. vertical-align : bottom;
  628. border-collapse : collapse;
  629. margin: 0px 0px 0px 0px;
  630. width: 100%;
  631. }
  632. .tab_table_NS{
  633. padding: 0px 0px 0px 0px;
  634. vertical-align : bottom;
  635. border-spacing: 0px;
  636. margin: 0px 0px 0px 0px;
  637. width: 100%;
  638. }
  639. .tab_text_selected
  640. {
  641. cursor: default;
  642. }
  643. .tab_text_none_selected
  644. {
  645. cursor: pointer;
  646. cursor: hand;
  647. }
  648. .warningmsg{
  649. font-family: Verdana;
  650. font-style: normal;
  651. font-size: 12;
  652. font-weight: bold;
  653. color: #336699;
  654. }
  655. /**********************************************
  656. * Crosstab Styles
  657. ***********************************************/
  658. .InstructionText
  659. {
  660. font-size: 70%;
  661. text-align: left;
  662. white-space: nowrap;
  663. }
  664. .h_scroll_bar_splitter{
  665. background-color: #336699;
  666. position: absolute;
  667. height: 1px;
  668. overflow:hidden;
  669. }
  670. .v_scroll_bar_splitter{
  671. background-color: #336699;
  672. position: absolute;
  673. width: 1px;
  674. overflow:hidden;
  675. }
  676. .BlockSelectorRows, .BlockSelectorCols, .BlockSelectorRowsHover, .BlockSelectorColsHover
  677. {
  678. background-color: #BFD2E2;
  679. border: 1px solid #336699;
  680. overflow: hidden;
  681. }
  682. .BlockSelectorCols, .BlockSelectorColsHover
  683. {
  684. background-image: url(../../../explore/images/block_vertical.gif);
  685. }
  686. .BlockSelectorRows, .BlockSelectorRowsHover
  687. {
  688. background-image: url(../../../explore/images/block_horizontal.gif);
  689. }
  690. .BlockSelectorExpandedSet
  691. {
  692. background-color: #BFD2E2;
  693. border: 0px;
  694. text-align: right;
  695. }
  696. .BlockSelectorRowsHover, .BlockSelectorColsHover
  697. {
  698. background-color: #99ccff;
  699. }
  700. .appendIndicator
  701. {
  702. /*border: 1px dashed black;*/
  703. overflow: hidden;
  704. background-color: #000000;
  705. }
  706. /* Cell Template Styles */
  707. .NoDataModeCellTemplate
  708. {
  709. border-collapse: collapse;
  710. border-width: 1px 1px 1px 1px;
  711. border-style: solid;
  712. border-color: #CCCCCC;
  713. text-align: left;
  714. vertical-align: top;
  715. color: #999999;
  716. /*background-color: white;*/
  717. cursor: default;
  718. padding: 10px 7px 5px 10px;
  719. background-image: url(../../../explore/images/get_data_later_background.gif);
  720. }
  721. .NoDataModeDummyMember
  722. {
  723. background-image: url(../../../explore/images/get_data_later_background.gif);
  724. }
  725. .DataCellTemplate
  726. {
  727. border-collapse: collapse;
  728. border-width: 1px 1px 1px 1px;
  729. border-style: solid;
  730. border-color: #CCCCCC;
  731. text-align: center;
  732. color: #999999;
  733. background-color: white;
  734. cursor: default;
  735. padding: 5px 7px 5px 5px;
  736. }
  737. .DataCellTemplate_NS
  738. {
  739. border-width: 0px 1px 1px 0px;
  740. border-style: solid;
  741. border-color: #CCCCCC;
  742. text-align: center;
  743. color: #999999;
  744. background-color: white;
  745. cursor: default;
  746. }
  747. .crostab_drop_arrow{
  748. vertical-align: middle;
  749. margin-right: 5px;
  750. }
  751. .FixedWidthDataCell
  752. {
  753. white-space: nowrap;
  754. border-left: none;
  755. border-top: none;
  756. vertical-align: middle;
  757. text-align: right;
  758. padding: 0px;
  759. cursor: default;
  760. overflow: hidden;
  761. text-overflow:ellipsis;
  762. }
  763. .ColMemberCellTemplate
  764. {
  765. border-collapse: collapse;
  766. border-width: 1px 1px 1px 1px;
  767. border-style: solid;
  768. border-color: #CCCCCC;
  769. text-align: center;
  770. font-weight: bold;
  771. color: #999999;
  772. background-color: #e3e9f3 ;
  773. white-space: nowrap;
  774. cursor: default;
  775. padding: 5px 7px 5px 5px;
  776. }
  777. .ColMemberCellTemplate_NS
  778. {
  779. border-width: 1px 1px 1px 0px;
  780. border-style: solid;
  781. border-color: #CCCCCC;
  782. text-align: center;
  783. font-weight: bold;
  784. color: #999999;
  785. background-color: #e3e9f3 ;
  786. white-space: nowrap;
  787. cursor: default;
  788. padding: 5px 7px 5px 5px;
  789. }
  790. .RowMemberCellTemplate
  791. {
  792. border-collapse: collapse;
  793. border-width: 0px 1px 1px 1px;
  794. border-style: solid;
  795. border-color: #CCCCCC;
  796. text-align: center;
  797. font-weight: bold;
  798. color: #999999;
  799. background-color: #e3e9f3 ;
  800. white-space: nowrap;
  801. cursor: default;
  802. padding: 5px 7px 5px 5px;
  803. }
  804. .CentralMeasureCellTemplate
  805. {
  806. border-collapse: collapse;
  807. border-style: solid;
  808. border-top-style: dashed;
  809. border-left-style: dashed;
  810. text-align: center;
  811. vertical-align: middle;
  812. font-weight: bold;
  813. color: #999999;
  814. padding: 5px 7px 5px 5px;
  815. }
  816. /* Data Cell Styles */
  817. .DataCell, .DataCellInvalid
  818. {
  819. white-space: nowrap;
  820. border-left: none;
  821. border-top: none;
  822. vertical-align: middle;
  823. text-align: right;
  824. padding: 5px 7px 5px 5px;
  825. cursor: default;
  826. }
  827. .DataCellInvalid
  828. {
  829. text-align: center;
  830. }
  831. .DataCellHover
  832. {
  833. cursor: pointer;
  834. cursor: hand;
  835. }
  836. .DrillableDataCell
  837. {
  838. text-decoration: underline;
  839. }
  840. /* Central Measure Cell Styles */
  841. .CentralMeasureCell,.CentralMeasureCellInactive
  842. {
  843. border-collapse: collapse;
  844. text-align: center;
  845. vertical-align: middle;
  846. font-weight: bold;
  847. cursor: default;
  848. white-space: nowrap;
  849. padding: 5px 7px 5px 5px;
  850. }
  851. .CentralMeasureCellInactive{
  852. color: #CCCCCC;
  853. font-weight: normal;
  854. }
  855. .CentralMeasureCellHover
  856. {
  857. background-color: #336699;
  858. color: #FFFFFF ;
  859. }
  860. .AssistiveMeasureText
  861. {
  862. color: #CCCCCC;
  863. }
  864. /* Member Cell Styles */
  865. .MemberCell, .MemberCellHover,
  866. .MemberCellTotal, .MemberCellTotalHover, .BlockLeftEdge,
  867. .MemberCellTotal_Inner,.MemberCellTotalHover_Inner,
  868. .MemberCellSubtotal, .MemberCellSubtotalHover, .IncludeSubtotal, .IncludeSubtotalHover, .ExcludeSubtotal,.ExcludeSubtotalHover
  869. {
  870. white-space: nowrap;
  871. border-left: none;
  872. border-top: none;
  873. vertical-align: middle;
  874. text-align: left;
  875. padding: 5px 7px 5px 5px;
  876. cursor:default;
  877. }
  878. .MemberCellHover,.ExcludeSubtotalHover, .MemberCellTotalHover, .MemberCellTotalHover_Inner, .IncludeSubtotalHover, .MemberCellSubtotalHover
  879. {
  880. background-color: #BEC8DC;
  881. color: #0000cc;
  882. }
  883. .TertiarySelection
  884. {
  885. background-color: #BEC8DC;
  886. color: #FFFFFF ;
  887. }
  888. .SecondarySelection
  889. {
  890. background-color: #FFFFCC;;
  891. color: #000000;
  892. }
  893. .PrimarySelection
  894. {
  895. background-color: #336699;
  896. color:#FFFFFF;
  897. }
  898. .DragOver
  899. {
  900. background-color: #000000;
  901. color: #999999;
  902. }
  903. .Phantom
  904. {
  905. color: #e7e7e7;
  906. }
  907. /* Labels */
  908. .MemberCellLabel
  909. {
  910. white-space: pre;
  911. padding: 0px 0px 0px 0px;
  912. cursor:default;
  913. }
  914. .ColMemberCell
  915. {
  916. white-space: pre;
  917. padding: 0px 0px 0px 0px;
  918. cursor:default;
  919. overflow: hidden;
  920. text-overflow:ellipsis;
  921. }
  922. /*Second class used to force Netscape to update styles dynamically*/
  923. .SecondClass
  924. {
  925. }
  926. .SpecialCalcText
  927. {
  928. text-decoration: none;
  929. cursor: default;
  930. }
  931. .SpecialCalcTextHover
  932. {
  933. text-decoration: underline;
  934. cursor: pointer;
  935. cursor: hand;
  936. }
  937. .Property, .Property_selected
  938. {
  939. white-space: nowrap;
  940. text-decoration: none;
  941. font-weight: normal;
  942. display: block;
  943. cursor: default;
  944. }
  945. .Property
  946. {
  947. color: #336699;
  948. }
  949. .Property_selected
  950. {
  951. color: #e3e9f3;
  952. }
  953. .BlockLeftEdge
  954. {
  955. border-left: 1px solid #999999;
  956. }
  957. .BlockRightEdge
  958. {
  959. border-right: 1px solid #999999;
  960. }
  961. .BlockBottomEdge
  962. {
  963. border-bottom: 1px solid #999999;
  964. }
  965. .BlockTopEdge
  966. {
  967. border-top: 1px solid #999999;
  968. }
  969. .BlockLeftEdgeHL
  970. {
  971. border-left: 1px solid #cc0000;
  972. }
  973. .BlockRightEdgeHL
  974. {
  975. border-right: 1px solid #cc0000;
  976. }
  977. .BlockBottomEdgeHL
  978. {
  979. border-bottom: 1px solid #cc0000;
  980. }
  981. .BlockTopEdgeHL
  982. {
  983. border-top: 1px solid #cc0000;
  984. }
  985. .ChartPane
  986. {
  987. left: 0px;
  988. position: absolute;
  989. text-align: left;
  990. overflow: auto;
  991. }
  992. /** Tree */
  993. .tree_node_normal,.tree_node_clickable
  994. {
  995. color: #000000;
  996. cursor: default;
  997. height: 16px;
  998. padding: 2px 0px 2px 2px;
  999. vertical-align : middle;
  1000. }
  1001. .tree_node_clickable{
  1002. text-decoration: underline;
  1003. color: #0000CC;
  1004. cursor: pointer;
  1005. cursor:hand;
  1006. }
  1007. .tree_node_selected
  1008. {
  1009. cursor: default;
  1010. background-color: #000000;
  1011. color: #FFFFFF ;
  1012. height: 16px;
  1013. padding: 2px 0px 2px 2px;
  1014. vertical-align : middle;
  1015. }
  1016. .tree_node_hover, .tree_node_clickable_hover
  1017. {
  1018. cursor: default;
  1019. background-color: #bec8dc;
  1020. color: #000000;
  1021. height: 16px;
  1022. padding: 2px 0px 2px 2px;
  1023. vertical-align : middle;
  1024. }
  1025. .tree_node_clickable_hover{
  1026. text-decoration: underline;
  1027. }
  1028. .tree_node_blur
  1029. {
  1030. cursor: default;
  1031. background-color: #cccccc;
  1032. color: #000000;
  1033. height: 16px;
  1034. padding: 2px 0px 2px 2px;
  1035. vertical-align : middle;
  1036. }
  1037. .invisible_tree_link
  1038. {
  1039. white-space: pre;
  1040. text-decoration: none;
  1041. cursor: default;
  1042. }
  1043. .additional_node_text, .additional_node_link
  1044. {
  1045. padding-left: 2px;
  1046. vertical-align: middle;
  1047. }
  1048. .additional_node_link, .additional_node_link_hover
  1049. {
  1050. color: #0000CC;
  1051. text-decoration: underline;
  1052. cursor: pointer;
  1053. cursor: hand;
  1054. }
  1055. .additional_node_link_hover
  1056. {
  1057. background-color: #bec8dc;
  1058. }
  1059. IMG.tree_img,IMG.tree_icon
  1060. {
  1061. padding: 0px;
  1062. margin: 0px 0px 0px 0px;
  1063. vertical-align : middle;
  1064. }
  1065. IMG.tree_icon
  1066. {
  1067. cursor: pointer;
  1068. cursor: hand;
  1069. }
  1070. IMG.node_type_icon{
  1071. margin: 0px 0px 0px 0px;
  1072. vertical-align : middle;
  1073. }
  1074. .tree_node_div
  1075. {
  1076. font-size: 8pt;
  1077. padding: 0px 0px 0px 0px;
  1078. white-space: nowrap;
  1079. text-align: left;
  1080. vertical-align : middle;
  1081. color:#000000;
  1082. margin: 0px 0px 0px 0px;
  1083. }
  1084. IMG.clsCursor
  1085. {
  1086. position: absolute;
  1087. visibility: hidden;
  1088. margin: 17px 0px 0px 3px;
  1089. }
  1090. /**********************************************
  1091. * Context Menu Style
  1092. ***********************************************/
  1093. .contextMenu_Separator
  1094. {
  1095. height: 1px;
  1096. }
  1097. .contextMenu_submenu_img{
  1098. vertical-align: middle;
  1099. padding: 2px;
  1100. width: 4px;
  1101. height: 7px;
  1102. }
  1103. .contextItem_img
  1104. {
  1105. padding: 0px;
  1106. vertical-align: middle;
  1107. }
  1108. /*********** Combo box *************/
  1109. TABLE.ComboBox
  1110. {
  1111. table-layout: fixed;
  1112. /*need to change CUIComboBox.BorderWidth if this style attribute changed*/
  1113. border: 1px solid #cccccc;
  1114. background-color: window;
  1115. color: windowtext;
  1116. text-align: left;
  1117. }
  1118. TD.ComboBoxIcon
  1119. {
  1120. height: 18px;
  1121. width: 18px;
  1122. vertical-align: middle;
  1123. cursor: default;
  1124. }
  1125. TD.ComboBoxIconEmpty
  1126. {
  1127. height: 18px;
  1128. width: 0px;
  1129. vertical-align: middle;
  1130. cursor: default;
  1131. }
  1132. TD.ComboBoxText
  1133. {
  1134. white-space: pre;
  1135. overflow: hidden;
  1136. padding: 0px;
  1137. padding-left: 2px;
  1138. vertical-align: middle;
  1139. text-align: left;
  1140. font-size: 8pt;
  1141. }
  1142. TD.ComboBoxText INPUT
  1143. {
  1144. background-color: transparent;
  1145. width: 100%;
  1146. border: none;
  1147. padding: 0px;
  1148. margin: 0px;
  1149. }
  1150. TD.ComboBoxArrow,
  1151. TD.ComboBoxArrow_down
  1152. {
  1153. background-repeat: no-repeat;
  1154. vertical-align: middle;
  1155. background-color: #e7e7e7 ;
  1156. cursor: default;
  1157. padding: 1px;
  1158. border: 1px solid green;
  1159. }
  1160. TD.ComboBoxArrowWhite,
  1161. TD.ComboBoxArrowWhite_down
  1162. {
  1163. background-repeat: no-repeat;
  1164. vertical-align: middle;
  1165. background-color: #ffffff;
  1166. cursor: default;
  1167. padding: 1px;
  1168. }
  1169. TD.ComboBoxArrowWhite,
  1170. TD.ComboBoxArrow
  1171. {
  1172. background-position: center center;
  1173. /*reflected border constants need to be change in filter dialog*/
  1174. border: 1px solid #cccccc;
  1175. }
  1176. TD.ComboBoxArrowWhite_down,
  1177. TD.ComboBoxArrow_down
  1178. {
  1179. border-width: 1px;
  1180. border-style: solid;
  1181. border-color: #000000;
  1182. background-position: center center;
  1183. }
  1184. TD.ComboBoxArrowWhite_hover
  1185. {
  1186. background-repeat: no-repeat;
  1187. vertical-align: middle;
  1188. background-color: #e7e7e7 ;
  1189. cursor: pointer;
  1190. cursor: hand;
  1191. padding: 1px;
  1192. background-position: center center;
  1193. /*reflected border constants need to be change in filter dialog*/
  1194. border: 1px solid #cccccc;
  1195. }
  1196. /***************** List ctrl **********************/
  1197. .ListCtrl
  1198. {
  1199. overflow: auto;
  1200. border: 1px solid #999999;
  1201. }
  1202. DIV.ListView,
  1203. DIV.ListView_dropdown
  1204. {
  1205. overflow: auto;
  1206. white-space: nowrap;
  1207. background-color: window;
  1208. color: windowtext;
  1209. border: 2px inset threedhighlight;
  1210. }
  1211. DIV.ListView_dropdown
  1212. {
  1213. border: 1px solid #000000;
  1214. overflow: auto;
  1215. background-color: #FFFFFF;
  1216. }
  1217. .ListCtrlIcon
  1218. {
  1219. margin-right: 2px;
  1220. }
  1221. .chart_IE
  1222. {
  1223. border: none;
  1224. }
  1225. .chart
  1226. {
  1227. border:none;
  1228. }
  1229. .chartError
  1230. {
  1231. margin-top: 50px;
  1232. margin-bottom: 50px;
  1233. margin-left: 10px;
  1234. margin-right: 10px;
  1235. }
  1236. /**********************************************
  1237. * dialog styles
  1238. ***********************************************/
  1239. .dialogDiv, .dialogDiv_NS
  1240. {
  1241. background-color: #FFFFFF ;
  1242. position: absolute;
  1243. overflow: hidden;
  1244. visibility: hidden;
  1245. border: 0px;
  1246. }
  1247. .modalDialogDiv
  1248. {
  1249. background-image: url(../../../explore/images/blank.gif);
  1250. position: absolute;
  1251. top: 0px;
  1252. left: 0px;
  1253. overflow: hidden;
  1254. visibility: hidden;
  1255. }
  1256. .dlgContentDiv
  1257. {
  1258. background-color: #FFFFFF ;
  1259. overflow: auto;
  1260. border-left: 1px solid #999999;
  1261. border-right: 1px solid #999999;
  1262. padding-left: 5px;
  1263. }
  1264. .modalDialogContentDiv, .modalDialogContentDiv_NS
  1265. {
  1266. background-color: #eceef3;
  1267. overflow: hidden;
  1268. border-left: 1px solid #999999;
  1269. border-right: 1px solid #999999;
  1270. padding-left: 5px;
  1271. padding-right: 5px;
  1272. padding-top: 10px;
  1273. padding-bottom: 10px;
  1274. }
  1275. .modalDialogContentDiv
  1276. {
  1277. width: 100%;
  1278. }
  1279. .dialogTitle
  1280. {
  1281. font-family: Tahoma;
  1282. font-size: 80%;
  1283. color: #336699;
  1284. font-weight: bold;
  1285. border-bottom: 1px solid #336699;
  1286. padding-left: 3px;
  1287. white-space: nowrap;
  1288. }
  1289. .dialogIntroTable {
  1290. width: 99%;
  1291. padding:0px;
  1292. }
  1293. .dialogIntroText {
  1294. text-align: left;
  1295. font-size: 70%;
  1296. width: 85%;
  1297. color: #336699;
  1298. padding-left: 2px;
  1299. padding-top: 2px;
  1300. padding-bottom: 2px;
  1301. }
  1302. .dlginnerlink{
  1303. text-align: right;
  1304. font-size: 8pt;
  1305. white-space: nowrap;
  1306. }
  1307. .dialogCloseCol
  1308. {
  1309. border-bottom: 1px solid #336699;
  1310. text-align: right;
  1311. padding: 0px;
  1312. margin: 0px;
  1313. }
  1314. .dialogCloseButton
  1315. {
  1316. border: 1px solid #336699;
  1317. border-bottom: none;
  1318. color: #336699;
  1319. padding: 2px;
  1320. vertical-align: bottom;
  1321. }
  1322. .dialogText,.dialogText_bold, .aboutDlgVersionText,.srchDlgQoSOpt
  1323. {
  1324. font-family: Tahoma;
  1325. font-size: 70%;
  1326. color: #336699;
  1327. }
  1328. .aboutDlgVersionText
  1329. {
  1330. font-weight: bold;
  1331. }
  1332. .dialogText_bold
  1333. {
  1334. font-weight: bold;
  1335. vertical-align: middle;
  1336. white-space: nowrap;
  1337. }
  1338. .infoLabel, .CheckBoxText
  1339. {
  1340. font-size: 8pt;
  1341. font-weight: normal;
  1342. color: #000000;
  1343. vertical-align : middle;
  1344. padding: 0px;
  1345. text-align: left;
  1346. }
  1347. .dialogTextBox
  1348. {
  1349. font-family: Tahoma;
  1350. font-size: 70%;
  1351. color: #000000;
  1352. overflow: hidden;
  1353. }
  1354. /*Firefox - have to force the color background*/
  1355. .disabledTextBox
  1356. {
  1357. background-color: #FFFFFF !important;
  1358. }
  1359. .dialogTextArea
  1360. {
  1361. font-family: Tahoma;
  1362. font-size: 70%;
  1363. color: #000000;
  1364. overflow: auto;
  1365. }
  1366. .dialog_block_list
  1367. {
  1368. padding-top: 10px;
  1369. }
  1370. .integerTextBox, .integerTextBox_centered
  1371. {
  1372. font-family: Tahoma;
  1373. font-size: 8pt;
  1374. text-align: left;
  1375. color: #000000;
  1376. vertical-align: top;
  1377. padding: 1px 0px 1px 0px;
  1378. }
  1379. .integerTextBox_changed
  1380. {
  1381. font-weight: bold;
  1382. }
  1383. .integerTextBox_centered
  1384. {
  1385. text-align: center;
  1386. }
  1387. .dialogCheckBox
  1388. {
  1389. color: #000000;
  1390. }
  1391. .dialogSmallCheckBox
  1392. {
  1393. height: 12px;
  1394. width: 12px;
  1395. }
  1396. .dialogRadioBtn
  1397. {
  1398. vertical-align: middle;
  1399. }
  1400. .dialogImage, .ListCtrlIcon
  1401. {
  1402. margin-left: auto;
  1403. margin-right: auto;
  1404. border: 0px;
  1405. padding: 0px;
  1406. vertical-align : middle;
  1407. }
  1408. .dialogInnerFuncLink
  1409. {
  1410. font-size: 8pt;
  1411. vertical-align : top;
  1412. text-align: right;
  1413. padding-right: 4px;
  1414. padding-left: 0px;
  1415. padding-top: 0px;
  1416. padding-bottom: 0px;
  1417. }
  1418. .dialogSelectBox{
  1419. font-family: Tahoma;
  1420. font-size: 8pt;
  1421. font-weight: normal;
  1422. color: #000000;
  1423. }
  1424. .dialogButton, .dialogButton_hover, .dialogButton_NS, .dialogButton_hover_NS
  1425. {
  1426. background-color : #FFFFFF ;
  1427. font : Tahoma;
  1428. font-size: 90%;
  1429. font-weight: normal;
  1430. text-align: center;
  1431. border : 1px solid #999999;
  1432. overflow: visible;
  1433. cursor: pointer;
  1434. cursor: hand;
  1435. vertical-align : middle;
  1436. padding: 1px 10px 1px 10px;
  1437. }
  1438. .dialogButton_NS, .dialogButton_hover_NS
  1439. {
  1440. /*float:left is to make sure min-width works in Firefox.*/
  1441. min-width: 70px;
  1442. }
  1443. .dialogButton, .dialogButton_hover
  1444. {
  1445. width: 70px;
  1446. }
  1447. .buttonText, .buttonText_NS
  1448. {
  1449. text-decoration: none;
  1450. color : #000000;
  1451. height: 100%;
  1452. white-space: nowrap;
  1453. }
  1454. .dialogImgButton, .dialogImgButton_hover, .dialogImgButton_selected
  1455. {
  1456. background-color : #FFFFFF ;
  1457. font : Tahoma;
  1458. font-size: 70%;
  1459. font-weight: normal;
  1460. color : #000000;
  1461. border : 1px solid #999999;
  1462. padding: 0px 10px 0px 10px;
  1463. overflow: visible;
  1464. cursor: pointer;
  1465. cursor: hand;
  1466. text-align : center;
  1467. vertical-align : middle;
  1468. white-space:nowrap;
  1469. display: inline-block;
  1470. }
  1471. .dialogImgButton_hover, .dialogImgButton_selected
  1472. {
  1473. background-color: #bec8dc;
  1474. }
  1475. .dialogRequiredFieldIndicator
  1476. {
  1477. vertical-align: top;
  1478. }
  1479. .dialogTable{
  1480. /*border-style:none;*/
  1481. width: 100%;
  1482. padding:0px;
  1483. }
  1484. .dialogInnerDiv
  1485. {
  1486. padding-top: 10px;
  1487. padding-bottom: 10px;
  1488. }
  1489. a.dialogAnchor
  1490. {
  1491. background-color : #FFFFFF ;
  1492. font-size: 80%;
  1493. color : #336699;
  1494. margin-left : 10px;
  1495. text-decoration : underline;
  1496. }
  1497. .helplink, .cancelLink, .noDataModeFuncLink
  1498. {
  1499. text-decoration : underline;
  1500. font-size: 8pt;
  1501. text-align: right;
  1502. color: blue;
  1503. cursor: hand;
  1504. vertical-align:middle;
  1505. }
  1506. .disabled_cancelLink
  1507. {
  1508. text-decoration: none;
  1509. font-size: 8pt;
  1510. text-align: right;
  1511. color: graytext;
  1512. cursor: default;
  1513. }
  1514. .disabled_link
  1515. {
  1516. text-decoration: none;
  1517. font-size: 8pt;
  1518. text-align: right;
  1519. color: #336699;
  1520. cursor: default;
  1521. }
  1522. .link
  1523. {
  1524. text-decoration: underline;
  1525. cursor: pointer;
  1526. cursor: hand;
  1527. color: #336699;
  1528. font-weight: normal;
  1529. white-space: pre;
  1530. }
  1531. .helplink {
  1532. color: #ffffff;
  1533. font-weight: normal;
  1534. white-space: nowrap;
  1535. }
  1536. .dialogSecTitle
  1537. {
  1538. font-size: 8pt;
  1539. color: #336699;
  1540. font-weight: bold;
  1541. background-color : #FFFFFF ;
  1542. }
  1543. /* should be removed once CUIChart was cleaned up */
  1544. .dialogBorderedText
  1545. {
  1546. font-size: 8pt;
  1547. color: #336699;
  1548. border-left: 1px solid #336699;
  1549. padding-left: 5px;
  1550. height: 12px;
  1551. }
  1552. .srchDlgQoSOpt
  1553. {
  1554. vertical-align: top;
  1555. }
  1556. .singleBlockSegmentDiv
  1557. {
  1558. overflow: auto;
  1559. border: 0px;
  1560. font-family: Tahoma;
  1561. font-size: 70%;
  1562. color: #336699;
  1563. padding: 0px 5px 0px 5px;
  1564. }
  1565. .nestedBlockSegmentDiv
  1566. {
  1567. overflow: auto;
  1568. border: 1px solid #000000;
  1569. background-color : #FFFFFF ;
  1570. font-family: Tahoma;
  1571. font-size: 70%;
  1572. color: #336699;
  1573. padding: 5px 5px 5px 5px;
  1574. }
  1575. .fltDlgBlockCntx
  1576. {
  1577. font-family: Tahoma;
  1578. font-size: 70%;
  1579. font-weight: normal;
  1580. color: #000000;
  1581. }
  1582. .srchDlgResultDiv, .suppressionDlgTuplesDiv
  1583. {
  1584. width: 100%;
  1585. height: 100%;
  1586. overflow: auto;
  1587. background-color : #FFFFFF ;
  1588. }
  1589. .srchDlgResultArea, .calcExprEditArea, .suppressionDlgTuplesArea
  1590. {
  1591. border: 1px solid #999999;
  1592. vertical-align: top;
  1593. }
  1594. .listCtrlTBL,.nonWrapListCtrlTBL
  1595. {
  1596. border: 0px;
  1597. width: 100%;
  1598. padding: 0px;
  1599. }
  1600. .srchDlgResultTBLHeader
  1601. {
  1602. font-size: 8pt;
  1603. color: #336699;
  1604. font-weight: bold;
  1605. background-color : #e7e7e7 ;
  1606. /*remove the right border right now, might be add back
  1607. border-right: 1px solid #999999;*/
  1608. }
  1609. .srchDlgResultItem, .ListCtrlItem, .ListCtrlSeparator, .SpecialListCtrlItem, .missingDataItem, .suppressionDlgTupleItem
  1610. {
  1611. font-size: 8pt;
  1612. color: #000000;
  1613. background-color : white;
  1614. font-weight: normal;
  1615. cursor: default;
  1616. white-space: pre;
  1617. }
  1618. .suppressionTupleItemTblHeader
  1619. {
  1620. font-size: 8pt;
  1621. color: #336699;
  1622. background-color : #EEEEEE;
  1623. font-weight: bold;
  1624. cursor: default;
  1625. text-align: left;
  1626. }
  1627. .suppressionTupleItemTblHeaderTD
  1628. {
  1629. border-left: 1px solid #CCCCCC;
  1630. }
  1631. .SpecialListCtrlItem
  1632. {
  1633. font-style: italic;
  1634. }
  1635. .srchDlgResultItemSelected, .suppressionDlgTupleItemSelected
  1636. {
  1637. font-size: 8pt;
  1638. background-color: #FFFFCC;
  1639. border-right: 1px solid #e7e7e7 ;
  1640. cursor: pointer;
  1641. cursor: hand;
  1642. white-space: pre;
  1643. }
  1644. .tempOperand{
  1645. font-style: italic;
  1646. }
  1647. .inValidOperand
  1648. {
  1649. color: #DC143C;
  1650. }
  1651. .inValidOperandSelected
  1652. {
  1653. color: #FFCCCC;
  1654. }
  1655. .ListCtrlItem_Selected
  1656. {
  1657. background-color:#99aacc;
  1658. }
  1659. .ListCtrlItem_Hover
  1660. {
  1661. background-color: #e3e9f3;
  1662. }
  1663. .ListCtrlItem_blur
  1664. {
  1665. background-color: #cccccc;
  1666. }
  1667. .ListCtrlItemLink
  1668. {
  1669. color: #000000;
  1670. text-decoration: none;
  1671. cursor: default;
  1672. }
  1673. .nonWrapListCtrlTBL{
  1674. white-space:pre;
  1675. }
  1676. .aboutDlgBrandImg
  1677. {
  1678. vertical-align: top;
  1679. }
  1680. .aboutDlgDiv
  1681. {
  1682. padding-bottom: 10px;
  1683. padding-top:10px;
  1684. }
  1685. .aboutImageDiv
  1686. {
  1687. height: 340px;
  1688. padding-left:10px;
  1689. overflow:auto;
  1690. overflow-x:hidden;
  1691. position: relative;
  1692. }
  1693. .aboutImageTemplate
  1694. {
  1695. position: absolute;
  1696. }
  1697. .aboutProductTemplate
  1698. {
  1699. padding-top: 46px;
  1700. font-weight: bold;
  1701. }
  1702. .aboutVersionTemplate
  1703. {
  1704. font-size: 9pt;
  1705. font-weight: bold;
  1706. }
  1707. .aboutLicenseTemplate
  1708. {
  1709. padding-top: 8px;
  1710. font-size: 8pt;
  1711. font-weight: normal;
  1712. }
  1713. .aboutCopyrightTemplate
  1714. {
  1715. font-size: 8pt;
  1716. width: 450px;
  1717. font-weight: normal;
  1718. }
  1719. .aboutDlgVersion
  1720. {
  1721. padding-bottom: 5px;
  1722. }
  1723. .patentPendingTD
  1724. {
  1725. padding-bottom: 10px;
  1726. }
  1727. .patentPending
  1728. {
  1729. font-family: Tahoma, Arial, Geneva, Helvetica, sans-serif;
  1730. font-size: 70%;
  1731. color: #000000;
  1732. font-weight: normal;
  1733. }
  1734. .copyrightWarning
  1735. {
  1736. padding-top: 10px;
  1737. font-family: Tahoma, Arial, Geneva, Helvetica, sans-serif;
  1738. font-size: 70%;
  1739. color: #999999;
  1740. font-weight: normal;
  1741. }
  1742. .CopyrightNotice
  1743. {
  1744. /*font: messagebox;*/
  1745. font-size: 70%;
  1746. cursor: default;
  1747. padding:5px;
  1748. border:solid black 1px;
  1749. background-color:white;
  1750. width:92%;
  1751. height:200px;
  1752. overflow:auto;
  1753. background-image: url(../branding/ibm-logo-white.gif);
  1754. background-position: center center;
  1755. background-attachment: fixed;
  1756. background-repeat: no-repeat;
  1757. }
  1758. .aboutDlgText
  1759. {
  1760. padding-left:10px;
  1761. padding-right:10px;
  1762. vertical-align:middle;
  1763. width:100%;
  1764. }
  1765. /*Styles to be compliant with Liz standard*/
  1766. .pagerCtrlTBL
  1767. {
  1768. border-top: 0px;
  1769. border-bottom: 1px;
  1770. border-left: 0px;
  1771. border-right: 1px;
  1772. border-collapse: collapse;
  1773. /*width: 100%;*/
  1774. padding: 0px;
  1775. }
  1776. .pagerCtrlTBLHeader, .pagerCtrlTBLHeaderLastColumn, .missingDataTBLHeader
  1777. {
  1778. font-size: 8pt;
  1779. color: #336699;
  1780. font-weight: bold;
  1781. border-right: 1px solid #b7b7b7;
  1782. border-bottom: 1px solid #e7e7e7;
  1783. background-color : #e7e7e7 ;
  1784. padding-left: 5px;
  1785. padding-right: 5px;
  1786. white-space: nowrap;
  1787. }
  1788. .pagerCtrlTBLHeaderLastColumn
  1789. {
  1790. border-right-style: none;
  1791. }
  1792. .pagerCtrlTBLItem_selected
  1793. {
  1794. background-color:#e3e9f3;
  1795. }
  1796. .pagerCtrlTBLItem
  1797. {
  1798. background-color : white;
  1799. }
  1800. .pagerCtrlTBLItem_hidden
  1801. {
  1802. display:none;
  1803. }
  1804. .pagerCtrlTBLItem_show
  1805. {
  1806. display:block;
  1807. }
  1808. .pagerCtrlTBLTD,.pagerCtrlTBLTD_selected
  1809. {
  1810. font-size: 8pt;
  1811. color: #000000;
  1812. padding-left: 3px;
  1813. padding-right: 3px;
  1814. white-space: noWrap;
  1815. border: 1px solid #b7b7b7;
  1816. }
  1817. .pagerCtrlTBLTD{
  1818. background-color: #ffffff;
  1819. }
  1820. .pagerCtrlTBLTD_selected{
  1821. background-color: #e3e9f3;
  1822. }
  1823. .calcExprDisplay{
  1824. vertical-align: top;
  1825. padding: 0px 3px 0px 20px;
  1826. }
  1827. /* new driozone implementation*/
  1828. .dz_div_LR
  1829. {
  1830. background: white;
  1831. border-left: 1px solid #000000;
  1832. border-right: 1px solid #000000;
  1833. padding: 2px;
  1834. }
  1835. .dz_div_TB
  1836. {
  1837. background: white;
  1838. border-top: 1px solid #000000;
  1839. border-bottom: 1px solid #000000;
  1840. padding: 2px;
  1841. }
  1842. .replace_dz
  1843. {
  1844. color: #999999;
  1845. background-color: #000000;
  1846. background-image: url('');
  1847. }
  1848. .hamc_replace_dz
  1849. {
  1850. color: #000000;
  1851. background-color: #e7e7e7;
  1852. }
  1853. .crosstab_dropzone
  1854. {
  1855. background-color: #FFFFFF ;
  1856. }
  1857. .userDefFLTDlgRuleDiv
  1858. {
  1859. width: 100%;
  1860. height: 100px;
  1861. overflow: auto;
  1862. border: 1px solid #000000;
  1863. border-bottom: 1px solid #cccccc;
  1864. border-right: 1px solid #cccccc;
  1865. padding: 0px;
  1866. }
  1867. /****************** Block Properties Pane *******************/
  1868. .BlockPropertyLineLabel
  1869. {
  1870. font-weight: bold;
  1871. font-size: 70%;
  1872. white-space: nowrap;
  1873. }
  1874. .BlockPropertiesContainer
  1875. {
  1876. border-left: 1px solid #e7e7e7;
  1877. border-right: 1px solid #e7e7e7;
  1878. background-color: #FFFFFF ;
  1879. overflow: auto;
  1880. }
  1881. .BlockPropertiesText
  1882. {
  1883. display: inline-block;
  1884. overflow: hidden;
  1885. }
  1886. .BlockPropertiesText_NS
  1887. {
  1888. /*Netscape doesn't officially support inline-block but -moz-inline-box gives us what we need -
  1889. i.e. the ability to set the width
  1890. See also http://bugzilla.mozilla.org/show_bug.cgi?id=9458*/
  1891. display: -moz-inline-box;
  1892. overflow: hidden;
  1893. }
  1894. .BlockPropertyCell
  1895. {
  1896. padding-left: 5px;
  1897. padding-top: 2px;
  1898. padding-bottom: 2px;
  1899. text-align: left;
  1900. vertical-align: middle;
  1901. }
  1902. .disabledDIV_NS span
  1903. {
  1904. color: #555555;
  1905. }
  1906. .disabledDIV_NS td
  1907. {
  1908. color: #555555;
  1909. }
  1910. .prop_div, .lock_prop_div
  1911. {
  1912. padding: 0px 0px 0px 0px;
  1913. white-space: nowrap;
  1914. text-align: left;
  1915. vertical-align: middle;
  1916. color:#000000;
  1917. font-family: Tahoma;
  1918. font-size: 70%;
  1919. display: inline;
  1920. font-weight: normal;
  1921. cursor: default;
  1922. }
  1923. .prop_block_table{
  1924. border-collapse: collapse;
  1925. vertical-align: top;
  1926. font-size: 100%;
  1927. }
  1928. .lock_prop_div
  1929. {
  1930. font-size: 100%;
  1931. }
  1932. .prop_div_middel_valign
  1933. {
  1934. padding: 0px 0px 0px 0px;
  1935. white-space: nowrap;
  1936. text-align: left;
  1937. vertical-align: middle;
  1938. color:#000000;
  1939. font-family: Tahoma;
  1940. font-size: 70%;
  1941. display: inline;
  1942. font-weight: normal;
  1943. cursor: default;
  1944. }
  1945. .prop_div_link
  1946. {
  1947. color: #0000CC;
  1948. text-decoration: underline;
  1949. white-space: pre;
  1950. }
  1951. .prop_div_changed
  1952. {
  1953. font-weight: bold;
  1954. }
  1955. .prop_div_hover
  1956. {
  1957. background-color: #e3e9f3;
  1958. }
  1959. .prop_div_selected
  1960. {
  1961. background-color:#99aacc;
  1962. }
  1963. .prop_div_editable
  1964. {
  1965. cursor: pointer;
  1966. cursor: hand;
  1967. }
  1968. IMG.prop_dropdown_arrow, .dlg_dropdown_arrow{
  1969. height: 12px;
  1970. width: 13px;
  1971. margin: 0px 0px 0px 0px;
  1972. vertical-align: middle;
  1973. cursor: pointer;
  1974. cursor: hand;
  1975. }
  1976. .link_image
  1977. {
  1978. cursor: pointer;
  1979. cursor: hand;
  1980. }
  1981. .dlg_dropdown, .dlg_img_in_pageCtrlTBL
  1982. {
  1983. font-family: Tahoma;
  1984. font-size: 70%;
  1985. text-align: center;
  1986. }
  1987. .dlg_img_in_pageCtrlTBL {
  1988. vertical-align: top;
  1989. padding-top: 3px;
  1990. }
  1991. .dlg_dropdown_container {
  1992. text-align: center;
  1993. display: inline;
  1994. }
  1995. .dlg_dropdown_block_container {
  1996. text-align: right;
  1997. /*padding-right: 30px; */
  1998. display: inline-block;
  1999. }
  2000. .inner_rule_div{
  2001. border: 1px solid #cccccc;
  2002. display: inline-block;
  2003. padding: 2px;
  2004. }
  2005. .vAlign_top {
  2006. vertical-align: top;
  2007. }
  2008. .vAlign_middle {
  2009. vertical-align: middle;
  2010. }
  2011. .vCellSpacing{
  2012. padding-top:2px;
  2013. padding-bottom:2px;
  2014. }
  2015. .rs_content_top_alignment{
  2016. vertical-align: top;
  2017. }
  2018. .flt_rule_group_brakets_open
  2019. {
  2020. vertical-align: top;
  2021. padding: 6px 1px 2px 1px;
  2022. display: inline-block;
  2023. }
  2024. .flt_rule_group_brakets_close
  2025. {
  2026. vertical-align: bottom;
  2027. padding: 2px 1px 4px 1px;
  2028. display: inline-block;
  2029. }
  2030. .editable_content_link{
  2031. text-decoration : underline;
  2032. font-size: 8pt;
  2033. }
  2034. .Disabled
  2035. {
  2036. color: #CCCCCC;
  2037. background-color: #999999 !important;
  2038. cursor: default;
  2039. }
  2040. /*Firefox UI fix, the above color=#CCC does not apply in Firefox*/
  2041. .Disabled a
  2042. {
  2043. color: #CCC;
  2044. }
  2045. .worksheet_loading
  2046. {
  2047. padding: 0px 5px 0px 0px;
  2048. vertical-align : middle;
  2049. }
  2050. .missingDataPane
  2051. {
  2052. text-align: left;
  2053. padding: 10px 10px 0px 10px;
  2054. position: absolute;
  2055. /*Width and height are reset in CUIWorkSheet*/
  2056. overflow: auto;
  2057. }
  2058. .missingDataErrorMsgDiv
  2059. {
  2060. padding: 10px 10px 30px 10px;
  2061. color: #336699;
  2062. }
  2063. .missingDataFixInstruction
  2064. {
  2065. padding: 0px 0px 5px 0px;
  2066. font-size: 70%;
  2067. }
  2068. .missingDataAnaUpdateInstruction
  2069. {
  2070. padding: 20px 0px 20px 0px;
  2071. font-size: 70%;
  2072. }
  2073. .missingDataTBL
  2074. {
  2075. border-top: 1px solid #000000;
  2076. border-bottom: 1px solid #b7b7b7;
  2077. border-left: 1px solid #000000;
  2078. border-right: 1px solid #b7b7b7;
  2079. border-collapse: collapse;
  2080. /*width: 100%;*/
  2081. padding: 0px;
  2082. text-align: center;
  2083. }
  2084. .missingDataItem, .repItemDragOver, .missingDataItemSelected
  2085. {
  2086. border-right: 1px solid #b7b7b7;
  2087. padding: 3px;
  2088. height: 13px;
  2089. vertical-align: middle;
  2090. background-color: #FFFFFF;
  2091. font-size: 8pt;
  2092. }
  2093. .repItemDragOver
  2094. {
  2095. background-color: #000000;
  2096. }
  2097. .missingDataItemSelected
  2098. {
  2099. background-color: #FFFFCC;
  2100. }
  2101. .missdatapanebutton{
  2102. border-top: 1px solid #bec8dc;
  2103. border-right: 1px solid #999999;
  2104. border-left: 1px solid #999999;
  2105. border-bottom: 1px solid #999999;
  2106. background-color: #e7e7e7;
  2107. width: 100%;
  2108. padding: 0px;
  2109. }
  2110. /**********************************************
  2111. * Z - indexes - Please leave this at the bottom of the file
  2112. ***********************************************/
  2113. .clsDragTooltipVisible
  2114. {
  2115. z-index: 100;
  2116. }
  2117. DIV.clsSplitterVert
  2118. {
  2119. z-index: 30;
  2120. }
  2121. DIV.clsSplitterMoverVert
  2122. {
  2123. z-index: 31;
  2124. }
  2125. .left_resize_pane
  2126. {
  2127. z-index: 20;
  2128. }
  2129. .scroll_pane
  2130. {
  2131. z-index: 1;
  2132. }
  2133. .filter_scroll_arrow_vis
  2134. {
  2135. z-index: 14;
  2136. }
  2137. .filter_scroll_arrow
  2138. {
  2139. z-index: 0;
  2140. }
  2141. .axis_scroll_arrow
  2142. {
  2143. z-index: 0;
  2144. }
  2145. .axis_scroll_arrow_vis
  2146. {
  2147. z-index: 15;
  2148. }
  2149. .contextMenu_body, .contextMenu_body_NS
  2150. {
  2151. z-index: 99;
  2152. }
  2153. .h_scroll_bar_splitter, .v_scroll_bar_splitter{
  2154. z-index: 3;
  2155. }
  2156. .scrollbarStyle {
  2157. z-index: 4;
  2158. }
  2159. .dialogDiv
  2160. {
  2161. z-index: 10;
  2162. }
  2163. .dialogDiv_NS
  2164. {
  2165. z-index: 32;
  2166. }
  2167. .end_drop_zone
  2168. {
  2169. z-index: 55;
  2170. }
  2171. .crosstab_dropzone
  2172. {
  2173. z-index: 100;
  2174. }
  2175. .Annotation
  2176. {
  2177. z-index: 50;
  2178. }
  2179. .modalDialogContentDiv
  2180. {
  2181. z-index: 150;
  2182. }
  2183. .modalDialogDyncContentDiv
  2184. {
  2185. z-index: 151;
  2186. }
  2187. .modalDialogDiv
  2188. {
  2189. z-index:149;
  2190. }
  2191. .DefaultANSTable
  2192. {
  2193. margin-top: 10px;
  2194. margin-left: 10px;
  2195. font-family: Tahoma;
  2196. text-align: center;
  2197. }
  2198. .DefaultANSTable td
  2199. {
  2200. vertical-align: top;
  2201. line-height: 20px;
  2202. width: 100px;
  2203. color: #000000;
  2204. }
  2205. .showOption
  2206. {
  2207. text-align: left;
  2208. margin-left: 0px;
  2209. padding-top: 10px;
  2210. padding-bottom: 10px;
  2211. padding-left: 0px;
  2212. white-space: nowrap;
  2213. font-size: 70%;
  2214. }
  2215. .DefaultANSTableTextDiv
  2216. {
  2217. padding-left: 4px;
  2218. padding-right: 4px;
  2219. }
  2220. .DefaultANSTableText_hover
  2221. {
  2222. background-color: #E3E9F3;
  2223. padding-left: 4px;
  2224. padding-right: 4px;
  2225. }
  2226. .DefaultANSTableText_selected
  2227. {
  2228. background-color: #000000;
  2229. color: #FFFFFF;
  2230. padding-left: 4px;
  2231. padding-right: 4px;
  2232. }
  2233. .modalDialogInfoDiv
  2234. {
  2235. margin: 0px;
  2236. line-height: 100px;
  2237. background-color: #FFFFFF;
  2238. overflow: hidden;
  2239. border-left: 1px solid #999999;
  2240. border-right: 1px solid #999999;
  2241. padding-left: 0px;
  2242. padding-right: 0px;
  2243. padding-top: 0px;
  2244. padding-bottom: 0px;
  2245. }
  2246. .DefaultANSCellDiv
  2247. {
  2248. margin-top: 0px;
  2249. margin-left: 0px;
  2250. text-align: center;
  2251. }
  2252. .calcExprBoardDiv
  2253. {
  2254. width: 100%;
  2255. height: 100px;
  2256. overflow: auto;
  2257. border: 1px solid #000000;
  2258. border-bottom: 1px solid #cccccc;
  2259. border-right: 1px solid #cccccc;
  2260. color: #000000;
  2261. padding: 0px;
  2262. vertical-align: top;
  2263. margin: 0px;
  2264. white-space: pre;
  2265. }
  2266. .calcExprBoardInvalidLink, .invalidListCtrlItemLink
  2267. {
  2268. color: #DC143C;
  2269. cursor: hand;
  2270. text-decoration: underline;
  2271. }
  2272. .calcFullSyntax{
  2273. color: #336699;
  2274. text-decoration: underline;
  2275. white-space: nowrap;
  2276. font-weight: normal;
  2277. font-size: 8pt;
  2278. margin-left: 20px;
  2279. }
  2280. .calcFullSyntaxContent{
  2281. font-weight: normal;
  2282. font-size: 8pt;
  2283. }
  2284. .detailErrMssgDiv
  2285. {
  2286. width: 80%;
  2287. height: 100px;
  2288. overflow: auto;
  2289. border: 1px solid #000000;
  2290. border-bottom: 1px solid #cccccc;
  2291. border-right: 1px solid #cccccc;
  2292. color: #000000;
  2293. background-color: #FFFFFF;
  2294. padding: 2px;
  2295. margin: 0px;
  2296. }
  2297. /**********************************************
  2298. * End Z - indexes - Please do not add anything after this
  2299. ***********************************************/