mirror of
https://github.com/status-im/consul.git
synced 2025-02-04 18:03:39 +00:00
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
71 lines
1.9 KiB
SCSS
71 lines
1.9 KiB
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.popover-select {
|
|
@extend %popover-select;
|
|
}
|
|
.popover-menu .menu-panel {
|
|
position: absolute !important;
|
|
}
|
|
%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;
|
|
}
|
|
|
|
/* TODO: Consider moving these to their specific search bard componets or */
|
|
/* even their own search bar sub menu components */
|
|
%popover-select .value-passing button::before {
|
|
@extend %with-check-circle-fill-mask, %as-pseudo;
|
|
color: var(--token-color-foreground-success);
|
|
}
|
|
%popover-select .value-warning button::before {
|
|
@extend %with-alert-triangle-mask, %as-pseudo;
|
|
color: var(--token-color-foreground-warning);
|
|
}
|
|
%popover-select .value-critical button::before {
|
|
@extend %with-cancel-square-fill-mask, %as-pseudo;
|
|
color: var(--token-color-foreground-critical);
|
|
}
|
|
%popover-select .value-empty button::before {
|
|
@extend %with-minus-square-fill-mask, %as-pseudo;
|
|
color: var(--token-color-foreground-disabled);
|
|
}
|
|
%popover-select .value-unknown button::before {
|
|
@extend %with-help-circle-outline-mask, %as-pseudo;
|
|
color: var(--token-color-foreground-faint);
|
|
}
|
|
%popover-select.type-source li:not(.partition) button {
|
|
text-transform: capitalize;
|
|
}
|
|
%popover-select.type-source li.aws button {
|
|
text-transform: uppercase;
|
|
}
|
|
%popover-select.type-source li.partition button::before {
|
|
@extend %with-user-team-mask, %as-pseudo;
|
|
color: var(--token-color-foreground-faint);
|
|
}
|
|
%popover-select .jwt button::before {
|
|
@extend %with-logo-jwt-color-icon, %as-pseudo;
|
|
}
|
|
%popover-select .oidc button::before {
|
|
@extend %with-logo-oidc-color-icon, %as-pseudo;
|
|
}
|
|
/**/
|