summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/list.css
blob: 368065e53f29c1d186a10b33886a833ad7ce893b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
[data-component="list"] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;

  [data-slot="list-search"] {
    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="list-search-container"] {
      display: flex;
      align-items: center;
      gap: 16px;
      flex: 1 0 0;

      [data-slot="list-search-input"] {
        width: 100%;
      }
    }
  }

  [data-slot="list-scroll"] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }

  [data-slot="list-empty-state"] {
    display: flex;
    padding: 32px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;

    [data-slot="list-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="list-filter"] {
      color: var(--text-strong);
    }
  }

  [data-slot="list-group"] {
    position: relative;
    display: flex;
    flex-direction: column;

    [data-slot="list-header"] {
      display: flex;
      z-index: 10;
      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="list-items"] {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      align-self: stretch;

      [data-slot="list-item"] {
        display: flex;
        width: 100%;
        height: 28px;
        padding: 4px 10px;
        align-items: center;
        color: var(--text-strong);
        scroll-margin-top: 28px;

        /* 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="list-item-selected-icon"] {
          color: var(--icon-strong-base);
        }
        [data-slot="list-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="list-item-active-icon"] {
            display: block;
          }
          [data-slot="list-item-extra-icon"] {
            display: block !important;
            color: var(--icon-strong-base) !important;
          }
        }
        &:active {
          background: var(--surface-raised-base-active);
        }
        &:focus-visible {
          outline: none;
        }
      }
    }
  }
}