/testing/selenium-core/selenium.css

http://datanucleus-appengine.googlecode.com/ · CSS · 316 lines · 232 code · 61 blank · 23 comment · 0 complexity · b4c1e72db4f0a2cb91722b05c664c71e MD5 · raw file

  1. /*
  2. * Copyright 2005 ThoughtWorks, Inc
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /*---( Layout )---*/
  17. * {
  18. margin: 0px;
  19. padding: 0px;
  20. }
  21. body {
  22. overflow: auto;
  23. }
  24. td {
  25. position: static;
  26. }
  27. tr {
  28. vertical-align: top;
  29. }
  30. .layout {
  31. width: 100%;
  32. height: 100%;
  33. border-collapse: collapse;
  34. }
  35. .layout td {
  36. border: 0;
  37. }
  38. iframe {
  39. border: 0px;
  40. width: 100%;
  41. height: 100%;
  42. background: white;
  43. /* HBC - this particular property seems to be causing an issue in
  44. conjunction with the native Draw() method in Snapsie. I don't really
  45. see a visual difference from commenting this out, so I'm going ahead
  46. with it.
  47. overflow: auto; */
  48. }
  49. /*---( Style )---*/
  50. body, html {
  51. font-family: Verdana, Arial, sans-serif;
  52. }
  53. .selenium th, .selenium td {
  54. border: 1px solid #999;
  55. }
  56. .header {
  57. background: #ccc;
  58. padding: 0;
  59. font-size: 90%;
  60. }
  61. .remoterunner {
  62. font-size: 10pt;
  63. }
  64. .remoterunner fieldset {
  65. padding: 0.25em;
  66. }
  67. .remoterunner button, .remoterunner label {
  68. margin-right: 1em;
  69. }
  70. #controlPanel {
  71. padding: 0.5ex;
  72. background: #eee;
  73. overflow: auto;
  74. font-size: 75%;
  75. text-align: center;
  76. }
  77. #controlPanel fieldset {
  78. margin: 0.3ex;
  79. padding: 0.3ex;
  80. }
  81. #controlPanel fieldset legend {
  82. color: black;
  83. }
  84. #controlPanel button {
  85. margin: 0.5ex;
  86. }
  87. #imageButtonPanel button {
  88. width: 24px;
  89. height: 20px;
  90. background-color:white;
  91. background-repeat: no-repeat;
  92. background-position: center;
  93. border-style: solid;
  94. border-color: black;
  95. border-width: 1px;
  96. }
  97. #controlPanel #runSuite {
  98. width: 32px;
  99. background-image: url("icons/all.png");
  100. }
  101. #controlPanel #runSeleniumTest {
  102. width: 32px;
  103. background-image: url("icons/selected.png");
  104. }
  105. .cssPauseTest {
  106. background-image: url("icons/pause.png");
  107. }
  108. .cssPauseTest[disabled] {
  109. background-image: url("icons/pause_disabled.png");
  110. }
  111. .cssContinueTest {
  112. background-image: url("icons/continue.png");
  113. }
  114. .cssContinueTest[disabled] {
  115. background-image: url("icons/continue_disabled.png");
  116. }
  117. #controlPanel #stepTest {
  118. background-image: url("icons/step.png");
  119. }
  120. #controlPanel #stepTest[disabled] {
  121. background-image: url("icons/step_disabled.png");
  122. }
  123. #controlPanel table {
  124. font-size: 100%;
  125. }
  126. #controlPanel th, #controlPanel td {
  127. border: 0;
  128. }
  129. h1 {
  130. margin: 0.2ex;
  131. font-size: 130%;
  132. font-weight: bold;
  133. }
  134. h2 {
  135. margin: 0.2ex;
  136. font-size: 80%;
  137. font-weight: normal;
  138. }
  139. .selenium a {
  140. color: black;
  141. text-decoration: none;
  142. }
  143. .selenium a:hover {
  144. text-decoration: underline;
  145. }
  146. button, label {
  147. cursor: pointer;
  148. }
  149. #stats {
  150. margin: 0.5em auto 0.5em auto;
  151. }
  152. #stats th, #stats td {
  153. text-align: left;
  154. padding-left: 2px;
  155. }
  156. #stats th {
  157. text-decoration: underline;
  158. }
  159. #stats td.count {
  160. font-weight: bold;
  161. text-align: right;
  162. }
  163. #testRuns {
  164. color: green;
  165. }
  166. #testFailures {
  167. color: red;
  168. }
  169. #commandPasses {
  170. color: green;
  171. }
  172. #commandFailures {
  173. color: red;
  174. }
  175. #commandErrors {
  176. color: #f90;
  177. }
  178. /*---( Logging Console )---*/
  179. #logging-console {
  180. background: #fff;
  181. font-size: 75%;
  182. }
  183. #logging-console #banner {
  184. display: block;
  185. width: 100%;
  186. position: fixed;
  187. top: 0;
  188. background: #ddd;
  189. border-bottom: 1px solid #666;
  190. }
  191. #logging-console #logLevelChooser {
  192. float: right;
  193. margin: 3px;
  194. }
  195. #logging-console ul {
  196. list-style-type: none;
  197. margin: 0px;
  198. margin-top: 3em;
  199. padding-left: 5px;
  200. }
  201. #logging-console li {
  202. margin: 2px;
  203. border-top: 1px solid #ccc;
  204. }
  205. #logging-console li.error {
  206. font-weight: bold;
  207. color: red;
  208. }
  209. #logging-console li.warn {
  210. color: red;
  211. }
  212. #logging-console li.debug {
  213. color: green;
  214. }
  215. div.executionOptions {
  216. padding-left: 5em;
  217. }
  218. div.executionOptions label, div.executionOptions input {
  219. display: block;
  220. float: left;
  221. }
  222. div.executionOptions br {
  223. clear: left;
  224. }
  225. #speedSlider {
  226. text-align: left;
  227. margin: 0px auto;
  228. width: 260px;
  229. line-height: 0px;
  230. font-size: 0px;
  231. padding: 0px;
  232. }
  233. #speedSlider #speedTrack {
  234. background-color: #333;
  235. width: 260px;
  236. height: 2px;
  237. line-height: 2px;
  238. z-index: 1;
  239. border: 1px solid;
  240. border-color: #999 #ddd #ddd #999;
  241. cursor: pointer;
  242. }
  243. #speedSlider #speedHandle {
  244. width: 12px;
  245. top: -8px;
  246. background-color: #666;
  247. position: relative;
  248. margin: 0px;
  249. height: 8px;
  250. line-height: 8px;
  251. z-index: 1;
  252. border: 1px solid;
  253. border-color: #999 #333 #333 #999;
  254. cursor: pointer;
  255. }