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

     1  .active-elt-colors {
     2      background-color: #5F923B;
     3      color: white;
     4  }
     5  
     6  .active-elt {
     7      .active-elt-colors;
     8  }
     9  
    10  .task-circle {
    11      stroke-width: 3;
    12      fill: #EFEFEF;
    13      cursor: pointer;
    14  }
    15  
    16  path { 
    17      stroke: #BBBBBB;
    18      stroke-width: 2;
    19      fill: none;
    20  }
    21  
    22  .axis .tick line{
    23      stroke: lightgrey;
    24      opacity: .5;
    25  }
    26  
    27  @task-timing-list-padding: 6px;
    28  
    29  .task-timing-list-container {
    30      height: 120px;
    31      overflow-y: scroll;
    32      border: 1px solid #ddd;
    33  }
    34  
    35  .task-timing-list {
    36      .no-decoration;
    37      a {
    38          color: black;
    39      }
    40      li {
    41          padding: @task-timing-list-padding;
    42          border-radius: 2px;
    43          -moz-border-radius: 2px;
    44          margin-bottom: 3px;
    45          &:hover {
    46              .active-elt-colors;
    47              &:not(.active-elt){
    48                  opacity: .5;
    49              }
    50              cursor: pointer;
    51          }
    52      }
    53  }
    54  
    55  .overlay {
    56  fill:none;
    57  stroke-width:1px;
    58  pointer-events: all;
    59  }
    60  .info-container {
    61      padding-top: 100px;
    62      padding-left:30px;
    63  }
    64  .axis line{
    65      stroke: black;
    66      shape-rendering: crispEdges;
    67  }