mirror of
https://github.com/status-im/consul.git
synced 2025-01-13 07:14:37 +00:00
6589cbbd0d
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
61 lines
1.5 KiB
SCSS
61 lines
1.5 KiB
SCSS
.popover-select {
|
|
@extend %popover-select;
|
|
}
|
|
%popover-select label {
|
|
height: 100%;
|
|
}
|
|
%popover-select label > * {
|
|
@extend %button;
|
|
padding: 0 8px !important;
|
|
height: 100% !important;
|
|
justify-content: space-between !important;
|
|
min-width: auto !important;
|
|
}
|
|
%popover-select label > *::after {
|
|
margin-left: 6px;
|
|
}
|
|
%popover-select.type-sort label > * {
|
|
@extend %sort-button;
|
|
}
|
|
%popover-select button::before {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
%popover-select .value-passing button::before {
|
|
@extend %with-check-circle-fill-mask, %as-pseudo;
|
|
color: $green-500;
|
|
}
|
|
%popover-select .value-warning button::before {
|
|
@extend %with-alert-triangle-mask, %as-pseudo;
|
|
color: $orange-500;
|
|
}
|
|
%popover-select .value-critical button::before {
|
|
@extend %with-cancel-square-fill-mask, %as-pseudo;
|
|
color: $red-500;
|
|
}
|
|
%popover-select .value-empty button::before {
|
|
@extend %with-minus-square-fill-mask, %as-pseudo;
|
|
color: $gray-400;
|
|
}
|
|
%popover-select.type-source li button {
|
|
text-transform: capitalize;
|
|
}
|
|
%popover-select.type-source li.aws button {
|
|
text-transform: uppercase;
|
|
}
|
|
%popover-select .aws button::before {
|
|
@extend %with-logo-aws-color-icon, %as-pseudo;
|
|
}
|
|
%popover-select .kubernetes button::before {
|
|
@extend %with-logo-kubernetes-color-icon, %as-pseudo;
|
|
}
|
|
%popover-select .consul button::before {
|
|
@extend %with-logo-consul-color-icon, %as-pseudo;
|
|
}
|
|
%popover-select .nomad button::before {
|
|
@extend %with-logo-nomad-color-icon, %as-pseudo;
|
|
}
|
|
%popover-select .terraform button::before {
|
|
@extend %with-logo-terraform-color-icon, %as-pseudo;
|
|
}
|