TargetProcess/tauCharts

View on GitHub
less/plugins/quick-filter.less

Summary

Maintainability
Test Coverage
@import "../variable";


.tau-chart {

  &__filter__wrap {
    padding: 20px 0 10px 10px;
    margin-right: 30px;
    width: 160px;
    box-sizing: border-box;

    &__title {
      margin: 0 0 10px 10px;
      text-transform: capitalize;
      font-weight: 600;
      font-size: @font-size-m;
    }

    & rect {
      fill: rgba(0, 0, 0, 0.2);
    }

    & .brush .overlay,
    & .brush .handle {
      opacity: 0;
    }

    & .brush .selection {
      shape-rendering: crispEdges;
      fill-opacity: 0.4;
      fill: #0074FF;
    }

    & text.date-label {
      text-anchor: middle;
      font-size: 12px;

      & .common {
        font-weight: 600;
      }
    }

    & .resize {

      & line {
        stroke: #000;
        stroke-width: 1px;
        shape-rendering: crispEdges;
      }

      &.e text {
        text-anchor: middle;
        font-size: 12px;
      }

      &.w text {
         text-anchor: middle;
         font-size: 12px;
      }

    }

  }

}