github.com/zppinho/prow@v0.0.0-20240510014325-1738badeb017/pkg/spyglass/lenses/junit/junit.css (about)

     1  #empty-junit-container {
     2    color: #e8e8e8;
     3    text-align: center;
     4    padding-bottom: 10px;
     5  }
     6  
     7  .hidden-tests {
     8    visibility: collapse;
     9    display: none;
    10  }
    11  
    12  .hidden {
    13    display: none;
    14  }
    15  
    16  .noselect {
    17    user-select: none;
    18  }
    19  .expander {
    20    font-weight:bold;
    21    font-size:1.5em;
    22  }
    23  
    24  .expander:last-of-type {
    25    text-align: right;
    26  }
    27  
    28  td.failed {
    29    color: #ff4040;
    30  }
    31  
    32  td.flaky {
    33    color: #dd99dd;
    34  }
    35  
    36  td.passed {
    37    color: #61ff61;
    38  }
    39  
    40  td.skipped {
    41    color: #ffe62d;
    42  }
    43  
    44  .failed-layout, .flaky-layout {
    45    width: 100%;
    46    border-collapse: collapse;
    47  }
    48  
    49  .failed-layout td, .flaky-layout td {
    50    border: 0;
    51    padding: 0;
    52  }
    53  
    54  .failure-name, .flaky-name {
    55    cursor: pointer;
    56  }
    57  
    58  td {
    59    white-space: normal !important;
    60  }
    61  
    62  /* We are engaged in a never-ending war of cascade escalation against MDL */
    63  #failed-tbody > tr:hover, #flaky-tbody > tr:hover {
    64    background-color: unset !important;
    65  }
    66  
    67  table.failed-layout tbody tr.failure-text:hover {
    68    background-color: unset !important;
    69  }
    70  
    71  table.flaky-layout tbody tr.flaky-text:hover {
    72    background-color: unset !important;
    73  }
    74  
    75  .failure-text div, .flaky-text div {
    76    padding-left: 20px;
    77    padding-right: 20px;
    78    white-space: pre-wrap;
    79    font-family: monospace;
    80    padding-bottom: 10px;
    81  }
    82  
    83  .failure-text td, .flaky-text td {
    84    padding-bottom: 15px;
    85  }
    86  
    87  .arrow-icon {
    88    vertical-align: middle;
    89  }