up dropdown listing csc

This commit is contained in:
Tykayn 2025-10-06 18:08:14 +02:00 committed by tykayn
parent 34fa746856
commit ffb9027691
11 changed files with 128 additions and 24 deletions

View file

@ -103,15 +103,25 @@
position: relative;
display: block;
z-index: 100;
border-top-left-radius: 0;
border-top-right-radius: 0;
width: 218px;
top: -47px;
top: -24px;
left: 0;
border-left: 1px solid #8D91A4;
border-bottom: 1px solid #8D91A4;
border-right: 1px solid #8D91A4;
border: 1px solid #8D91A4;
box-shadow: 0 0 13px 0 rgba(37, 91, 142, 0.10);
color: var(--color-text-base, #1B1D27);
text-overflow: ellipsis;
/* Text/text-base */
font-family: var(--Fonts-Font-text, Barlow);
font-size: var(--Font-Base, 14px);
font-style: normal;
font-weight: 400;
line-height: 100%; /* 14px */
.dropdown-list {
max-height: 200px;
overflow-y: auto;
@ -129,4 +139,29 @@
}
}
.separator{
display: flex;
width: 186px;
height: 34px;
min-height: 34px;
max-height: 34px;
padding: var(--Spacing-Spacing-20, 8px) var(--Spacing-Spacing-30, 12px);
align-items: center;
gap: var(--Spacing-Spacing-10, 4px);
border-radius: var(--Radius-list, 0);
background: #F5F5F5;
.label{
overflow: hidden;
color: var(--color-text-secondary, #525668);
leading-trim: both;
text-edge: cap;
text-overflow: ellipsis;
font-family: var(--Fonts-Font-text, Barlow);
font-size: var(--Font-Base, 14px);
font-style: italic;
font-weight: 400;
line-height: 100%; /* 14px */
}
}
}