style.css

body {
 padding-top: 10px;
}

.popover {
 width: 600px;
}

.table td {
 padding-top: 3px;
 padding-bottom: 3px;
}

.table-condensed td {
 padding-top: 0;
 padding-bottom: 0;
}

.table .progress {
 margin-bottom: inherit;
}

.table-borderless th, .table-borderless td {
 border: 0 !important;
}

.table tbody td.success, li.success, span.success {
 background-color: #dff0d8;
}

.table tbody tr.danger, .table tbody td.danger, li.danger, span.danger {
 background-color: #f2dede;
}

.table tbody td.warning, li.warning, span.warning {
 background-color: #fcf8e3;
}

.table tbody td.info {
 background-color: #d9edf7;
}

td.big {
 width: 100px;
}

td.small {
}

td.codeLine {
 font-family: monospace;
 white-space: pre;
}

td span.comment {
 color: #888a85;
}

td span.default {
 color: #2e3436;
}

td span.html {
 color: #888a85;
}

td span.keyword {
 color: #2e3436;
 font-weight: bold;
}

pre span.string {
 color: #2e3436;
}

span.success, span.warning, span.danger {
 margin-right: 2px;
 padding-left: 10px;
 padding-right: 10px;
 text-align: center;
}

#classCoverageDistribution, #classComplexity {
 height: 200px;
 width: 475px;
}

File

drupal/core/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/css/style.css
View source
  1. body {
  2. padding-top: 10px;
  3. }
  4. .popover {
  5. width: 600px;
  6. }
  7. .table td {
  8. padding-top: 3px;
  9. padding-bottom: 3px;
  10. }
  11. .table-condensed td {
  12. padding-top: 0;
  13. padding-bottom: 0;
  14. }
  15. .table .progress {
  16. margin-bottom: inherit;
  17. }
  18. .table-borderless th, .table-borderless td {
  19. border: 0 !important;
  20. }
  21. .table tbody td.success, li.success, span.success {
  22. background-color: #dff0d8;
  23. }
  24. .table tbody tr.danger, .table tbody td.danger, li.danger, span.danger {
  25. background-color: #f2dede;
  26. }
  27. .table tbody td.warning, li.warning, span.warning {
  28. background-color: #fcf8e3;
  29. }
  30. .table tbody td.info {
  31. background-color: #d9edf7;
  32. }
  33. td.big {
  34. width: 100px;
  35. }
  36. td.small {
  37. }
  38. td.codeLine {
  39. font-family: monospace;
  40. white-space: pre;
  41. }
  42. td span.comment {
  43. color: #888a85;
  44. }
  45. td span.default {
  46. color: #2e3436;
  47. }
  48. td span.html {
  49. color: #888a85;
  50. }
  51. td span.keyword {
  52. color: #2e3436;
  53. font-weight: bold;
  54. }
  55. pre span.string {
  56. color: #2e3436;
  57. }
  58. span.success, span.warning, span.danger {
  59. margin-right: 2px;
  60. padding-left: 10px;
  61. padding-right: 10px;
  62. text-align: center;
  63. }
  64. #classCoverageDistribution, #classComplexity {
  65. height: 200px;
  66. width: 475px;
  67. }