You are here

style.css in Zircon Profile 8

body {
 padding-top: 10px;
}

.popover {
 max-width: none;
}

.glyphicon {
 margin-right:.25em;
}

.table-bordered>thead>tr>td {
 border-bottom-width: 1px;
}

.table tbody>tr>td, .table thead>tr>td {
 padding-top: 3px;
 padding-bottom: 3px;
}

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

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

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

.table tbody tr.covered-by-large-tests, li.covered-by-large-tests, tr.success, td.success, li.success, span.success {
 background-color: #dff0d8;
}

.table tbody tr.covered-by-medium-tests, li.covered-by-medium-tests {
 background-color: #c3e3b5;
}

.table tbody tr.covered-by-small-tests, li.covered-by-small-tests {
 background-color: #99cb84;
}

.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: 117px;
}

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;
}

#toplink {
 position: fixed;
 left: 5px;
 bottom: 5px;
 outline: 0;
}

svg text {
 font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
 font-size: 11px;
 color: #666;
 fill: #666;
}

.scrollbox {
 height:245px;
 overflow-x:hidden;
 overflow-y:scroll;
}

File

vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/css/style.css
View source
  1. body {
  2. padding-top: 10px;
  3. }
  4. .popover {
  5. max-width: none;
  6. }
  7. .glyphicon {
  8. margin-right:.25em;
  9. }
  10. .table-bordered>thead>tr>td {
  11. border-bottom-width: 1px;
  12. }
  13. .table tbody>tr>td, .table thead>tr>td {
  14. padding-top: 3px;
  15. padding-bottom: 3px;
  16. }
  17. .table-condensed tbody>tr>td {
  18. padding-top: 0;
  19. padding-bottom: 0;
  20. }
  21. .table .progress {
  22. margin-bottom: inherit;
  23. }
  24. .table-borderless th, .table-borderless td {
  25. border: 0 !important;
  26. }
  27. .table tbody tr.covered-by-large-tests, li.covered-by-large-tests, tr.success, td.success, li.success, span.success {
  28. background-color: #dff0d8;
  29. }
  30. .table tbody tr.covered-by-medium-tests, li.covered-by-medium-tests {
  31. background-color: #c3e3b5;
  32. }
  33. .table tbody tr.covered-by-small-tests, li.covered-by-small-tests {
  34. background-color: #99cb84;
  35. }
  36. .table tbody tr.danger, .table tbody td.danger, li.danger, span.danger {
  37. background-color: #f2dede;
  38. }
  39. .table tbody td.warning, li.warning, span.warning {
  40. background-color: #fcf8e3;
  41. }
  42. .table tbody td.info {
  43. background-color: #d9edf7;
  44. }
  45. td.big {
  46. width: 117px;
  47. }
  48. td.small {
  49. }
  50. td.codeLine {
  51. font-family: monospace;
  52. white-space: pre;
  53. }
  54. td span.comment {
  55. color: #888a85;
  56. }
  57. td span.default {
  58. color: #2e3436;
  59. }
  60. td span.html {
  61. color: #888a85;
  62. }
  63. td span.keyword {
  64. color: #2e3436;
  65. font-weight: bold;
  66. }
  67. pre span.string {
  68. color: #2e3436;
  69. }
  70. span.success, span.warning, span.danger {
  71. margin-right: 2px;
  72. padding-left: 10px;
  73. padding-right: 10px;
  74. text-align: center;
  75. }
  76. #classCoverageDistribution, #classComplexity {
  77. height: 200px;
  78. width: 475px;
  79. }
  80. #toplink {
  81. position: fixed;
  82. left: 5px;
  83. bottom: 5px;
  84. outline: 0;
  85. }
  86. svg text {
  87. font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
  88. font-size: 11px;
  89. color: #666;
  90. fill: #666;
  91. }
  92. .scrollbox {
  93. height:245px;
  94. overflow-x:hidden;
  95. overflow-y:scroll;
  96. }