config.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. /* stylelint-disable selector-class-pattern */
  2. .env-check {
  3. font-size: 90%;
  4. margin: 1em 0 1em 2.5em;
  5. }
  6. .config-section {
  7. margin-top: 2em;
  8. }
  9. .config-block {
  10. margin-top: 2em;
  11. display: block;
  12. }
  13. .config-block-label {
  14. display: block;
  15. margin-bottom: 0.2em;
  16. }
  17. .config-block-label label,
  18. .config-label {
  19. font-weight: bold;
  20. padding-right: 0.5em;
  21. padding-top: 0.2em;
  22. }
  23. .config-block-elements {
  24. margin-left: 2em;
  25. }
  26. .config-block-elements li {
  27. list-style: none;
  28. }
  29. .config-input {
  30. clear: left;
  31. zoom: 100%; /* IE hack */
  32. }
  33. .config-page-wrapper {
  34. padding: 0.5em;
  35. }
  36. .config-page-list {
  37. float: right;
  38. width: 12em;
  39. border: 1px solid #aaa;
  40. background: #fff;
  41. padding: 0.5em;
  42. /* 3em left margin to leave space between the list and the page-content */
  43. margin: 0.5em 0.5em 0.5em 3.5em;
  44. }
  45. .config-page {
  46. padding: 0.5em 0.5em 0.5em 2em;
  47. margin: 0.5em 0.5em 0.5em 0.5em;
  48. background: #eee;
  49. }
  50. .config-submit {
  51. clear: left;
  52. text-align: center;
  53. padding: 1em;
  54. }
  55. .config-submit input {
  56. margin-left: 0.5em;
  57. margin-right: 0.5em;
  58. }
  59. .config-page-disabled {
  60. color: #aaa;
  61. }
  62. .config-error-box {
  63. border: 2px solid #f00;
  64. }
  65. .config-page-current {
  66. font-weight: bold;
  67. }
  68. .config-message {
  69. display: list-item;
  70. line-height: 1.5em;
  71. /* @embed */
  72. list-style-image: url( images/bullet.gif );
  73. list-style-type: square;
  74. }
  75. .config-input-text {
  76. width: 20em;
  77. margin-right: 1em;
  78. }
  79. .config-input-check {
  80. margin-left: 10em;
  81. }
  82. .config-skins-item {
  83. /* Clearfix */
  84. clear: left;
  85. overflow: hidden;
  86. }
  87. .config-skins-item .config-input-check {
  88. margin-left: 10em;
  89. width: 20em;
  90. float: left;
  91. }
  92. .config-skins-item .config-skins-use-as-default {
  93. float: left;
  94. }
  95. .error {
  96. color: #f00;
  97. background-color: #fff;
  98. font-weight: bold;
  99. left: 1em;
  100. font-size: 100%;
  101. }
  102. .config-settings-block {
  103. list-style-type: none;
  104. list-style-image: none;
  105. margin: 0;
  106. padding: 0;
  107. }
  108. .btn-install {
  109. font-weight: bold;
  110. font-size: 110%;
  111. padding: 0.2em 0.3em;
  112. }
  113. .success-message {
  114. font-weight: bold;
  115. font-size: 110%;
  116. color: #008000;
  117. }
  118. .config-cc-wrapper {
  119. clear: left;
  120. /* If you change this height, also change it in WebInstallerOptions::submitCC() */
  121. height: 54em;
  122. }
  123. .config-plainlink a {
  124. background: none !important; /* stylelint-disable-line declaration-no-important */
  125. padding: 0 !important; /* stylelint-disable-line declaration-no-important */
  126. }
  127. .config-download-link {
  128. font-size: 1.8em;
  129. margin-left: 2em;
  130. }
  131. .config-download-link a {
  132. background: url( images/download-32.png ) no-repeat center left;
  133. padding-left: 40px; /* 32 px for the image (above), plus some breathing room */
  134. height: 32px; /* provide enough vertical room for the image */
  135. display: inline-block; /* allow the height property (above) to work */
  136. line-height: 32px; /* center the text vertically */
  137. }
  138. #config-live-log {
  139. overflow: hidden;
  140. min-width: 20em;
  141. }
  142. /* Hide empty live-log textarea */
  143. #config-live-log textarea:empty {
  144. display: none;
  145. }
  146. .config-help-field-checkbox {
  147. display: none;
  148. }
  149. /* tooltip styles */
  150. .config-help-field-hint {
  151. margin-left: 2px;
  152. padding: 0 0 0 15px;
  153. /* @embed */
  154. background-image: url( images/help-question.gif );
  155. background-position: left center;
  156. background-repeat: no-repeat;
  157. cursor: pointer;
  158. font-size: 0.8em;
  159. text-decoration: underline;
  160. color: #0645ad;
  161. }
  162. .config-help-field-hint:hover {
  163. /* @embed */
  164. background-image: url( images/help-question-hover.gif );
  165. }
  166. .config-help-field-data {
  167. display: block;
  168. background-color: #d6f3ff;
  169. padding: 5px 8px 4px 8px;
  170. border: 1px solid #5dc9f4;
  171. margin-left: 20px;
  172. }
  173. .config-help-field-checkbox:not( :checked ) ~ .config-help-field-data {
  174. display: none;
  175. }
  176. #p-logo a {
  177. background-image: url( images/installer-logo.png );
  178. }