dev

Note: After publishing, you may have to bypass your browser's cache to see the changes.

.nkch-rdp {
    background-color: var(--theme-page-background-color--secondary);
    border: 1px solid var(--theme-border-color);
    border-radius: 3px;
    margin-block: 10px;
    padding: 18px;
}

.nkch-rdp__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nkch-rdp__header {
    align-items: center;
    display: flex;
    gap: 12px;
}

.nkch-rdp__header-text {
    font-size: 16px;
}

.nkch-rdp__header-link {
    margin-left: auto;
}

.nkch-rdp__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
}

.nkch-rdp__header-icon-container {
    background-color: var(--theme-accent-color);
    border-radius: 3px;
    color: var(--theme-accent-label-color);
    display: grid;
    height: 36px;
    width: 36px;
}

.nkch-rdp__header-icon {
    place-self: center;
}

.nkch-rdp-item__content {
    background-color: var(--theme-page-background-color);
    border: 1px solid var(--theme-border-color);
    border-radius: 3px;
    color: var(--theme-page-text-color);
    display: flex;
    min-height: 60px;
    transition: 0.3s;
}

.nkch-rdp-item__content:hover {
    background-color: var(--theme-page-text-mix-color-95);
    color: var(--theme-page-text-color);
    text-decoration: none;
}

.nkch-rdp-item__avatar-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 60px;
}

.nkch-rdp-item__avatar {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.nkch-rdp-item__text {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    overflow: hidden;
}

.nkch-rdp-item__title,
.nkch-rdp-item__author-link {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nkch-rdp-item__title {
    font-weight: bold;
}

.nkch-rdp-item__author {
    line-height: 14px;
}

.nkch-rdp-item__author-link {
    font-size: 12px;
}

.nkch-rdp-item__extra {
    align-items: center;
    display: flex;
    justify-content: center;
}

.nkch-rdp-item__extra-content {
    align-items: center;
    background-color: rgba(var(--theme-accent-color--rgb), 0.3);
    border-radius: 3px;
    display: flex;
    height: 40px;
    justify-content: center;
    margin-inline: 9px;
    overflow: hidden;
    width: 40px;
}

.nkch-rdp-item__extra-content-icon {
    color: var(--theme-accent-color);
}

.nkch-rdp-item__extra-content-attachment {
    background-position: center;
    background-size: cover;
}

.nkch-rdp__view-more-link-container {
    float: right;
}