mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +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
65 lines
1.7 KiB
SCSS
65 lines
1.7 KiB
SCSS
@import './icon-definition/index';
|
|
|
|
%icon-definition.passing dt::before,
|
|
%composite-row-header .passing dd::before {
|
|
@extend %with-check-circle-fill-mask, %as-pseudo;
|
|
color: $green-500;
|
|
}
|
|
%icon-definition.warning dt::before,
|
|
%composite-row-header .warning dd::before {
|
|
@extend %with-alert-triangle-mask, %as-pseudo;
|
|
color: $orange-500;
|
|
}
|
|
%icon-definition.critical dt::before,
|
|
%composite-row-header .critical dd::before {
|
|
@extend %with-cancel-square-fill-mask, %as-pseudo;
|
|
color: $red-500;
|
|
}
|
|
%icon-definition.empty dt::before,
|
|
%composite-row-header .empty dd::before {
|
|
@extend %with-minus-square-fill-mask, %as-pseudo;
|
|
color: $gray-500;
|
|
}
|
|
|
|
%composite-row-header [rel='me'] dd::before {
|
|
@extend %with-check-circle-fill-mask, %as-pseudo;
|
|
color: $blue-500;
|
|
}
|
|
|
|
%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.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;
|
|
}
|