gfsdgsd
This commit is contained in:
@@ -369,6 +369,25 @@
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.upload-form.shitpost-mode-active.album-mode-active .global-rating-section,
|
||||
.upload-form.shitpost-mode-active.album-mode-active .global-visibility-section,
|
||||
.upload-form.shitpost-mode-active.album-mode-active .global-expiry-section,
|
||||
.upload-form.shitpost-mode-active.album-mode-active .global-comment-section,
|
||||
.upload-form.shitpost-mode-active.album-mode-active .global-tag-section,
|
||||
.upload-form.shitpost-mode-active.album-mode-active .global-oc-section,
|
||||
.upload-form.shitpost-mode-active.album-mode-active .global-title-section {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.upload-form.album-mode-active .drop-zone {
|
||||
border-color: rgba(var(--accent-rgb), 0.45);
|
||||
background: rgba(var(--accent-rgb), 0.03);
|
||||
}
|
||||
|
||||
.upload-form.album-mode-active .drop-album-hint {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* Per-item Rating Switch */
|
||||
.item-rating-container {
|
||||
display: flex;
|
||||
@@ -1705,3 +1724,291 @@
|
||||
}
|
||||
@keyframes uutShimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
|
||||
|
||||
/* ==========================================================================
|
||||
ALBUM UPLOAD STYLES
|
||||
========================================================================== */
|
||||
|
||||
.album-choice-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
background: rgba(255, 255, 255, 0.04);
|
||||
border: 1px solid var(--nav-border-color, rgba(255, 255, 255, 0.1));
|
||||
border-radius: 8px;
|
||||
padding: 10px 14px;
|
||||
margin-top: 12px;
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.album-choice-title {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 600;
|
||||
color: #eee;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
}
|
||||
|
||||
.album-choice-title i {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.album-choice-options {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.album-choice-btn {
|
||||
padding: 6px 14px;
|
||||
border-radius: 6px;
|
||||
font-size: 0.85rem;
|
||||
background: rgba(0, 0, 0, 0.35);
|
||||
border: 1px solid rgba(255, 255, 255, 0.18);
|
||||
color: #ccc;
|
||||
cursor: pointer;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.album-choice-btn:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: #fff;
|
||||
border-color: rgba(255, 255, 255, 0.3);
|
||||
}
|
||||
|
||||
.album-choice-btn.active {
|
||||
background: var(--accent);
|
||||
color: #111;
|
||||
font-weight: 700;
|
||||
border-color: var(--accent);
|
||||
box-shadow: 0 0 10px rgba(var(--accent-rgb, 31, 178, 176), 0.4);
|
||||
}
|
||||
|
||||
.album-staging-container {
|
||||
width: 100%;
|
||||
margin-top: 14px;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 10px;
|
||||
padding: 14px;
|
||||
}
|
||||
|
||||
.album-staging-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 12px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
||||
}
|
||||
|
||||
.album-staging-title {
|
||||
font-size: 0.92rem;
|
||||
font-weight: 600;
|
||||
color: #eee;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
}
|
||||
|
||||
.album-staging-title i {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.btn-add-album-pics {
|
||||
padding: 5px 12px;
|
||||
border-radius: 6px;
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
border: 1px solid rgba(255, 255, 255, 0.16);
|
||||
color: #eee;
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.btn-add-album-pics:hover {
|
||||
border-color: var(--accent);
|
||||
color: var(--accent);
|
||||
background: rgba(var(--accent-rgb, 31, 178, 176), 0.1);
|
||||
}
|
||||
|
||||
.album-staging-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.album-stage-card {
|
||||
position: relative;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border: 1px solid rgba(255, 255, 255, 0.14);
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
aspect-ratio: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.album-stage-card:hover {
|
||||
border-color: rgba(255, 255, 255, 0.3);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
.album-stage-card.is-cover {
|
||||
border-color: var(--accent);
|
||||
box-shadow: 0 0 10px rgba(var(--accent-rgb, 31, 178, 176), 0.35);
|
||||
}
|
||||
|
||||
.album-stage-card img,
|
||||
.album-stage-card video {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.album-stage-audio-preview {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 6px;
|
||||
padding: 8px;
|
||||
text-align: center;
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.album-stage-audio-preview i {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.album-stage-audio-name {
|
||||
font-size: 0.65rem;
|
||||
color: #ccc;
|
||||
max-width: 95px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.album-stage-mime-badge {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 4px;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
color: #fff;
|
||||
font-size: 0.65rem;
|
||||
padding: 2px 5px;
|
||||
border-radius: 4px;
|
||||
z-index: 5;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.album-stage-badge {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
left: 4px;
|
||||
background: rgba(0, 0, 0, 0.75);
|
||||
backdrop-filter: blur(4px);
|
||||
-webkit-backdrop-filter: blur(4px);
|
||||
color: #fff;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 700;
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
z-index: 5;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.album-stage-card.is-cover .album-stage-badge {
|
||||
background: var(--accent);
|
||||
color: #111;
|
||||
border-color: var(--accent);
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.album-stage-actions {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: linear-gradient(transparent, rgba(0, 0, 0, 0.85) 60%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 5px;
|
||||
padding: 10px 4px 4px 4px;
|
||||
opacity: 0;
|
||||
transition: opacity 0.2s ease;
|
||||
z-index: 6;
|
||||
}
|
||||
|
||||
.album-stage-card:hover .album-stage-actions {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.album-action-btn {
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
border-radius: 4px;
|
||||
background: rgba(255, 255, 255, 0.16);
|
||||
border: none;
|
||||
color: #fff;
|
||||
font-size: 0.72rem;
|
||||
cursor: pointer;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: all 0.15s ease;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.album-action-btn:hover {
|
||||
background: var(--accent);
|
||||
color: #111;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.album-action-btn.btn-album-remove:hover {
|
||||
background: #e74c3c;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.album-stage-card.album-stage-add-more {
|
||||
border-style: dashed;
|
||||
border-color: rgba(255, 255, 255, 0.2);
|
||||
cursor: pointer;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
.album-stage-card.album-stage-add-more:hover {
|
||||
border-color: var(--accent);
|
||||
color: var(--accent);
|
||||
background: rgba(var(--accent-rgb, 31, 178, 176), 0.08);
|
||||
}
|
||||
|
||||
.album-add-icon {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
|
||||
.album-add-text {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.album-add-sub {
|
||||
font-size: 0.65rem;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user