dashboard.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. body {
  2. font-family: Verdana, Helvetica, sans-serif;
  3. width: 600px;
  4. padding: 0px;
  5. color: #444;
  6. }
  7. h1 {
  8. background-color: #EEE;
  9. color: #444;
  10. font-size: 14pt;
  11. font-style: italic;
  12. margin: 0px;
  13. padding: 5px;
  14. }
  15. h2 {
  16. background-color: #AAA;
  17. color: white;
  18. font-weight: bold;
  19. font-size: 9pt;
  20. margin: 0px;
  21. padding: 5px;
  22. }
  23. ul {
  24. margin: 0px;
  25. padding: 0px;
  26. list-style: none;
  27. }
  28. li {
  29. padding: 5px;
  30. }
  31. table {
  32. border-spacing: 0px;
  33. }
  34. th {
  35. background-color: #AAA;
  36. color: white;
  37. padding: 5px;
  38. width: 100px;
  39. font-size: 9pt;
  40. }
  41. td {
  42. text-align: center;
  43. }
  44. tr:hover, li:hover {
  45. background-color: #EEE;
  46. }
  47. .status-group {
  48. font-size: 90%;
  49. }
  50. .status-bug {
  51. font-weight: bold;
  52. }
  53. .status-group ul {
  54. font-size: 90%;
  55. }
  56. .status-group ul li {
  57. padding: 2px 0 2px 7px;
  58. overflow: hidden;
  59. }
  60. .status-group ul li:hover {
  61. background: #ddd;
  62. }
  63. .status-date {
  64. color: #AAA;
  65. float: right;
  66. font-size: 8pt;
  67. }
  68. .status-cell {
  69. margin: 1px;
  70. padding: 1px 2px;
  71. font-size: 9pt;
  72. border: 1px solid transparent;
  73. }
  74. .status-cell:hover {
  75. border: 1px solid black;
  76. }
  77. .status-cell.pass {
  78. background-color: #8FDF5F;
  79. cursor: pointer;
  80. /* border: 1px solid #4F8530; */
  81. }
  82. .status-cell.fail {
  83. background-color: #E98080;
  84. cursor: pointer;
  85. /* border: 1px solid #A77272; */
  86. }
  87. .status-cell.pending {
  88. background-color: #FFFC6C;
  89. cursor: pointer;
  90. /* border: 1px solid #C5C56D; */
  91. }
  92. .status-cell.error {
  93. background-color: #E0B0FF;
  94. cursor: pointer;
  95. /* border: 1px solid #ACA0B3; */
  96. }
  97. .queue_bubble {
  98. border: 1px solid black;
  99. margin-bottom: 10px;
  100. border-radius: 10px;
  101. padding: 5px;
  102. }
  103. .queue_name {
  104. float:left;
  105. }
  106. .last_heard_from {
  107. float: right;
  108. }
  109. .status_text {
  110. clear: both;
  111. }
  112. .alive {
  113. background-color: #8FDF5F;
  114. }
  115. .behind {
  116. background-color: #FFFC6C;
  117. }
  118. .dead {
  119. background-color: #E98080;
  120. }