github.com/billybanfield/evergreen@v0.0.0-20170525200750-eeee692790f7/public/static/less/patchsummary.less (about)

     1  .patch {
     2    overflow: auto;
     3    
     4    .additions {
     5      font-weight: bold;
     6      color: green;
     7    }
     8    .deletions {
     9      font-weight: bold;
    10      color: red;
    11    }
    12    .base-link {
    13      font-family: monospace;
    14    }
    15    .title {
    16      font-weight: bold;
    17      font-size: 20px;
    18    }
    19    .gravatar-mini {
    20      margin-bottom: 2px;
    21      border-radius: 3px;
    22      width: 16px;
    23      height: 16px;
    24    }
    25    .toggle-message {
    26      margin-left: 10px;
    27    }
    28    .description-box {
    29      margin-top: 8px;
    30      margin-left: 8px;
    31      
    32      p {
    33        font-weight: bold;
    34        font-size: 16px;
    35      }
    36    }
    37  }
    38  
    39  .patch-header {
    40    margin-bottom: 8px;
    41    font-weight: bold;
    42  }
    43  
    44  .patch-message {
    45    white-space: nowrap;
    46    text-overflow: ellipsis;
    47    display: block;
    48    font-weight: bold;
    49  }
    50  
    51  .patch-changes-line {
    52    font-size: 125%;
    53    margin: 15px 0;
    54  }
    55  
    56  .patch-diff-panel {
    57    max-height:600px;
    58    overflow-y:auto;
    59    overflow-x:none;
    60  
    61    tr {
    62      .extra-info {
    63        font-size: 10px;
    64        color: #777;
    65      }
    66      .diff-name {
    67        font-weight: bold;
    68        font-size: 14px;
    69      }
    70    }
    71    .diffbox {
    72      display: block;
    73      height: 16px;
    74      width: 26px;
    75      background-color: @default-bg-color;
    76    }
    77    .success, .pass {
    78      background-color: @successGreen !important;
    79    }
    80    .failed, .fail {
    81      background-color: @errorRed !important;
    82    }
    83    .system-failed {
    84      background-color: @sys-failure-bg-color !important;
    85    }
    86  
    87  }