main.css 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /** Page structure **/
  2. /*------------------*/
  3. ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input {
  4. margin: 0; padding: 0;
  5. }
  6. body {
  7. font-size: 0.8em;
  8. font-family: arial,sans-serif;
  9. background: #fff;
  10. padding: 8px;
  11. }
  12. img {
  13. border: 0;
  14. }
  15. input {
  16. margin-bottom: 8px;
  17. padding: 4px;
  18. font-size: 16px;
  19. width: 100px;
  20. }
  21. input.sweety-text {
  22. border: 2px solid #000;
  23. width: 268px;
  24. background-color: #fff;
  25. }
  26. input.sweety-disabled {
  27. background: #eee;
  28. border: 2px solid #888;
  29. }
  30. input.sweety-waiting {
  31. background-image: url(../images/loading.gif);
  32. background-position: 98% 50%;
  33. background-repeat: no-repeat;
  34. }
  35. input.sweety-check {
  36. width: 12px !important;
  37. height: 12px !important;
  38. margin: 1px !important;
  39. padding: 1px !important;
  40. }
  41. h1 {
  42. margin-bottom: 1em;
  43. }
  44. div#sweety-page {
  45. width: 100%;
  46. }
  47. div#sweety-testlist {
  48. float: left;
  49. width: 400px;
  50. background: #aaa;
  51. }
  52. div#sweety-output {
  53. margin-left: 400px;
  54. }
  55. div#sweety-results {
  56. padding: 8px;
  57. font-size: 1.4em;
  58. }
  59. div#sweety-messages {
  60. margin-top: 8px;
  61. padding-top: 8px;
  62. border-top: 1px solid #777;
  63. }
  64. div#sweety-smoke-images {
  65. margin-top: 8px;
  66. padding-top: 8px;
  67. }
  68. div#sweety-smoke-images img {
  69. width: 150px;
  70. height: 120px;
  71. margin-right: 8px;
  72. }
  73. div.sweety-clear {
  74. width: 100%;
  75. clear: both;
  76. }
  77. /** Look and feel **/
  78. /*-----------------*/
  79. input#sweety-filter {
  80. visibility: hidden;
  81. }
  82. div#sweety-communication {
  83. float: right;
  84. display: none;
  85. }
  86. pre.sweety-raw-output {
  87. display: block;
  88. background: #ddd;
  89. padding: 4px;
  90. margin: 4px;
  91. }
  92. div.sweety-pad {
  93. padding: 8px;
  94. }
  95. div.sweety-message {
  96. padding: 4px;
  97. margin: 4px;
  98. }
  99. div.sweety-test-path {
  100. padding-left: 2em;
  101. font-style: italic;
  102. color: #777;
  103. }
  104. div.sweety-test {
  105. font-size: 12px;
  106. margin-bottom: 2px;
  107. margin-left: 12px;
  108. padding: 2px;
  109. }
  110. div.sweety-test img {
  111. float: right;
  112. margin-right: 4px;
  113. }
  114. div.sweety-package-header {
  115. font-size: 12px;
  116. margin-bottom: 2px;
  117. border-bottom: 2px solid #444;
  118. padding: 2px;
  119. }
  120. div.sweety-package-header span.sweety-test-package {
  121. font-weight: normal;
  122. }
  123. div.sweety-package-header img {
  124. margin: 0 2px;
  125. }
  126. span.sweety-pkg-count {
  127. display: block;
  128. float: right;
  129. padding-right: 2px;
  130. }
  131. img.sweety-group-icon {
  132. float: right;
  133. margin: 4px !important;
  134. }
  135. .sweety-pkg-idle {
  136. background: #cacaca;
  137. }
  138. span.sweety-test-package {
  139. display: block;
  140. font-size: 10px;
  141. padding-left: 1em;
  142. }
  143. .sweety-idle {
  144. background: #eee;
  145. }
  146. .sweety-running {
  147. background: #ffff33 !important;
  148. }
  149. .sweety-pass {
  150. background: #00aa00 !important;
  151. color: #fff;
  152. }
  153. .sweety-fail {
  154. background: #ee0000 !important;
  155. color: #fff;
  156. }
  157. .sweety-fail-text {
  158. color: #ee0000;
  159. }
  160. .sweety-skip-text {
  161. color: #4444dd;
  162. font-weight: bold;
  163. text-decoration: underline;
  164. }