funky-framadate-front/src/app/features/administration/stepper/stepper.component.scss

87 lines
1.3 KiB
SCSS
Raw Normal View History

2021-11-07 14:52:49 +01:00
@import '../../../../styles/variables';
2021-12-01 18:22:21 +01:00
@import '../../../../styles/dev-utilities/helpers';
2021-11-30 11:17:44 +01:00
#creation_stepper {
2021-12-01 18:22:21 +01:00
@extend .fixed-box;
background: $white;
height: 6em;
a {
@extend .clickable;
&:hover {
color: $secondary_color;
}
}
2021-12-01 18:22:21 +01:00
.columns,
.column {
padding-bottom: 0;
}
2021-11-30 11:17:44 +01:00
.step-bar-container {
margin: 0;
2021-11-30 11:17:44 +01:00
height: 0.6em;
display: inline-block;
min-width: 1px;
background: $d-grey !important;
width: 100%;
}
2021-11-30 11:17:44 +01:00
.step-bar-progress {
position: relative;
top: -0.5em;
left: 0;
height: 0.5em;
display: inline-block;
min-width: 1px;
background: $primary_color;
2021-11-16 16:23:32 +01:00
}
2021-11-30 11:17:44 +01:00
.shortcut {
padding: 1em;
margin: 1em;
display: inline-block;
text-align: center;
width: 4em;
&.is-active {
2021-11-17 15:16:47 +01:00
background: $font_color;
}
2021-11-30 11:17:44 +01:00
&.cancel-button {
background: $border-color;
margin-top: -0.5em;
&:hover {
background: $font_color;
}
}
2021-11-17 15:16:47 +01:00
}
2021-11-30 17:37:23 +01:00
2021-12-01 18:22:21 +01:00
.step-info {
padding: 0.85rem 0.85rem 2rem;
background: $white;
i {
margin-left: 1ch;
}
2021-12-01 18:22:21 +01:00
}
2021-11-30 17:37:23 +01:00
.step-title-poll {
font-size: 0.85rem;
color: $d-neutral;
2021-11-30 18:30:18 +01:00
margin-bottom: 0rem;
}
h2 {
margin-bottom: 0rem;
}
.step-counter-text {
font-weight: 600;
2021-11-30 17:37:23 +01:00
}
2021-12-06 12:13:47 +01:00
.cancel-button-reject,
.cancel-button-confirm {
display: block !important;
width: 100%;
color: white !important;
}
2021-11-16 16:23:32 +01:00
}