multitestrunner.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Copyright 2008 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. /* Author: pupius@google.com (Daniel Pupius) */
  8. .goog-testrunner {
  9. background-color: #EEE;
  10. border: 1px solid #999;
  11. padding: 10px;
  12. padding-bottom: 25px;
  13. }
  14. .goog-testrunner-progress {
  15. width: auto;
  16. height: 20px;
  17. background-color: #FFF;
  18. border: 1px solid #999;
  19. }
  20. .goog-testrunner-progress table {
  21. width: 100%;
  22. height: 20px;
  23. border-collapse: collapse;
  24. }
  25. .goog-testrunner-buttons {
  26. margin-top: 7px;
  27. }
  28. .goog-testrunner-buttons button {
  29. width: 75px;
  30. }
  31. .goog-testrunner-log,
  32. .goog-testrunner-report,
  33. .goog-testrunner-stats {
  34. margin-top: 7px;
  35. width: auto;
  36. height: 400px;
  37. background-color: #FFF;
  38. border: 1px solid #999;
  39. font: normal medium monospace;
  40. padding: 5px;
  41. overflow: auto; /* Opera doesn't support overflow-y. */
  42. overflow-y: scroll;
  43. overflow-x: auto;
  44. }
  45. .goog-testrunner-report div {
  46. margin-bottom: 6px;
  47. border-bottom: 1px solid #999;
  48. }
  49. .goog-testrunner-stats table {
  50. margin-top: 20px;
  51. border-collapse: collapse;
  52. border: 1px solid #EEE;
  53. }
  54. .goog-testrunner-stats td,
  55. .goog-testrunner-stats th {
  56. padding: 2px 6px;
  57. border: 1px solid #F0F0F0;
  58. }
  59. .goog-testrunner-stats th {
  60. font-weight: bold;
  61. }
  62. .goog-testrunner-stats .center {
  63. text-align: center;
  64. }
  65. .goog-testrunner-progress-summary {
  66. font: bold small sans-serif;
  67. }
  68. .goog-testrunner iframe {
  69. position: absolute;
  70. left: -640px;
  71. top: -480px;
  72. width: 640px;
  73. height: 480px;
  74. margin: 0;
  75. border: 0;
  76. padding: 0;
  77. }
  78. .goog-testrunner-report-failure {
  79. color: #900;
  80. }
  81. .goog-testrunner-reporttab,
  82. .goog-testrunner-logtab,
  83. .goog-testrunner-statstab {
  84. float: left;
  85. width: 50px;
  86. height: 16px;
  87. text-align: center;
  88. font: normal small arial, helvetica, sans-serif;
  89. color: #666;
  90. background-color: #DDD;
  91. border: 1px solid #999;
  92. border-top: 0;
  93. cursor: pointer;
  94. }
  95. .goog-testrunner-reporttab,
  96. .goog-testrunner-logtab {
  97. border-right: 0;
  98. }
  99. .goog-testrunner-activetab {
  100. font-weight: bold;
  101. color: #000;
  102. background-color: #CCC;
  103. }