cchl_prompt.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /*
  2. Licensed Materials - Property of IBM
  3. IBM Cognos Products: rs
  4. (C) Copyright IBM Corp. 2003, 2016
  5. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. .clsPromptSelectWithSearch .clsAdorment {
  8. border: 1px solid #4178BE;
  9. border-top-width: 0;
  10. }
  11. .clsPromptSelectWithSearch .clsInvalid .clsAdorment {
  12. border: 1px solid #D64427;
  13. border-top-width: 0;
  14. }
  15. .clsPromptSelectWithSearch .clsControlArea {
  16. display: -webkit-flex;
  17. -webkit-flex-direction: row;
  18. display: flex;
  19. flex-direction: row;
  20. }
  21. .clsPromptSelectWithSearch .clsControlArea .clsSelectWithSearch {
  22. min-height: initial !important;
  23. height: auto !important;
  24. -webkit-flex: 1;
  25. flex: 1;
  26. }
  27. .clsPromptSignon {
  28. margin-left: 5px;
  29. font-family: Arial, Helvetica, sans-serif;
  30. }
  31. .clsPromptSignon .clsBlock {
  32. margin-top: 10px;
  33. }
  34. .clsPromptSignon .clsBlock .clsTitle {
  35. font-weight: bold;
  36. color: #4178BE;
  37. }
  38. /* styles for prompt layout */
  39. .clsPromptComponent tr[prole="label"] {
  40. height: 20px;
  41. }
  42. .clsPromptComponent tr[prole="input"] {
  43. height: 20px;
  44. }
  45. .clsPromptComponent td[prole="input"] {
  46. min-width: 45px;
  47. }
  48. .clsPromptComponent td[prole="radio"] {
  49. vertical-align: top;
  50. padding: 0 8px;
  51. }
  52. .clsPromptComponent td[prole="spacer"] {
  53. width: 8px;
  54. }
  55. .clsPromptComponent td[prole="adornmentL"] {
  56. width: 18px;
  57. padding-right: 8px;
  58. }
  59. .clsPromptComponent td[prole="adornmentR"] {
  60. width: 18px;
  61. padding-left: 8px;
  62. }
  63. .clsPromptComponent td[prole="controlPanel"] {
  64. width: 50%;
  65. min-width: 150px;
  66. }
  67. .clsPromptComponent td[prole="choicePanel"] {
  68. width: 50%;
  69. min-width: 150px;
  70. }
  71. .clsPromptComponent div[prole="container"] {
  72. min-height: 150px;
  73. }
  74. .clsPromptComponent[specname] {
  75. width: 1px;
  76. height: 1px;
  77. min-width: 150px;
  78. }
  79. .clsPromptComponent button {
  80. width: 40px;
  81. height: 40px;
  82. padding: 0;
  83. margin: 0 8px;
  84. }
  85. .clsPromptComponent button > img {
  86. width: 24px;
  87. height: 24px;
  88. }
  89. .clsPromptComponent button > img[dir="rtl"] {
  90. transform: rotate(180deg);
  91. }
  92. /* styles for prompt */
  93. .pc {
  94. font-size: 14px;
  95. }
  96. .pl {
  97. font-size: 14px;
  98. text-decoration: underline;
  99. }
  100. .pt {
  101. font-size: 14px;
  102. padding: 0 8px;
  103. border: 1px solid #6d7777;
  104. min-height: 32px;
  105. }
  106. .pv {
  107. font-size: 14px;
  108. }
  109. .pv .clsListView {
  110. color: inherit;
  111. font-family: inherit;
  112. font-size: inherit;
  113. font-weight: inherit;
  114. font-style: inherit;
  115. text-decoration: inherit;
  116. }
  117. .pv .clsListView .clsDialogText {
  118. cursor: inherit;
  119. color: inherit;
  120. font-family: inherit;
  121. font-size: inherit;
  122. font-weight: inherit;
  123. font-style: inherit;
  124. text-decoration: inherit;
  125. }
  126. .clsPromptComponent .pt:focus {
  127. color: #6d7777;
  128. border: 1px solid #4178be;
  129. }
  130. .clsPromptComponent .pt:hover {
  131. color: #6d7777;
  132. border: 1px solid #4178be;
  133. box-shadow: 0 0 5px #4178be;
  134. }
  135. .clsPromptComponent .pt:disabled {
  136. color: #aeb8b8;
  137. border: 1px solid #aeb8b8;
  138. }
  139. .clsPromptComponent .pt::-ms-clear {
  140. display: none;
  141. }
  142. .clsPromptComponent .pl:hover {
  143. cursor: pointer;
  144. }
  145. .clsPromptComponent .pl:active {
  146. color: #264a60;
  147. }
  148. .clsPromptComponent .pv .clsListItem_normal,
  149. .clsPromptComponent .pv .clsListItem_hover,
  150. .clsPromptComponent .pv .clsListItem_selected {
  151. color: inherit;
  152. min-height: 32px;
  153. }
  154. .clsPromptComponent div[prole="container"] > .clsListView {
  155. border: 1px solid #6d7777;
  156. }
  157. .clsPromptComponent div[prole="container"] > .clsListView:focus {
  158. border: 1px solid #4178be;
  159. }
  160. .clsPromptComponent div[prole="container"] > .clsListView:hover {
  161. border: 1px solid #4178be;
  162. box-shadow: 0 0 5px #4178be;
  163. }
  164. .clsPromptComponent.clsParseError .pt,
  165. .clsPromptComponent.clsParseError div[prole="container"] > .clsListView {
  166. border: 1px solid #d64427;
  167. }
  168. .clsPromptComponent button[disabled] {
  169. opacity: 0.5;
  170. }
  171. .clsPromptComponent label input[type=radio] {
  172. display: none;
  173. }
  174. .clsPromptComponent label input[type=radio] + span {
  175. display: inline-block;
  176. position: relative;
  177. padding-left: 14px;
  178. }
  179. .clsPromptComponent label input[type=radio] + span::before {
  180. content: "";
  181. position: absolute;
  182. box-sizing: border-box;
  183. top: 50%;
  184. left: 0;
  185. width: 14px;
  186. height: 14px;
  187. -webkit-transform: translate(0, -50%);
  188. transform: translate(0, -50%);
  189. background-color: inherit;
  190. border: 1px solid #ffffff;
  191. border-radius: 7px;
  192. box-shadow: 0 0 0 1px #6d7777;
  193. }
  194. .clsPromptComponent label input[type=radio] + span:hover::before {
  195. box-shadow: 0 0 5px #4178be;
  196. }
  197. .clsPromptComponent label input[type=radio]:checked + span::before {
  198. background-color: #4178be;
  199. }