pat_page_editor.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865
  1. .customControl,
  2. .HTMLItem,
  3. .richTextItem
  4. {
  5. text-decoration: none;
  6. font-weight: normal;
  7. font-style: normal;
  8. font-family: var(--F1);
  9. font-size: var(--CAPTION);
  10. }
  11. .customControl
  12. {
  13. background-color: rgba(255, 255, 255, 0.8);
  14. color: black;
  15. }
  16. .HTMLItem,
  17. .richTextItem
  18. {
  19. display: inline-block;
  20. background-color: var(--primary2);
  21. color: var(--ui-01);
  22. border: 1px solid var(--ui-01);
  23. padding: 2px;
  24. margin: 1px;
  25. }
  26. .repeater,
  27. .singleton
  28. {
  29. display: inline;
  30. border: none;
  31. }
  32. .TOC
  33. {
  34. width: 100%;
  35. }
  36. .hyperlink:not(.textItem)
  37. {
  38. border: none;
  39. color: var(--primary1);
  40. text-decoration: none;
  41. cursor: pointer;
  42. padding: 0;
  43. }
  44. .hyperlink:not(.textItem):hover
  45. {
  46. color: var(--primary2);
  47. text-decoration: underline;
  48. }
  49. TABLE.v2_commonAxis TD.chartNode
  50. {
  51. border: 1px solid var(--text-03);
  52. }
  53. .mapChart .defaultChartMeasure
  54. {
  55. border: 1px solid var(--B);
  56. }
  57. TABLE.pies,
  58. TABLE.pieSlices,
  59. TABLE.v2_pieSlices,
  60. TABLE.v2_paretoBars,
  61. TABLE.chartNodes,
  62. TABLE.gauges,
  63. TABLE.indicators,
  64. TABLE.chartNestedNodes,
  65. .marimekkoBars,
  66. .barimekkoBarClusters,
  67. .paretoBars,
  68. .paretoBarClusters,
  69. .commonClusters,
  70. .progressiveBars,
  71. .combinationChartTypes,
  72. .points,
  73. .pointClusters,
  74. .radialClusters,
  75. .winLossBars,
  76. .marimekkoBarClusters,
  77. .v2_chartMeasure,
  78. .v2_bubbleMeasure,
  79. .v2_category,
  80. .v2_series,
  81. .v2_commonAxis,
  82. .v2_defaultChartMeasure
  83. {
  84. border: 1px solid var(--text-03);
  85. border-collapse: collapse;
  86. }
  87. .commonClusters,
  88. .v2_defaultChartMeasure
  89. {
  90. background-color: var(--ui-01);
  91. }
  92. TABLE.line,
  93. TABLE.bar,
  94. TABLE.area
  95. {
  96. background-color: var(--ui-01);
  97. border-collapse: collapse;
  98. }
  99. TABLE.chartNodeMembers
  100. {
  101. border-collapse: collapse;
  102. }
  103. .pointXMeasure,
  104. .pointYMeasure,
  105. .angularMeasure,
  106. .radialMeasure,
  107. .targetMeasure,
  108. .toleranceMeasure,
  109. .bubbleMeasure,
  110. .pointZMeasure,
  111. .winLossChartMeasure,
  112. .defaultChartMeasure
  113. {
  114. font-family: var(--F1);
  115. border: 1px solid var(--text-03);
  116. border-collapse: collapse;
  117. }
  118. .defaultChartMeasure
  119. {
  120. background-color: var(--ui-01);
  121. }
  122. .chartNodeMember
  123. {
  124. padding: 1px;
  125. }
  126. .chartNodeMember,
  127. .chartLabel,
  128. .chartNode,
  129. .regionColorLegendTitle,
  130. .pointColorLegendTitle,
  131. .pointSizeLegendTitle
  132. {
  133. font-family: var(--F1);
  134. font-size: var(--BODY-S);
  135. font-weight: normal;
  136. font-style: normal;
  137. color: var(--text-01);
  138. }
  139. #idCaretDrop,
  140. #idDropRect
  141. {
  142. pointer-events: none;
  143. position: absolute;
  144. z-index: 99;
  145. }
  146. DIV.clsDropRect
  147. {
  148. border: 2px dashed var(--B);
  149. font-size: 2pt;
  150. }
  151. DIV.clsCaretReplace
  152. {
  153. padding: 2px;
  154. }
  155. DIV.clsCaretVerticalBar
  156. {
  157. margin-left: -5px;
  158. padding: 3px;
  159. width: 10px;
  160. border-left: 1px solid var(--B);
  161. border-right: 1px solid var(--B);
  162. background-color: var(--ui-01);
  163. }
  164. DIV.clsCaretHorizontalBar
  165. {
  166. margin-top: -5px;
  167. padding: 3px;
  168. height: 10px;
  169. border-top: 1px solid var(--B);
  170. border-bottom: 1px solid var(--B);
  171. background-color: var(--ui-01);
  172. }
  173. DIV.clsCaretVerticalSingleBar
  174. {
  175. margin-left: -2px;
  176. width: 4px;
  177. }
  178. DIV.clsCaretHorizontalSingleBar
  179. {
  180. margin-top: -2px;
  181. height: 4px;
  182. }
  183. DIV.clsCaretBlank
  184. {
  185. margin-top: -2px;
  186. height: 0;
  187. }
  188. .clsChartInstruction,
  189. .clsVizChartInstruction,
  190. .clsChartActiveDrop
  191. {
  192. font-family: var(--F1);
  193. font-size: var(--CAPTION);
  194. font-weight: normal;
  195. color: var(--text-03);
  196. }
  197. .clsEmptyChartText
  198. {
  199. font-family: var(--F1);
  200. font-size: var(--BODY-S);
  201. font-weight: normal;
  202. color: var(--B);
  203. cursor: default;
  204. white-space: nowrap;
  205. }
  206. .clsChartActiveDrop
  207. {
  208. background-color: var(--ui-01);
  209. border: 1px solid var(--text-03);
  210. }
  211. .clsChartItem
  212. {
  213. font-family: var(--F1);
  214. font-size: var(--BODY-S);
  215. font-weight: normal;
  216. font-style: normal;
  217. color: var(--text-01);
  218. }
  219. .clsVizChartItem
  220. {
  221. font-family: var(--F1);
  222. font-size: var(--BODY-S);
  223. font-weight: normal;
  224. font-style: normal;
  225. color: var(--B);
  226. }
  227. DIV.clsVizChartItem
  228. {
  229. color: var(--primary1);
  230. }
  231. DIV.clsCircularMenuInsert
  232. {
  233. display: inline-block;
  234. height: 32px;
  235. width: 32px;
  236. cursor: pointer;
  237. fill: var(--text-03);
  238. color: var(--text-03);
  239. }
  240. svg.clsCircularMenuInsertSvg
  241. {
  242. pointer-events: none;
  243. width: 32px;
  244. height: 32px;
  245. }
  246. DIV.clsCircularMenuInsert:hover
  247. {
  248. fill: var(--primary1);
  249. color: var(--primary1);
  250. }
  251. .clsDropAssistant
  252. {
  253. position: absolute;
  254. pointer-events: none;
  255. }
  256. .clsDropAssistant > div
  257. {
  258. position: relative;
  259. height: 100%;
  260. width: 100%;
  261. }
  262. .clsDragSelectorHotSpot
  263. {
  264. position: absolute;
  265. pointer-events: all;
  266. z-index: 2000;
  267. background-color: transparent;
  268. }
  269. .clsDragSelectorTopHotSpot,
  270. .clsDragSelectorBottomHotSpot
  271. {
  272. width: calc(100%);
  273. }
  274. .clsDragSelectorTopHotSpot > div,
  275. .clsDragSelectorBottomHotSpot > div
  276. {
  277. height: 10px;
  278. }
  279. .clsDragSelectorLeftHotSpot,
  280. .clsDragSelectorRightHotSpot
  281. {
  282. top: 0;
  283. bottom: 0;
  284. }
  285. .clsDragSelectorLeftHotSpot > div,
  286. .clsDragSelectorRightHotSpot > div
  287. {
  288. display: inline-block;
  289. width: 10px;
  290. height: 100%;
  291. }
  292. .clsDragSelectorBottomHotSpot
  293. {
  294. bottom: 0;
  295. }
  296. .clsDragSelectorRightHotSpot
  297. {
  298. right: 0;
  299. }
  300. #idDropRect.clsDynamicDropTarget
  301. {
  302. pointer-events: none;
  303. border: none;
  304. }
  305. #idWorkareaPane[_pfk="true"] .clsGripper
  306. {
  307. display: none;
  308. }
  309. .clsGripperSelection
  310. {
  311. box-shadow: 0 0 0 3px var(--primary1-a80);
  312. outline: none !important;
  313. }
  314. .clsGripper
  315. {
  316. position: absolute;
  317. width: 8px;
  318. height: 8px;
  319. border: 1px solid var(--primary1-a80);
  320. background-color: var(--ui-01);
  321. z-index: 2;
  322. }
  323. .clsGripper.clsBottom
  324. {
  325. bottom: -6px;
  326. left: calc(50% - 4px);
  327. }
  328. .clsGripper.clsTop
  329. {
  330. top: -6px;
  331. left: calc(50% - 4px);
  332. }
  333. .clsGripper.clsBottom,
  334. .clsGripper.clsTop
  335. {
  336. cursor: ns-resize;
  337. }
  338. .clsGripper.clsLeft
  339. {
  340. top: calc(50% - 4px);
  341. left: -6px;
  342. }
  343. .clsGripper.clsRight
  344. {
  345. top: calc(50% - 4px);
  346. right: -6px;
  347. }
  348. .clsGripper.clsRight:hover,
  349. .clsGripper.clsLeft:hover
  350. {
  351. cursor: ew-resize;
  352. }
  353. .clsResizeDiv
  354. {
  355. position: absolute;
  356. display: none;
  357. justify-content: center;
  358. flex-direction: column;
  359. top: -1px;
  360. z-index: 200;
  361. outline: 3px solid var(--primary1-a80);
  362. }
  363. .clsResizeHorizontalIndicator,
  364. .clsResizeVerticalIndicator
  365. {
  366. display: flex;
  367. align-items: center;
  368. overflow: hidden;
  369. }
  370. .clsResizeHorizontalIndicator
  371. {
  372. flex-direction: row;
  373. }
  374. .clsResizeVerticalIndicator
  375. {
  376. flex-direction: column;
  377. height: 100%;
  378. }
  379. .clsResizeHorizontalIndicator > .clsValue
  380. {
  381. padding: 0 4px;
  382. color: var(--secondary1);
  383. }
  384. .clsResizeVerticalIndicator > .clsValue
  385. {
  386. padding: 4px 0;
  387. color: var(--secondary1);
  388. }
  389. .clsResizeHorizontalIndicator > .clsArrow
  390. {
  391. position: absolute;
  392. top: calc(50% - 4px);
  393. }
  394. .clsResizeHorizontalIndicator > .clsArrow,
  395. .clsResizeVerticalIndicator > .clsArrow
  396. {
  397. border: solid var(--secondary1);
  398. border-width: 0 2px 2px 0;
  399. padding: 3px;
  400. }
  401. .clsResizeHorizontalIndicator > .clsArrow.first
  402. {
  403. left: 2px;
  404. transform: rotate(135deg);
  405. }
  406. .clsResizeVerticalIndicator > .clsArrow.first
  407. {
  408. transform: rotate(-135deg);
  409. margin-top: 2px;
  410. }
  411. .clsResizeHorizontalIndicator > .clsArrow.last
  412. {
  413. right: 2px;
  414. transform: rotate(-45deg);
  415. }
  416. .clsResizeVerticalIndicator > .clsArrow.last
  417. {
  418. transform: rotate(45deg);
  419. margin-bottom: 2px;
  420. }
  421. .clsLine
  422. {
  423. background-color: var(--secondary1);
  424. }
  425. .clsResizeHorizontalIndicator > .clsLine
  426. {
  427. height: 2px;
  428. width: calc(100%);
  429. }
  430. .clsResizeVerticalIndicator > .clsLine
  431. {
  432. width: 2px;
  433. height: 100%;
  434. }
  435. .clsResizeVerticalIndicator > .clsLine.first
  436. {
  437. margin-top: -6px;
  438. }
  439. .clsResizeVerticalIndicator > .clsLine.last
  440. {
  441. margin-bottom: -6px;
  442. }
  443. .clsResizedArea
  444. {
  445. position: absolute;
  446. z-index: 200;
  447. background-color: transparent;
  448. background-color: rgba(255, 255, 255, 0.8);
  449. }
  450. .clsDynamicDropResultPreview
  451. {
  452. position: absolute;
  453. pointer-events: none;
  454. opacity: 0;
  455. z-index: 300;
  456. background-color: transparent;
  457. }
  458. .clsDynamicDropResultPreview > table
  459. {
  460. background-color: var(--ui-01);
  461. }
  462. .clsDynamicDropTable > tbody > tr > td
  463. {
  464. outline: 2px dashed var(--RS-OUTLINE-SELECTION-COLOR);
  465. }
  466. .clsPreviewEnter
  467. {
  468. transition: opacity 200ms linear;
  469. }
  470. .clsPreviewExit
  471. {
  472. transition: opacity 300ms linear;
  473. }
  474. TABLE.listControl
  475. {
  476. border-collapse: collapse;
  477. }
  478. /* ListControl Design View (DV) */
  479. TBODY.clsListControlDVTTitleBody,
  480. TBODY.clsListControlDVSHdrTBody,
  481. TBODY.clsListControlDVSFtrTBody
  482. {
  483. border: 1px solid var(--G2);
  484. }
  485. TBODY.clsListControlDVListBody > TR > TD:first-of-type,
  486. TBODY.clsListControlDVTTitleBody > TR > TD:first-of-type,
  487. TBODY.clsListControlDVSHdrTBody > TR > TD:first-of-type,
  488. TBODY.clsListControlDVSFtrTBody > TR > TD:first-of-type
  489. {
  490. border-left-width: 0 !important;
  491. }
  492. TBODY.clsListControlDVListBody > TR > TD:last-of-type,
  493. TBODY.clsListControlDVTTitleBody > TR > TD:last-of-type,
  494. TBODY.clsListControlDVSHdrTBody > TR > TD:last-of-type,
  495. TBODY.clsListControlDVSFtrTBody > TR > TD:last-of-type
  496. {
  497. border-right-width: 0 !important;
  498. }
  499. TBODY.clsListControlDVListBody > TR:first-of-type > TD,
  500. TBODY.clsListControlDVTTitleBody > TR:first-of-type > TD,
  501. TBODY.clsListControlDVSHdrTBody > TR:first-of-type > TD,
  502. TBODY.clsListControlDVSFtrTBody > TR:first-of-type > TD
  503. {
  504. border-top-width: 0 !important;
  505. }
  506. TBODY.clsListControlDVListBody > TR:last-of-type > TD,
  507. TBODY.clsListControlDVTTitleBody > TR:last-of-type > TD,
  508. TBODY.clsListControlDVSHdrTBody > TR:last-of-type > TD,
  509. TBODY.clsListControlDVSFtrTBody > TR:last-of-type > TD
  510. {
  511. border-bottom-width: 0 !important;
  512. }
  513. TBODY.clsListControlDVSHdrTBody:not(:first-of-type),
  514. TBODY.clsListControlDVListBody:not(:first-of-type)
  515. {
  516. border-top-width: 0 !important;
  517. }
  518. TBODY.clsListControlDVListBody:not(:last-of-type)
  519. {
  520. border-bottom-width: 0 !important;
  521. }
  522. TBODY.clsListControlDVListBody > TR.clsListControlDVGHFirst > TD,
  523. TBODY.clsListControlDVListBody > TR.clsListControlDVGFFirst > TD
  524. {
  525. border-top-color: transparent !important;
  526. }
  527. TBODY.clsListControlDVListBody > TR.clsListControlDVGHLast > TD,
  528. TBODY.clsListControlDVListBody > TR.clsListControlDVFHLast > TD
  529. {
  530. border-bottom-color: transparent !important;
  531. }
  532. IMG.clsReportState,
  533. svg.clsReportState
  534. {
  535. height: 16px;
  536. width: 8px;
  537. vertical-align: middle;
  538. margin: 0 2px 0 1px;
  539. }
  540. svg.clsReportState
  541. {
  542. pointer-events: none;
  543. fill: var(--primary1);
  544. }
  545. IMG.clsReportState16x16,
  546. svg.clsReportState16x16
  547. {
  548. width: 16px;
  549. height: 16px;
  550. vertical-align: middle;
  551. margin: 0 2px 0 1px;
  552. }
  553. svg.clsReportState16x16
  554. {
  555. fill: var(--primary1);
  556. vertical-align: text-bottom;
  557. }
  558. DIV.clsDrillReportState
  559. {
  560. display: inline-block;
  561. }
  562. .clsChartAuthoringBorder
  563. {
  564. border: 1px solid var(--text-03);
  565. }
  566. .clsDropZone
  567. {
  568. border: 1px solid var(--text-03);
  569. background-color: var(--ui-01);
  570. }
  571. .clsAppListCustControlDropZoneIcon
  572. {
  573. padding-left: 4px;
  574. padding-right: 2px;
  575. border-right: 1px solid var(--text-03);
  576. background-color: var(--ui-03);
  577. }
  578. .clsVizDropZoneIcon
  579. {
  580. padding-left: 4px;
  581. padding-right: 13px;
  582. }
  583. .clsVizEdgesHeaderSpacerAfter
  584. {
  585. width: 100%;
  586. border-bottom: 1px solid var(--ui-01);
  587. }
  588. .clsVcDataSet
  589. {
  590. font-family: var(--F1);
  591. font-size: var(--BODY-S);
  592. font-weight: normal;
  593. font-style: normal;
  594. padding: 5px;
  595. min-width: 200px;
  596. }
  597. .clsVcDataSetHeader
  598. {
  599. color: var(--text-01);
  600. }
  601. .clsVcFieldHeading
  602. {
  603. padding-top: var(--16S);
  604. padding-bottom: 4px;
  605. color: var(--text-02);
  606. }
  607. .clsVcFieldMandatoryIndicator
  608. {
  609. color: var(--support-01);
  610. }
  611. TD.clsVcSlotImg
  612. {
  613. width: 24px;
  614. }
  615. IMG.clsVcSlotImg
  616. {
  617. width: 16px;
  618. height: 16px;
  619. }
  620. .clsVcSlotDataBox,
  621. .clsVcSlotDataBoxSecondary
  622. {
  623. border: 1px dashed var(--G2);
  624. padding: 5px;
  625. color: var(--text-01);
  626. }
  627. .clsVcSlotDataBoxSecondary
  628. {
  629. font-style: italic;
  630. color: var(--text-03);
  631. padding-left: 10px;
  632. }
  633. .clsVcSlotDataEmptyInstruction
  634. {
  635. color: var(--G2);
  636. }
  637. .clsVizEdgesHeader
  638. {
  639. font-family: var(--F1);
  640. font-size: var(--BODY-S);
  641. font-weight: normal;
  642. font-style: normal;
  643. color: var(--primary1);
  644. cursor: default;
  645. empty-cells: show;
  646. width: 100%;
  647. border-collapse: collapse;
  648. }
  649. .clsEmptyPreview
  650. {
  651. background-color: var(--ui-01);
  652. border: 1px solid var(--text-03);
  653. color: var(--text-03);
  654. font-size: var(--CAPTION);
  655. }
  656. .clsEmptyChartImg,
  657. .clsEmptyVizImg
  658. {
  659. opacity: 0.3;
  660. }
  661. .clsCustControlDataSet
  662. {
  663. border: 1px solid var(--text-03);
  664. padding: 8px;
  665. margin: 4px;
  666. display: inline-block;
  667. background-color: var(--ui-01);
  668. }
  669. .clsVizDataSet
  670. {
  671. padding: 8px 6px 8px 5px;
  672. margin: 4px;
  673. display: inline-block;
  674. background-color: var(--ui-01);
  675. }
  676. .clsVizFieldTable
  677. {
  678. height: 24px;
  679. }
  680. .clsVizField
  681. {
  682. height: 24px;
  683. vertical-align: middle;
  684. padding: 0 4px 0 0;
  685. }
  686. .clsVizExtraItem
  687. {
  688. /* background-color: var(--ui-03); */
  689. }
  690. .clsVizEdgeSeparator
  691. {
  692. width: 100%;
  693. height: 1px;
  694. background-color: var(--G2);
  695. overflow: hidden;
  696. font-size: 2pt;
  697. margin-top: 2px;
  698. }
  699. .clsVizNestingIndicator
  700. {
  701. vertical-align: top;
  702. width: 7px;
  703. }
  704. .clsVizFieldHeading
  705. {
  706. padding-top: 12px;
  707. padding-bottom: 4px;
  708. padding-left: 33px;
  709. color: var(--text-03);
  710. width: 100%;
  711. }
  712. .clsVizEdgesHeaderText
  713. {
  714. background-color: var(--ui-01);
  715. padding-top: 4px;
  716. border: 0px solid var(--ui-01);
  717. white-space: nowrap;
  718. }
  719. .clsCustControlDataSetHeader
  720. {
  721. background-color: var(--ui-03);
  722. border: 1px solid var(--text-03);
  723. padding: 2px 4px 2px 4px;
  724. margin: -9px -9px 4px -9px;
  725. }
  726. .clsVizDataSetHeader
  727. {
  728. background-color: var(--ui-01);
  729. border: 1px solid var(--ui-01);
  730. padding: 2px 10px;
  731. margin: -9px -9px 4px;
  732. }
  733. .clsVizEdgesHeaderSpacerBefore
  734. {
  735. border-bottom: 1px solid var(--text-03);
  736. }
  737. IMG.clsContainerSelect11x11
  738. {
  739. height: 11px;
  740. width: 11px;
  741. vertical-align: middle;
  742. }
  743. /*
  744. A workaround to fix percentage height applied on img tag does not work properly in chrome version 85.0.4183.102
  745. */
  746. IMG.clsPromptImg_st_m, IMG.clsPromptImg_st_s
  747. {
  748. min-width: 200px;
  749. width: 300px;
  750. min-height: 200px;
  751. height: 400px
  752. }
  753. IMG.clsPromptImg_tb_s
  754. {
  755. min-width: 157px;
  756. min-height: 24px;
  757. }
  758. IMG.clsPromptImg_tb_m
  759. {
  760. min-width: 402px;
  761. min-height: 156px;
  762. }
  763. IMG.clsPromptImg_tb_r
  764. {
  765. min-width: 173px;
  766. min-height: 101px;
  767. }
  768. IMG.clsPromptImg_tb_mr
  769. {
  770. min-width: 435px;
  771. min-height: 156px;
  772. }
  773. IMG.clsPromptImg_sv_s
  774. {
  775. min-width: 192px;
  776. min-height: 20px;
  777. }
  778. IMG.clsPromptImg_sv_r
  779. {
  780. min-width: 205px;
  781. min-height: 88px;
  782. }
  783. IMG.clsPromptImg_sv_ml
  784. {
  785. min-width: 148px;
  786. min-height: 80px;
  787. }
  788. IMG.clsPromptImg_sv_sl,
  789. IMG.clsPromptImg_sv_mc,
  790. IMG.clsPromptImg_sv_sr
  791. {
  792. min-width: 200px;
  793. min-height: 80px;
  794. }
  795. IMG.clsPromptImg_sv_mr
  796. {
  797. min-width: 407px;
  798. min-height: 160px;
  799. }