206 lines
6.4 KiB
SCSS
206 lines
6.4 KiB
SCSS
|
|
@use '@angular/cdk';
|
||
|
|
@use '../core/tokens/m2/mat/stepper' as tokens-mat-stepper;
|
||
|
|
@use '../core/tokens/token-utils';
|
||
|
|
@use '../core/style/layout-common';
|
||
|
|
@use './stepper-variables';
|
||
|
|
|
||
|
|
.mat-step-header {
|
||
|
|
overflow: hidden;
|
||
|
|
outline: none;
|
||
|
|
cursor: pointer;
|
||
|
|
position: relative;
|
||
|
|
box-sizing: content-box;
|
||
|
|
-webkit-tap-highlight-color: transparent;
|
||
|
|
|
||
|
|
// Stepper headers have the focus indicator as a descendant,
|
||
|
|
// because `::before` is used for other styling.
|
||
|
|
&:focus .mat-focus-indicator::before {
|
||
|
|
content: '';
|
||
|
|
}
|
||
|
|
|
||
|
|
&:hover[aria-disabled='true'] {
|
||
|
|
cursor: default;
|
||
|
|
}
|
||
|
|
|
||
|
|
@include token-utils.use-tokens(
|
||
|
|
tokens-mat-stepper.$prefix, tokens-mat-stepper.get-token-slots()) {
|
||
|
|
|
||
|
|
&:hover:not([aria-disabled]),
|
||
|
|
&:hover[aria-disabled='false'] {
|
||
|
|
@include token-utils.create-token-slot(background-color, header-hover-state-layer-color);
|
||
|
|
@include token-utils.create-token-slot(border-radius, header-hover-state-layer-shape);
|
||
|
|
}
|
||
|
|
|
||
|
|
&.cdk-keyboard-focused,
|
||
|
|
&.cdk-program-focused {
|
||
|
|
@include token-utils.create-token-slot(background-color, header-focus-state-layer-color);
|
||
|
|
@include token-utils.create-token-slot(border-radius, header-focus-state-layer-shape);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// On touch devices the :hover state will linger on the element after a tap.
|
||
|
|
// Reset it via `@media` after the declaration, because the media query isn't
|
||
|
|
// supported by all browsers yet.
|
||
|
|
@media (hover: none) {
|
||
|
|
&:hover {
|
||
|
|
background: none;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@include cdk.high-contrast {
|
||
|
|
outline: solid 1px;
|
||
|
|
|
||
|
|
&[aria-selected='true'] {
|
||
|
|
.mat-step-label {
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// When a step header is disabled in high contrast mode, set the text color to the disabled
|
||
|
|
// color, which is (unintuitively) named "GrayText".
|
||
|
|
&[aria-disabled='true'] {
|
||
|
|
outline-color: GrayText;
|
||
|
|
.mat-step-label,
|
||
|
|
.mat-step-icon,
|
||
|
|
.mat-step-optional {
|
||
|
|
color: GrayText;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-optional {
|
||
|
|
font-size: stepper-variables.$step-sub-label-font-size;
|
||
|
|
|
||
|
|
@include token-utils.use-tokens(
|
||
|
|
tokens-mat-stepper.$prefix, tokens-mat-stepper.get-token-slots()) {
|
||
|
|
@include token-utils.create-token-slot(color, header-optional-label-text-color);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-sub-label-error {
|
||
|
|
font-size: stepper-variables.$step-sub-label-font-size;
|
||
|
|
font-weight: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-icon {
|
||
|
|
border-radius: 50%;
|
||
|
|
height: stepper-variables.$label-header-height;
|
||
|
|
width: stepper-variables.$label-header-height;
|
||
|
|
flex-shrink: 0;
|
||
|
|
position: relative;
|
||
|
|
|
||
|
|
@include token-utils.use-tokens(
|
||
|
|
tokens-mat-stepper.$prefix, tokens-mat-stepper.get-token-slots()) {
|
||
|
|
@include token-utils.create-token-slot(color, header-icon-foreground-color);
|
||
|
|
@include token-utils.create-token-slot(background-color, header-icon-background-color);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-icon-content {
|
||
|
|
// Use absolute positioning to center the content, because it works better with text.
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
|
||
|
|
// We aren't using any flex features here, but using the `display: flex` prevents
|
||
|
|
// the browser from adding extra whitespace at the bottom of the element.
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-icon .mat-icon {
|
||
|
|
font-size: stepper-variables.$step-header-icon-size;
|
||
|
|
height: stepper-variables.$step-header-icon-size;
|
||
|
|
width: stepper-variables.$step-header-icon-size;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-icon-state-error {
|
||
|
|
@include token-utils.use-tokens(
|
||
|
|
tokens-mat-stepper.$prefix, tokens-mat-stepper.get-token-slots()) {
|
||
|
|
@include token-utils.create-token-slot(background-color,
|
||
|
|
header-error-state-icon-background-color);
|
||
|
|
@include token-utils.create-token-slot(color,
|
||
|
|
header-error-state-icon-foreground-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-icon {
|
||
|
|
font-size: stepper-variables.$step-header-icon-size + 8;
|
||
|
|
height: stepper-variables.$step-header-icon-size + 8;
|
||
|
|
width: stepper-variables.$step-header-icon-size + 8;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-label {
|
||
|
|
display: inline-block;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
min-width: stepper-variables.$label-min-width;
|
||
|
|
vertical-align: middle;
|
||
|
|
|
||
|
|
@include token-utils.use-tokens(
|
||
|
|
tokens-mat-stepper.$prefix, tokens-mat-stepper.get-token-slots()) {
|
||
|
|
@include token-utils.create-token-slot(font-family, header-label-text-font);
|
||
|
|
@include token-utils.create-token-slot(font-size, header-label-text-size);
|
||
|
|
@include token-utils.create-token-slot(font-weight, header-label-text-weight);
|
||
|
|
@include token-utils.create-token-slot(color, header-label-text-color);
|
||
|
|
|
||
|
|
&.mat-step-label-active {
|
||
|
|
@include token-utils.create-token-slot(color, header-selected-state-label-text-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
&.mat-step-label-error {
|
||
|
|
@include token-utils.create-token-slot(color, header-error-state-label-text-color);
|
||
|
|
@include token-utils.create-token-slot(font-size, header-error-state-label-text-size);
|
||
|
|
}
|
||
|
|
|
||
|
|
&.mat-step-label-selected {
|
||
|
|
@include token-utils.create-token-slot(font-size, header-selected-state-label-text-size);
|
||
|
|
@include token-utils.create-token-slot(font-weight, header-selected-state-label-text-weight);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-text-label {
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Increase specificity because ripple styles are part of the `mat-core` mixin and can
|
||
|
|
// potentially overwrite the absolute position of the container.
|
||
|
|
.mat-step-header .mat-step-header-ripple {
|
||
|
|
@include layout-common.fill;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-icon-selected {
|
||
|
|
@include token-utils.use-tokens(
|
||
|
|
tokens-mat-stepper.$prefix, tokens-mat-stepper.get-token-slots()) {
|
||
|
|
@include token-utils.create-token-slot(background-color,
|
||
|
|
header-selected-state-icon-background-color);
|
||
|
|
@include token-utils.create-token-slot(color,
|
||
|
|
header-selected-state-icon-foreground-color);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-icon-state-done {
|
||
|
|
@include token-utils.use-tokens(
|
||
|
|
tokens-mat-stepper.$prefix, tokens-mat-stepper.get-token-slots()) {
|
||
|
|
@include token-utils.create-token-slot(background-color,
|
||
|
|
header-done-state-icon-background-color);
|
||
|
|
@include token-utils.create-token-slot(color,
|
||
|
|
header-done-state-icon-foreground-color);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.mat-step-icon-state-edit {
|
||
|
|
@include token-utils.use-tokens(
|
||
|
|
tokens-mat-stepper.$prefix, tokens-mat-stepper.get-token-slots()) {
|
||
|
|
@include token-utils.create-token-slot(background-color,
|
||
|
|
header-edit-state-icon-background-color);
|
||
|
|
@include token-utils.create-token-slot(color,
|
||
|
|
header-edit-state-icon-foreground-color);
|
||
|
|
}
|
||
|
|
}
|