threads.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. */
  15. #content #threads .loader
  16. {
  17. background-position: 0 50%;
  18. padding-left: 21px;
  19. }
  20. #content #threads #thread-dump table
  21. {
  22. border-collapse: collapse;
  23. width: 100%;
  24. }
  25. #content #threads #thread-dump table .spacer,
  26. #content #threads #thread-dump tbody .state
  27. {
  28. background-color: #fff;
  29. }
  30. #content #threads #thread-dump table th,
  31. #content #threads #thread-dump table td
  32. {
  33. padding: 5px 3px;
  34. vertical-align: top;
  35. }
  36. #content #threads #thread-dump thead th
  37. {
  38. background-color: #c8c8c8;
  39. font-weight: bold;
  40. text-align: left;
  41. }
  42. #content #threads #thread-dump thead th.name
  43. {
  44. width: 85%;
  45. }
  46. #content #threads #thread-dump thead th.time
  47. {
  48. text-align: right;
  49. width: 15%;
  50. }
  51. #content #threads #thread-dump tbody .odd
  52. {
  53. background-color: #f0f0f0;
  54. }
  55. #content #threads #thread-dump tbody .RUNNABLE a
  56. {
  57. background-image: url( ../../img/ico/tick-circle.png );
  58. }
  59. #content #threads #thread-dump tbody .WAITING a,
  60. #content #threads #thread-dump tbody .TIMED_WAITING a
  61. {
  62. background-image: url( ../../img/ico/hourglass.png );
  63. }
  64. #content #threads #thread-dump tbody .WAITING.lock a,
  65. #content #threads #thread-dump tbody .TIMED_WAITING.lock a
  66. {
  67. background-image: url( ../../img/ico/hourglass--exclamation.png );
  68. }
  69. #content #threads #thread-dump tbody .name a
  70. {
  71. background-position: 0 50%;
  72. cursor: auto;
  73. display: block;
  74. padding-left: 21px;
  75. }
  76. #content #threads #thread-dump tbody .stacktrace .name a
  77. {
  78. cursor: pointer;
  79. }
  80. #content #threads #thread-dump tbody .stacktrace .name a span
  81. {
  82. background-image: url( ../../img/ico/chevron-small-expand.png );
  83. background-position: 100% 50%;
  84. padding-right: 21px;
  85. }
  86. #content #threads #thread-dump tbody .stacktrace.open .name a span
  87. {
  88. background-image: url( ../../img/ico/chevron-small.png );
  89. }
  90. #content #threads #thread-dump tbody .name p
  91. {
  92. background-image: url( ../../img/ico/arrow-000-small.png );
  93. background-position: 0 50%;
  94. color: #4D4D4D;
  95. font-size: 11px;
  96. margin-left: 21px;
  97. padding-left: 21px;
  98. }
  99. #content #threads #thread-dump tbody .name div
  100. {
  101. border-top: 1px solid #c0c0c0;
  102. margin-left: 21px;
  103. margin-top: 5px;
  104. padding-top: 5px;
  105. }
  106. #content #threads #thread-dump tbody .open .name div
  107. {
  108. display: block;
  109. }
  110. #content #threads #thread-dump tbody .name ul
  111. {
  112. list-style-type: disc;
  113. margin-left: 0.7em;
  114. padding-left: 0.7em;
  115. }
  116. #content #threads #thread-dump tbody .time
  117. {
  118. text-align: right;
  119. }
  120. #content #threads .controls
  121. {
  122. padding-top: 5px;
  123. padding-bottom: 5px;
  124. }
  125. #content #threads .controls a
  126. {
  127. background-image: url( ../../img/ico/chevron-small-expand.png );
  128. padding-left: 21px;
  129. }
  130. #content #threads.expanded .controls a
  131. {
  132. background-image: url( ../../img/ico/chevron-small.png );
  133. }