Sync styleguide 2026.05.18.1
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
/* ========================================================= */
|
||||
/* Patterns: Notifications */
|
||||
/* ========================================================= */
|
||||
|
||||
.sg-notifications-pattern {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--spacing-small);
|
||||
align-items: flex-start;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sg-notifications-pattern__card {
|
||||
flex: 0 0 100%;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
/* Dokumentierte Pattern-Variante: Notifications innerhalb Group Card */
|
||||
.sg-notifications-pattern.sg-group-card > .sg-notifications-pattern__card {
|
||||
flex: 0 0 100%;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.sg-notifications-pattern.sg-notifications-pattern--multi-row .sg-notifications-pattern__card {
|
||||
flex: 0 0 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sg-notifications-pattern__card > .sg-notifications-pattern__text-segment {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.sg-notifications-pattern__card > .sg-notifications-pattern__title-segment {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.sg-notifications-pattern__card > .sg-notifications-pattern__text-segment.sg-notifications-pattern__text-segment--small {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.sg-vsf-meldungen-layout {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: var(--spacing-small);
|
||||
align-items: start;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sg-vsf-meldungen-layout > .sg-group-card {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.sg-vsf-meldungen-mobile {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sg-vsf-meldungen-mobile__panels {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--spacing-small);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sg-vsf-meldungen-mobile__panel {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.sg-vsf-meldungen-layout {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sg-vsf-meldungen-mobile {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sg-notifications-pattern__card {
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
max-width: none;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.sg-notifications-pattern__card > .sg-notifications-pattern__text-segment,
|
||||
.sg-notifications-pattern__card > .sg-notifications-pattern__title-segment,
|
||||
.sg-notifications-pattern__card > .sg-notifications-pattern__text-segment.sg-notifications-pattern__text-segment--small {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user