hal_standards_mode.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. HTML,
  2. BODY
  3. {
  4. height: 100%;
  5. width: 100%;
  6. margin: 0;
  7. padding: 0;
  8. }
  9. *
  10. {
  11. box-sizing: border-box;
  12. }
  13. IMG
  14. {
  15. box-sizing: content-box;
  16. padding: 0px !important;
  17. }
  18. TABLE.clsCenteredTable
  19. {
  20. margin: 0px auto 0px auto;
  21. text-align: left;
  22. }
  23. TABLE.clsRightAlignedTable
  24. {
  25. margin: 0px 0px 0px auto;
  26. text-align: left;
  27. }
  28. DIV.clsCenteredDiv
  29. {
  30. margin-left: auto !important;
  31. margin-right: auto !important;
  32. }
  33. DIV.clsRightAlignedDiv
  34. {
  35. margin-left: auto !important;
  36. }
  37. DIV.clsExpandCollapseTop_normal,
  38. DIV.clsExpandCollapseTop_hover,
  39. DIV.clsExpandCollapseBottom_normal,
  40. DIV.clsExpandCollapseBottom_hover
  41. {
  42. margin: 0px auto 0px auto;
  43. }
  44. IMG.clsCursorFaded
  45. {
  46. opacity: 0.5;
  47. }
  48. DIV.clsLightbox
  49. {
  50. opacity: 0.5;
  51. }
  52. TABLE
  53. {
  54. empty-cells: hide;
  55. }
  56. *[HAL_disabled="true"],
  57. *[HAL_disabled="true"] *
  58. {
  59. color: graytext !important;
  60. fill: graytext !important;
  61. }
  62. DIV.clsSliderTrack
  63. {
  64. -ms-touch-action: none;
  65. }
  66. DIV.clsSliderTrack
  67. {
  68. border-radius: 3px 3px 3px 3px;
  69. }
  70. DIV.clsSliderHandle,
  71. DIV.clsSliderHandle_hover
  72. {
  73. border-radius: 2px 2px 2px 2px;
  74. box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  75. }
  76. DIV.clsSliderLabel
  77. {
  78. text-shadow: 0px 1px 1px #CCCCCC;
  79. }
  80. DIV.clsSliderHandleTooltip
  81. {
  82. border-radius: 2px 2px 2px 2px;
  83. text-shadow: 0px 1px 1px #CCCCCC;
  84. }
  85. TD.clsModalDlgResizer
  86. {
  87. text-align: right;
  88. }
  89. DIV.clsDlgResizeHandle
  90. {
  91. float: right;
  92. }
  93. BUTTON.clsDlgButton,
  94. BUTTON.clsDlgButton_hover
  95. {
  96. min-width: 75px;
  97. }
  98. INPUT.clsDialogRadioButton,
  99. INPUT.clsDialogCheckbox
  100. {
  101. vertical-align: middle;
  102. }
  103. *[blkTblAgn*='center']
  104. {
  105. margin-left: auto !important;
  106. margin-right: auto !important;
  107. }
  108. *[blkTblAgn*='right']
  109. {
  110. margin-left: auto !important;
  111. }
  112. TABLE.clsComboBox
  113. {
  114. text-align: left;
  115. }
  116. .clsSwitch > INPUT
  117. {
  118. position: absolute;
  119. opacity: 0;
  120. }
  121. .clsSwitch > LABEL
  122. {
  123. display: block;
  124. position: relative;
  125. cursor: pointer;
  126. width: 106px;
  127. height: 38px;
  128. background-color: #CCCCCC;
  129. color: #9799B4;
  130. transition: background 0.3s;
  131. font-size: 11pt;
  132. }
  133. .clsSwitch > LABEL:disabled
  134. {
  135. background-color: #FAFAFB;
  136. }
  137. .clsSwitch > LABEL:before,
  138. .clsSwitch > LABEL:after
  139. {
  140. display: block;
  141. position: absolute;
  142. top: 0px;
  143. left: 0px;
  144. bottom: 0px;
  145. /* Off */
  146. content: "";
  147. }
  148. .clsSwitchRound > LABEL:before
  149. {
  150. right: 0px;
  151. }
  152. .clsSwitch > LABEL:after
  153. {
  154. content: "";
  155. width: 26px;
  156. width: auto;
  157. background-color: white;
  158. border: 1px solid #BABCBE;
  159. transition: margin 0.3s;
  160. }
  161. .clsSwitch > INPUT:checked + LABEL
  162. {
  163. background-color: #159AD6;
  164. color: #FDFFFE;
  165. }
  166. .clsSwitch > INPUT:checked + LABEL:after
  167. {
  168. margin-left: 20px;
  169. }
  170. .clsSwitch > INPUT:checked + LABEL:before
  171. {
  172. /* On */
  173. content: "";
  174. text-align: right;
  175. }