mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-12 08:08:43 -05:00
* Add to nav * Allow nav items on front page to take full width * Initial+ * Fix vods page title * Add page title * Common art type * ArtGrid to a different component * User arts page initial * Add art tab to user page * Preview initial * Fix art counting * Fix link and onclick overlapping * Link to user art page to arts they made * Artist role initial * Show description * Make toggle in art page saved in search params * Add white-space pre-wrap to plus comments Not sure why it was removed in the first place? * Commission open / text and edit those * Add simple pagination * New art link display logic * New art initial * Upload art * Hide art from side nav too * Show banner when waiting for approval * Edit art * Fix art sub nav link not showing active * Relocate unvalidated art text * Delete art * Extract ImagePreview component * Eliminate some layout shift * BigImageDialog extract component + prevent layout shift * i18n * Fix unused var * Fix tests
147 lines
2.4 KiB
CSS
147 lines
2.4 KiB
CSS
.plus__container {
|
|
max-width: 24rem;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.plus__suggested-info-text {
|
|
color: var(--text-lighter);
|
|
font-size: var(--fonts-lg);
|
|
}
|
|
|
|
.plus__top-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.plus__top-container.content-centered {
|
|
justify-content: center;
|
|
}
|
|
|
|
.plus__radios {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--s-5);
|
|
}
|
|
|
|
.plus__radio-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.plus__radio-label {
|
|
font-size: var(--fonts-sm);
|
|
margin-block-end: 0;
|
|
}
|
|
|
|
.plus__users-count {
|
|
color: var(--text-lighter);
|
|
font-size: var(--fonts-xxs);
|
|
}
|
|
|
|
.plus__suggested-user-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.plus__comment {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.plus__comment-button {
|
|
max-width: 12rem;
|
|
margin-inline-start: auto;
|
|
}
|
|
|
|
.plus__view-comments-action {
|
|
color: var(--text-lighter);
|
|
font-size: var(--fonts-xs);
|
|
font-weight: var(--semi-bold);
|
|
}
|
|
|
|
.plus__comment-time {
|
|
color: var(--text-lighter);
|
|
font-size: var(--fonts-xxs);
|
|
}
|
|
|
|
.plus__delete-button {
|
|
display: inline;
|
|
}
|
|
|
|
.plus__modal-title {
|
|
font-size: var(--fonts-sm);
|
|
}
|
|
|
|
.plus__modal-select {
|
|
max-width: 6rem;
|
|
}
|
|
|
|
.plus__modal-textarea {
|
|
width: 100% !important;
|
|
resize: none;
|
|
}
|
|
|
|
.plus__modal-buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: var(--s-4);
|
|
}
|
|
|
|
.plus-voting__container {
|
|
max-width: 32rem;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.plus-voting__vote-button {
|
|
width: 4rem;
|
|
}
|
|
|
|
.plus-voting__vote-button.downvote {
|
|
border-color: var(--theme-error-transparent);
|
|
color: var(--theme-error);
|
|
outline-color: var(--theme-error);
|
|
}
|
|
|
|
.plus-voting__submit-button {
|
|
display: flex;
|
|
width: 12rem;
|
|
height: 2.5rem;
|
|
margin-block-start: var(--s-6);
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.plus-voting__progress {
|
|
width: 100%;
|
|
}
|
|
|
|
.plus-voting__alert {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: var(--rounded);
|
|
background-color: var(--theme-success-transparent);
|
|
color: var(--text);
|
|
font-size: var(--fonts-sm);
|
|
font-weight: var(--semi-bold);
|
|
gap: var(--s-2);
|
|
line-height: 0.75;
|
|
margin-inline: auto;
|
|
padding-block: var(--s-1);
|
|
padding-inline-end: var(--s-4);
|
|
padding-inline-start: var(--s-3);
|
|
}
|
|
|
|
.plus-voting__alert > svg {
|
|
height: 1.75rem;
|
|
fill: var(--theme-success);
|
|
}
|
|
|
|
.plus-voting__bio-header {
|
|
font-size: var(--fonts-lg);
|
|
padding-block-end: var(--s-2);
|
|
}
|