2021-12-22 12:22:29 -08:00
|
|
|
.directory {
|
2021-12-25 09:21:20 -08:00
|
|
|
&__filter-form {
|
|
|
|
display: flex;
|
|
|
|
background: var(--foreground-color);
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
padding: 10px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio-button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-22 12:22:29 -08:00
|
|
|
&__list {
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 10px;
|
|
|
|
grid-template-columns: minmax(0, 50%) minmax(0, 50%);
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
transition: opacity 100ms ease-in;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
&.loading {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 630px) {
|
|
|
|
grid-template-columns: minmax(0, 100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__card {
|
2022-03-30 06:07:17 -07:00
|
|
|
@apply rounded-lg bg-gray-100 dark:bg-slate-700;
|
2021-12-22 12:22:29 -08:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin-bottom: 0;
|
|
|
|
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
overflow: hidden;
|
2021-12-25 09:21:20 -08:00
|
|
|
position: relative;
|
|
|
|
|
2021-12-30 03:08:28 -08:00
|
|
|
&__info {
|
|
|
|
z-index: 1;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
|
2021-12-25 09:21:20 -08:00
|
|
|
&__action-button {
|
|
|
|
z-index: 1;
|
|
|
|
position: absolute;
|
|
|
|
top: 78px;
|
|
|
|
right: 12px;
|
|
|
|
}
|
2021-12-22 12:22:29 -08:00
|
|
|
|
|
|
|
&__img {
|
2022-03-30 06:07:17 -07:00
|
|
|
@apply bg-primary-200 dark:bg-slate-600;
|
2021-12-22 12:22:29 -08:00
|
|
|
height: 125px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__bar {
|
2022-03-30 06:07:17 -07:00
|
|
|
@apply bg-primary-200 dark:bg-slate-600;
|
2021-12-22 12:22:29 -08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
2021-12-25 09:21:20 -08:00
|
|
|
overflow: hidden;
|
2021-12-22 12:22:29 -08:00
|
|
|
}
|
|
|
|
|
2021-12-25 09:21:20 -08:00
|
|
|
.account__avatar {
|
2021-12-22 12:22:29 -08:00
|
|
|
flex: 0 0 auto;
|
|
|
|
width: 48px;
|
2021-12-25 09:21:20 -08:00
|
|
|
min-width: 48px;
|
2021-12-22 12:22:29 -08:00
|
|
|
height: 48px;
|
|
|
|
padding-top: 2px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: var(--brand-color--faint);
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
margin-left: 15px;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
strong {
|
2022-03-30 06:07:17 -07:00
|
|
|
@apply text-black dark:text-white;
|
2021-12-22 12:22:29 -08:00
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2021-12-26 13:49:41 -08:00
|
|
|
span:not(.verified-icon) {
|
2022-03-30 06:07:17 -07:00
|
|
|
@apply text-gray-500 dark:text-gray-400;
|
2021-12-22 12:22:29 -08:00
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__extra {
|
|
|
|
background: var(--foreground-color);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-12-25 09:21:20 -08:00
|
|
|
justify-content: center;
|
2021-12-22 12:22:29 -08:00
|
|
|
|
|
|
|
.accounts-table__count {
|
2021-12-25 09:21:20 -08:00
|
|
|
padding: 15px 0;
|
2021-12-22 12:22:29 -08:00
|
|
|
text-align: center;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
width: 33.33%;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
small {
|
|
|
|
display: block;
|
|
|
|
color: var(--primary-text-color--faint);
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-25 09:21:20 -08:00
|
|
|
.account__header__content {
|
2022-03-30 06:07:17 -07:00
|
|
|
@apply border-b border-solid border-gray-200 dark:border-slate-600;
|
2021-12-25 09:21:20 -08:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 15px 10px;
|
|
|
|
width: 100%;
|
|
|
|
min-height: 50px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2021-12-22 12:22:29 -08:00
|
|
|
|
2021-12-25 09:21:20 -08:00
|
|
|
&.empty {
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
2021-12-22 12:22:29 -08:00
|
|
|
|
2021-12-25 09:21:20 -08:00
|
|
|
p {
|
|
|
|
display: none;
|
2021-12-22 12:22:29 -08:00
|
|
|
|
2021-12-25 09:21:20 -08:00
|
|
|
&:first-child {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
2021-12-22 12:22:29 -08:00
|
|
|
|
2021-12-25 09:21:20 -08:00
|
|
|
br {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2021-12-22 12:22:29 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|