github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/ui/app/styles/charts.scss (about)

     1  @import './charts/distribution-bar';
     2  @import './charts/gauge-chart';
     3  @import './charts/line-chart';
     4  @import './charts/recommendation-chart';
     5  @import './charts/tooltip';
     6  @import './charts/colors';
     7  @import './charts/chart-annotation';
     8  @import './charts/topo-viz';
     9  @import './charts/topo-viz-node';
    10  
    11  .inline-chart {
    12    height: 1.5rem;
    13    display: flex;
    14    align-items: center;
    15  
    16    &.is-small {
    17      width: 50px;
    18    }
    19  }
    20  
    21  // Patterns are templates referenced by other SVG fill properties.
    22  // Move the pattern svgs out of sight.
    23  .svg-pattern {
    24    overflow: hidden;
    25    position: absolute;
    26    left: -100%;
    27  
    28    .das-gradient {
    29      --full-color: #{change-color($yellow-400, $alpha: 0.7)};
    30      --faint-color: #{change-color($yellow-400, $alpha: 0.1)};
    31    }
    32  }