Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

style.css

body {
 font-family: sans-serif;
 font-size: 1em;
 font-kerning: normal;
 font-variant-ligatures: common-ligatures;
 text-rendering: optimizeLegibility;
 padding-top: 10px;
}

.popover {
 max-width: none;
}

.octicon {
 margin-right:.25em;
 vertical-align: baseline;
 width: 0.75em;
}

.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: {{success-low}};
}

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

.table tbody tr.covered-by-small-tests, li.covered-by-small-tests {
 background-color: {{success-high}};
}

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

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

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

td.big {
 vertical-align: middle;
 width: 117px;
}

td.small {
}

td.codeLine {
 font-family: "Source Code Pro", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
 white-space: pre-wrap;
}

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

#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:scroll;
 overflow-y:scroll;
}

table + .structure-heading {
 border-top: 1px solid lightgrey;
 padding-top: 0.5em;
}

.legend {
 font-weight: bold;
 margin-right: 2px;
 padding-left: 10px;
 padding-right: 10px;
 text-align: center;
}

.covered-by-small-tests {
 background-color: {{success-high}};
}

.covered-by-medium-tests {
 background-color: {{success-medium}};
}

.covered-by-large-tests {
 background-color: {{success-low}};
}

.not-covered {
 background-color: {{danger}};
}

.not-coverable {
 background-color: {{warning}};
}

File

vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/style.css

View source
  1. body {
  2. font-family: sans-serif;
  3. font-size: 1em;
  4. font-kerning: normal;
  5. font-variant-ligatures: common-ligatures;
  6. text-rendering: optimizeLegibility;
  7. padding-top: 10px;
  8. }
  9. .popover {
  10. max-width: none;
  11. }
  12. .octicon {
  13. margin-right:.25em;
  14. vertical-align: baseline;
  15. width: 0.75em;
  16. }
  17. .table-bordered>thead>tr>td {
  18. border-bottom-width: 1px;
  19. }
  20. .table tbody>tr>td, .table thead>tr>td {
  21. padding-top: 3px;
  22. padding-bottom: 3px;
  23. }
  24. .table-condensed tbody>tr>td {
  25. padding-top: 0;
  26. padding-bottom: 0;
  27. }
  28. .table .progress {
  29. margin-bottom: inherit;
  30. }
  31. .table-borderless th, .table-borderless td {
  32. border: 0 !important;
  33. }
  34. .table tbody tr.covered-by-large-tests, li.covered-by-large-tests, tr.success, td.success, li.success, span.success {
  35. background-color: {{success-low}};
  36. }
  37. .table tbody tr.covered-by-medium-tests, li.covered-by-medium-tests {
  38. background-color: {{success-medium}};
  39. }
  40. .table tbody tr.covered-by-small-tests, li.covered-by-small-tests {
  41. background-color: {{success-high}};
  42. }
  43. .table tbody tr.warning, .table tbody td.warning, li.warning, span.warning {
  44. background-color: {{warning}};
  45. }
  46. .table tbody tr.danger, .table tbody td.danger, li.danger, span.danger {
  47. background-color: {{danger}};
  48. }
  49. .table tbody td.info {
  50. background-color: #d9edf7;
  51. }
  52. td.big {
  53. vertical-align: middle;
  54. width: 117px;
  55. }
  56. td.small {
  57. }
  58. td.codeLine {
  59. font-family: "Source Code Pro", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  60. white-space: pre-wrap;
  61. }
  62. td span.comment {
  63. color: #888a85;
  64. }
  65. td span.default {
  66. color: #2e3436;
  67. }
  68. td span.html {
  69. color: #888a85;
  70. }
  71. td span.keyword {
  72. color: #2e3436;
  73. font-weight: bold;
  74. }
  75. pre span.string {
  76. color: #2e3436;
  77. }
  78. span.success, span.warning, span.danger {
  79. margin-right: 2px;
  80. padding-left: 10px;
  81. padding-right: 10px;
  82. text-align: center;
  83. }
  84. #toplink {
  85. position: fixed;
  86. left: 5px;
  87. bottom: 5px;
  88. outline: 0;
  89. }
  90. svg text {
  91. font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
  92. font-size: 11px;
  93. color: #666;
  94. fill: #666;
  95. }
  96. .scrollbox {
  97. height:245px;
  98. overflow-x:scroll;
  99. overflow-y:scroll;
  100. }
  101. table + .structure-heading {
  102. border-top: 1px solid lightgrey;
  103. padding-top: 0.5em;
  104. }
  105. .legend {
  106. font-weight: bold;
  107. margin-right: 2px;
  108. padding-left: 10px;
  109. padding-right: 10px;
  110. text-align: center;
  111. }
  112. .covered-by-small-tests {
  113. background-color: {{success-high}};
  114. }
  115. .covered-by-medium-tests {
  116. background-color: {{success-medium}};
  117. }
  118. .covered-by-large-tests {
  119. background-color: {{success-low}};
  120. }
  121. .not-covered {
  122. background-color: {{danger}};
  123. }
  124. .not-coverable {
  125. background-color: {{warning}};
  126. }

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal