Sync styleguide 2026.05.18.1
This commit is contained in:
@@ -638,6 +638,18 @@ section + section {
|
||||
background: var(--surface-tab-compact-background);
|
||||
}
|
||||
|
||||
.sg-tab-button-group[data-component-variant="linksmenu-items"] {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sg-tab-button-group[data-component-variant="linksmenu-items"] .sg-tab-button {
|
||||
width: 100%;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.sg-tab-button-group[data-component-context="content"] {
|
||||
background: var(--surface-tab-compact-background);
|
||||
}
|
||||
@@ -2837,6 +2849,82 @@ section + section {
|
||||
}
|
||||
}
|
||||
|
||||
/* ========================================================= */
|
||||
/* Patterns: Left Navigation */
|
||||
/* ========================================================= */
|
||||
|
||||
.sg-left-navigation-pattern {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--spacing-small);
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__layout {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
gap: 0;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__header-row {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__toggle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__menu--collapsed {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__group-card {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__group-card--navigation {
|
||||
flex: 0 0 15vw;
|
||||
width: 15vw;
|
||||
max-width: 15vw;
|
||||
padding: var(--spacing-small);
|
||||
margin: 0 var(--spacing-small) var(--spacing-small) 0;
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__group-card--content {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.sg-left-navigation-pattern__layout {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__header-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: var(--spacing-small);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__toggle {
|
||||
display: inline-flex;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__group-card--navigation {
|
||||
flex: 0 0 auto;
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.sg-left-navigation-pattern__group-card--content {
|
||||
margin-top: var(--spacing-small);
|
||||
}
|
||||
}
|
||||
|
||||
/* ========================================================= */
|
||||
/* Layouts: Card Listen Seite */
|
||||
/* ========================================================= */
|
||||
@@ -3610,6 +3698,10 @@ section + section {
|
||||
--score-marker-position: 50%;
|
||||
}
|
||||
|
||||
.sg-score-bar--no-value {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sg-score-bar__value {
|
||||
height: 100%;
|
||||
border-radius: var(--radius-graph-bar);
|
||||
@@ -3639,6 +3731,21 @@ section + section {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.sg-score-bar__empty-state {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
padding-inline-start: var(--spacing-small);
|
||||
color: var(--text-chart-default);
|
||||
font-family: var(--font-family-base);
|
||||
font-size: var(--font-size-small);
|
||||
font-weight: var(--font-weight-regular);
|
||||
line-height: var(--line-height-base);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.sg-chart-preview-area {
|
||||
min-width: var(--layout-object-card-min-width);
|
||||
max-width: var(--layout-object-card-max-width);
|
||||
@@ -3895,6 +4002,113 @@ section + section {
|
||||
background: var(--surface-data-table-help-icon);
|
||||
}
|
||||
|
||||
.sg-large-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sg-large-table__title-segment {
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: var(--spacing-large);
|
||||
}
|
||||
|
||||
.sg-large-table__row {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||||
align-items: stretch;
|
||||
gap: 0;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
background: var(--color-white);
|
||||
}
|
||||
|
||||
.sg-large-table__row--hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sg-large-table__row--header {
|
||||
font-weight: var(--font-weight-semibold);
|
||||
background: var(--color-medium-grey);
|
||||
}
|
||||
|
||||
.sg-large-table__row--striped-light {
|
||||
background: var(--color-light-grey);
|
||||
}
|
||||
|
||||
.sg-large-table__row--load-more {
|
||||
background: var(--color-medium-grey);
|
||||
}
|
||||
|
||||
.sg-large-table__cell {
|
||||
min-width: 0;
|
||||
padding: 0 var(--spacing-small);
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.sg-large-table__cell--load-more {
|
||||
grid-column: 1 / -1;
|
||||
padding: 0;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.sg-large-table__load-more-layout {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.sg-large-table__cell--header {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.sg-large-table__sort-button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
gap: 0.2rem;
|
||||
width: 100%;
|
||||
padding: 0 var(--spacing-small);
|
||||
border: var(--border-none);
|
||||
background: var(--color-transparent);
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
font-weight: var(--font-weight-semibold);
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.sg-large-table__sort-button:focus-visible {
|
||||
outline: 2px solid var(--color-darkblue);
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
.sg-large-table__sort-icon {
|
||||
flex: 0 0 auto;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 0.85rem;
|
||||
height: 0.85rem;
|
||||
line-height: 1;
|
||||
transform: translateY(0.02em);
|
||||
}
|
||||
|
||||
.sg-large-table__sort-icon::before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 0.36rem solid transparent;
|
||||
border-right: 0.36rem solid transparent;
|
||||
border-bottom: 0.55rem solid currentColor;
|
||||
}
|
||||
|
||||
.sg-large-table__sort-icon[data-direction="descending"]::before {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
/* ========================================================= */
|
||||
/* Components: Typography */
|
||||
|
||||
Reference in New Issue
Block a user