mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
41 lines
749 B
SCSS
41 lines
749 B
SCSS
// PersistentVolumes
|
|
$pv-bound: $colorOk;
|
|
$pv-available: $colorSuccess;
|
|
$pv-released: $colorWarning;
|
|
$pv-failed: $colorError;
|
|
|
|
// PersistentVolumeClaims
|
|
$pvc-bound: $colorOk;
|
|
$pvc-pending: $colorWarning;
|
|
$pvc-lost: $colorError;
|
|
|
|
// PersistentVolume Statuses
|
|
$pv-status-color-list: (
|
|
bound: $pv-bound,
|
|
available: $pv-available,
|
|
released: $pv-released,
|
|
failed: $pv-failed
|
|
);
|
|
|
|
$pvc-status-color-list: (
|
|
bound: $pvc-bound,
|
|
pending: $pvc-pending,
|
|
lost: $pvc-lost
|
|
);
|
|
|
|
@mixin pv-status-colors {
|
|
@each $condition, $color in $pv-status-color-list {
|
|
&.#{$condition} {
|
|
color: $color;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin pvc-status-colors {
|
|
@each $condition, $color in $pvc-status-color-list {
|
|
&.#{$condition} {
|
|
color: $color;
|
|
}
|
|
}
|
|
}
|