mirror of
https://github.com/status-im/consul.git
synced 2025-02-21 09:58:26 +00:00
* 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
39 lines
901 B
SCSS
39 lines
901 B
SCSS
%confirmation-alert {
|
|
background-color: $white;
|
|
}
|
|
|
|
%confirmation-alert > div {
|
|
background-color: $yellow-050;
|
|
border-top-left-radius: $decor-radius-200;
|
|
border-top-right-radius: $decor-radius-200;
|
|
cursor: default;
|
|
}
|
|
%confirmation-alert > ul {
|
|
list-style: none;
|
|
}
|
|
%confirmation-alert > ul > li > * {
|
|
cursor: pointer;
|
|
}
|
|
%confirmation-alert > ul > li > *:hover,
|
|
%confirmation-alert > ul > li > *:focus {
|
|
background-color: $gray-100;
|
|
}
|
|
%confirmation-alert > ul > .dangerous > * {
|
|
@extend %frame-red-300;
|
|
}
|
|
%confirmation-alert > ul > .dangerous > *:hover,
|
|
%confirmation-alert > ul > .dangerous > *:focus {
|
|
@extend %frame-red-700;
|
|
}
|
|
%confirmation-alert.warning header {
|
|
color: $orange-700;
|
|
}
|
|
%confirmation-alert.warning header::before {
|
|
@extend %with-alert-triangle-mask, %as-pseudo;
|
|
background-color: $yellow-500;
|
|
margin-right: 5px;
|
|
}
|
|
%confirmation-alert p {
|
|
color: $black;
|
|
}
|