| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- .thresholds {
- margin-bottom: 20px;
- }
- .thresholds-row {
- display: flex;
- flex-direction: row;
- height: 62px;
- }
- .thresholds-row:first-child > .thresholds-row-color-indicator {
- border-top-left-radius: $border-radius;
- border-top-right-radius: $border-radius;
- overflow: hidden;
- }
- .thresholds-row:last-child > .thresholds-row-color-indicator {
- border-bottom-left-radius: $border-radius;
- border-bottom-right-radius: $border-radius;
- overflow: hidden;
- }
- .thresholds-row-add-button {
- @include buttonBackground($btn-success-bg, $btn-success-bg-hl, $text-color);
- align-self: center;
- margin-right: 5px;
- height: 24px;
- width: 24px;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- &:hover {
- color: $text-color-strong;
- }
- }
- .thresholds-row-color-indicator {
- width: 10px;
- }
- .thresholds-row-input {
- margin-top: 49px;
- margin-left: 2px;
- }
- .thresholds-row-input-inner {
- display: flex;
- justify-content: center;
- flex-direction: row;
- }
- .thresholds-row-input-inner > *:last-child {
- border-top-right-radius: $border-radius;
- border-bottom-right-radius: $border-radius;
- }
- .thresholds-row-input-inner-arrow {
- align-self: center;
- width: 0;
- height: 0;
- border-top: 6px solid transparent;
- border-bottom: 6px solid transparent;
- border-right: 6px solid $input-label-border-color;
- }
- .thresholds-row-input-inner-value > input {
- height: $gf-form-input-height;
- padding: $input-padding-y $input-padding-x;
- width: 150px;
- border-top: 1px solid $input-label-border-color;
- border-bottom: 1px solid $input-label-border-color;
- }
- .thresholds-row-input-inner-color {
- width: 42px;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: $input-bg;
- border: 1px solid $input-label-border-color;
- }
- .thresholds-row-input-inner-color-colorpicker {
- border-radius: 10px;
- overflow: hidden;
- display: flex;
- align-items: center;
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
- }
- .thresholds-row-input-inner-remove {
- display: flex;
- align-items: center;
- justify-content: center;
- height: $gf-form-input-height;
- padding: $input-padding-y $input-padding-x;
- width: 42px;
- background-color: $input-label-bg;
- border: 1px solid $input-label-border-color;
- cursor: pointer;
- }
|