mirror of https://github.com/fantasticit/think.git
56 lines
930 B
SCSS
56 lines
930 B
SCSS
|
.titleWrap {
|
||
|
padding: 8px 16px;
|
||
|
}
|
||
|
|
||
|
.itemsWrap {
|
||
|
max-height: 240px;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
.itemWrap {
|
||
|
border-radius: var(--semi-border-radius-small);
|
||
|
|
||
|
&:hover {
|
||
|
background-color: var(--semi-color-fill-0);
|
||
|
color: var(--semi-color-text-0);
|
||
|
}
|
||
|
|
||
|
.item {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
width: 100%;
|
||
|
height: 32px;
|
||
|
padding: 4px 16px;
|
||
|
|
||
|
.leftWrap {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
color: var(--semi-color-primary);
|
||
|
|
||
|
> span {
|
||
|
word-break: break-all;
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
fill: var(--semi-color-primary);
|
||
|
color: var(--semi-color-primary);
|
||
|
}
|
||
|
|
||
|
> div {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.paginationWrap {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
// padding: 16px 0 0;
|
||
|
}
|