mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2025-07-16 09:38:51 +02:00
110 lines
1.9 KiB
SCSS
110 lines
1.9 KiB
SCSS
// core
|
|
.p-carousel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.p-carousel-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: auto;
|
|
}
|
|
|
|
.p-carousel-prev,
|
|
.p-carousel-next {
|
|
align-self: center;
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.p-carousel-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.p-carousel-items-content {
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
.p-carousel-items-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.p-carousel-indicators {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.p-carousel-indicator > button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* Vertical */
|
|
.p-carousel-vertical .p-carousel-container {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.p-carousel-vertical .p-carousel-items-container {
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
/* Keyboard Support */
|
|
.p-items-hidden .p-carousel-item {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.p-items-hidden .p-carousel-item.p-carousel-item-active {
|
|
visibility: visible;
|
|
}
|
|
|
|
// theme
|
|
.p-carousel {
|
|
.p-carousel-content {
|
|
.p-carousel-prev,
|
|
.p-carousel-next {
|
|
@include action-icon();
|
|
margin: $inlineSpacing;
|
|
}
|
|
}
|
|
|
|
.p-carousel-indicators {
|
|
padding: $carouselIndicatorsPadding;
|
|
|
|
.p-carousel-indicator {
|
|
margin-right: $inlineSpacing;
|
|
margin-bottom: $inlineSpacing;
|
|
|
|
button {
|
|
background-color: $carouselIndicatorBg;
|
|
width: $carouselIndicatorWidth;
|
|
height: $carouselIndicatorHeight;
|
|
transition: $actionIconTransition;
|
|
border-radius: $carouselIndicatorBorderRadius;
|
|
|
|
&:hover {
|
|
background: $carouselIndicatorHoverBg;
|
|
}
|
|
}
|
|
|
|
&.p-highlight {
|
|
button {
|
|
background: $highlightBg;
|
|
color: $highlightTextColor;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|