consul/ui/packages/consul-ui/app/components/icon-definition/index.scss

83 lines
2.3 KiB
SCSS
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
[COMPLIANCE] License changes (#18443) * 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>
2023-08-11 13:12:13 +00:00
* SPDX-License-Identifier: BUSL-1.1
*/
%icon-definition {
@extend %horizontal-kv-list;
}
%icon-definition > dt > * {
display: none;
}
%icon-definition.passing dt::before,
%composite-row-header .passing dd::before {
@extend %with-check-circle-fill-mask, %as-pseudo;
color: var(--token-color-foreground-success);
}
%icon-definition.warning dt::before,
%composite-row-header .warning dd::before {
@extend %with-alert-triangle-mask, %as-pseudo;
color: var(--token-color-foreground-warning);
}
%icon-definition.critical dt::before,
%composite-row-header .critical dd::before {
@extend %with-cancel-square-fill-mask, %as-pseudo;
color: var(--token-color-foreground-critical);
}
%icon-definition.empty dt::before,
%composite-row-header .empty dd::before {
@extend %with-minus-square-fill-mask, %as-pseudo;
color: var(--token-color-foreground-faint);
}
%icon-definition.unknown dt::before,
%composite-row-header .unknown dd::before {
@extend %with-help-circle-outline-mask, %as-pseudo;
color: var(--token-color-foreground-faint);
}
%composite-row-header [rel='me'] dd::before {
@extend %with-check-circle-fill-mask, %as-pseudo;
color: var(--token-color-foreground-action);
}
%icon-definition.node dt::before {
@extend %with-git-commit-mask, %as-pseudo;
}
%icon-definition.address dt::before {
@extend %with-public-default-mask, %as-pseudo;
}
%icon-definition.socket dt::before {
2021-07-12 13:28:01 +00:00
@extend %with-socket-mask, %as-pseudo;
}
%icon-definition.mesh dt::before {
@extend %with-mesh-mask, %as-pseudo;
}
%icon-definition.nspace dt::before {
@extend %with-folder-outline-mask, %as-pseudo;
}
%icon-definition.datacenter dt::before {
@extend %with-user-organization-mask, %as-pseudo;
}
%icon-definition.path dt::before {
@extend %with-path-mask, %as-pseudo;
}
%icon-definition.port dt::before {
@extend %with-port-mask, %as-pseudo;
}
%icon-definition.protocol dt::before {
@extend %with-protocol-mask, %as-pseudo;
}
%icon-definition.lock-delay dt::before {
@extend %with-delay-mask, %as-pseudo;
}
%icon-definition.ttl dt::before {
@extend %with-history-mask, %as-pseudo;
}
%icon-definition.behavior dt::before {
@extend %with-info-circle-outline-mask, %as-pseudo;
}
%icon-definition.checks dt::before {
@extend %with-health-mask, %as-pseudo;
}