| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- [data-slot="select-dialog-content"] {
- width: 100%;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- gap: 20px;
- padding: 0 10px;
- }
- [data-component="select-dialog-input"] {
- display: flex;
- height: 40px;
- flex-shrink: 0;
- padding: 4px 10px 4px 16px;
- align-items: center;
- gap: 12px;
- align-self: stretch;
- border-radius: var(--radius-md);
- background: var(--surface-base);
- [data-slot="select-dialog-input-container"] {
- display: flex;
- align-items: center;
- gap: 12px;
- flex: 1 0 0;
- /* [data-slot="select-dialog-icon"] {} */
- [data-slot="select-dialog-input"] {
- width: 100%;
- }
- }
- /* [data-slot="select-dialog-clear-button"] {} */
- }
- [data-component="select-dialog"] {
- display: flex;
- flex-direction: column;
- gap: 20px;
- [data-slot="select-dialog-empty-state"] {
- display: flex;
- padding: 32px 0px;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- gap: 8px;
- align-self: stretch;
- [data-slot="select-dialog-message"] {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 2px;
- color: var(--text-weak);
- text-align: center;
- /* text-14-regular */
- font-family: var(--font-family-sans);
- font-size: 14px;
- font-style: normal;
- font-weight: var(--font-weight-regular);
- line-height: var(--line-height-large); /* 142.857% */
- letter-spacing: var(--letter-spacing-normal);
- }
- [data-slot="select-dialog-filter"] {
- color: var(--text-strong);
- }
- }
- [data-slot="select-dialog-group"] {
- position: relative;
- display: flex;
- flex-direction: column;
- [data-slot="select-dialog-header"] {
- display: flex;
- height: 28px;
- padding: 0 10px;
- justify-content: space-between;
- align-items: center;
- align-self: stretch;
- background: var(--surface-raised-stronger-non-alpha);
- position: sticky;
- top: 0;
- color: var(--text-base);
- /* text-14-medium */
- font-family: var(--font-family-sans);
- font-size: 14px;
- font-style: normal;
- font-weight: var(--font-weight-medium);
- line-height: var(--line-height-large); /* 142.857% */
- letter-spacing: var(--letter-spacing-normal);
- }
- [data-slot="select-dialog-list"] {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- align-self: stretch;
- [data-slot="select-dialog-item"] {
- display: flex;
- width: 100%;
- height: 28px;
- padding: 4px 10px;
- align-items: center;
- color: var(--text-strong);
- /* text-14-medium */
- font-family: var(--font-family-sans);
- font-size: 14px;
- font-style: normal;
- font-weight: var(--font-weight-medium);
- line-height: var(--line-height-large); /* 142.857% */
- letter-spacing: var(--letter-spacing-normal);
- [data-slot="select-dialog-item-selected-icon"] {
- color: var(--icon-strong-base);
- }
- [data-slot="select-dialog-item-active-icon"] {
- display: none;
- color: var(--icon-strong-base);
- }
- &[data-active="true"] {
- border-radius: var(--radius-md);
- background: var(--surface-raised-base-hover);
- [data-slot="select-dialog-item-active-icon"] {
- display: block;
- }
- }
- &:active {
- background: var(--surface-raised-base-active);
- }
- }
- }
- }
- }
|