Update from Git Manager GUI
This commit is contained in:
@@ -45,6 +45,19 @@
|
||||
background-color: var(--mc-primary-hover);
|
||||
}
|
||||
|
||||
.mc-upload-wrapper .mc-btn-secondary,
|
||||
.mc-combined-wrapper .mc-btn-secondary {
|
||||
background-color: rgba(255,255,255,.07);
|
||||
color: #94a3b8;
|
||||
border: 1px solid rgba(100,116,139,.3);
|
||||
}
|
||||
.mc-upload-wrapper .mc-btn-secondary:hover,
|
||||
.mc-combined-wrapper .mc-btn-secondary:hover {
|
||||
background-color: rgba(255,255,255,.12);
|
||||
color: #cbd5e1;
|
||||
border-color: rgba(100,116,139,.5);
|
||||
}
|
||||
|
||||
|
||||
/* =================================================================== */
|
||||
/* === 2. MODAL SPECIFIC CSS (Fix für das Popup) ================== */
|
||||
@@ -739,6 +752,37 @@
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Like-Button in Lightbox */
|
||||
.mc-lightbox-like-wrap {
|
||||
margin-top: 14px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
.mc-like-btn--lightbox {
|
||||
position: static !important;
|
||||
display: inline-flex !important;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 9px 20px !important;
|
||||
border-radius: 24px !important;
|
||||
font-size: 14px !important;
|
||||
background: rgba(255,255,255,.1) !important;
|
||||
border: 1px solid rgba(255,255,255,.2) !important;
|
||||
color: #fff !important;
|
||||
cursor: pointer;
|
||||
transition: background .15s, border-color .15s !important;
|
||||
}
|
||||
.mc-like-btn--lightbox:hover {
|
||||
background: rgba(239,68,68,.25) !important;
|
||||
border-color: rgba(239,68,68,.4) !important;
|
||||
}
|
||||
.mc-like-btn--lightbox.mc-like-btn--active {
|
||||
background: rgba(239,68,68,.2) !important;
|
||||
border-color: rgba(239,68,68,.5) !important;
|
||||
}
|
||||
.mc-like-btn--lightbox .mc-like-icon { width: 18px; height: 18px; }
|
||||
.mc-like-btn--lightbox .mc-like-label { font-size: 13px; opacity: .85; }
|
||||
|
||||
.mc-lightbox-close {
|
||||
position: absolute;
|
||||
top: -40px;
|
||||
@@ -782,4 +826,314 @@
|
||||
max-width: 90%;
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
/* =================================================================== */
|
||||
/* === LIKE / VOTE BUTTON =========================================== */
|
||||
/* =================================================================== */
|
||||
|
||||
.mc-like-btn {
|
||||
position: absolute;
|
||||
bottom: 8px;
|
||||
right: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
padding: 5px 10px;
|
||||
background: rgba(0,0,0,0.65);
|
||||
border: 1px solid rgba(255,255,255,0.15);
|
||||
border-radius: 20px;
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
z-index: 10;
|
||||
transition: background 0.15s, border-color 0.15s, transform 0.1s;
|
||||
backdrop-filter: blur(4px);
|
||||
}
|
||||
.mc-like-btn:hover {
|
||||
background: rgba(239,68,68,0.3);
|
||||
border-color: rgba(239,68,68,0.5);
|
||||
transform: scale(1.08);
|
||||
}
|
||||
.mc-like-btn:active { transform: scale(0.96); }
|
||||
.mc-like-btn:disabled { opacity: 0.5; cursor: wait; }
|
||||
|
||||
.mc-like-btn--active {
|
||||
background: rgba(239,68,68,0.25);
|
||||
border-color: rgba(239,68,68,0.6);
|
||||
color: #fca5a5;
|
||||
}
|
||||
.mc-like-btn--active .mc-like-icon { stroke: #ef4444; fill: rgba(239,68,68,0.3); }
|
||||
|
||||
.mc-like-icon {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
stroke: currentColor;
|
||||
flex-shrink: 0;
|
||||
transition: stroke 0.15s, fill 0.15s;
|
||||
}
|
||||
|
||||
.mc-like-count { min-width: 12px; text-align: center; }
|
||||
|
||||
/* =================================================================== */
|
||||
/* === KOMBINIERTER UPLOAD SHORTCODE ================================ */
|
||||
/* =================================================================== */
|
||||
|
||||
.mc-combined-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.mc-combined-two-col {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.mc-combined-upload-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
padding: 13px 20px;
|
||||
background: var(--mc-primary);
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: var(--mc-radius);
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s;
|
||||
position: relative;
|
||||
}
|
||||
.mc-combined-upload-btn:hover { background: var(--mc-primary-hover); }
|
||||
|
||||
.mc-combined-method-tag {
|
||||
position: absolute;
|
||||
right: 14px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
font-size: 10px;
|
||||
font-weight: 600;
|
||||
letter-spacing: .05em;
|
||||
text-transform: uppercase;
|
||||
padding: 2px 8px;
|
||||
border-radius: 20px;
|
||||
background: rgba(255,255,255,0.18);
|
||||
color: #fff;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.mc-combined-divider {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin: 14px 0;
|
||||
color: #64748b;
|
||||
font-size: .75rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: .06em;
|
||||
}
|
||||
.mc-combined-divider::before,
|
||||
.mc-combined-divider::after {
|
||||
content: '';
|
||||
flex: 1;
|
||||
height: 1px;
|
||||
background: rgba(100,116,139,.25);
|
||||
}
|
||||
|
||||
.mc-combined-verified-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
margin-top: 10px;
|
||||
padding: 8px 14px;
|
||||
background: rgba(34,197,94,.08);
|
||||
border: 1px solid rgba(34,197,94,.2);
|
||||
border-radius: 8px;
|
||||
color: #22c55e;
|
||||
font-size: .83rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
.mc-combined-verified-row svg {
|
||||
flex-shrink: 0;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
.mc-combined-verified-row strong { font-weight: 700; }
|
||||
|
||||
/* Vote Board */
|
||||
.mc-vote-board .mc-player-header h2 { font-size: 1.3rem; }
|
||||
|
||||
/* =========================================================================
|
||||
VOTE BUTTONS (Daumen hoch / runter)
|
||||
========================================================================= */
|
||||
|
||||
.mc-vote-wrap {
|
||||
position: absolute;
|
||||
bottom: 8px;
|
||||
right: 8px;
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.mc-vote-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
padding: 4px 9px;
|
||||
background: rgba(0,0,0,.65);
|
||||
border: 1px solid rgba(255,255,255,.15);
|
||||
border-radius: 16px;
|
||||
color: #fff;
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: background .15s, border-color .15s, transform .1s;
|
||||
backdrop-filter: blur(4px);
|
||||
-webkit-backdrop-filter: blur(4px);
|
||||
line-height: 1;
|
||||
}
|
||||
.mc-vote-btn svg {
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
flex-shrink: 0;
|
||||
stroke: #fff;
|
||||
transition: stroke .15s, fill .15s;
|
||||
}
|
||||
.mc-vote-btn:hover { transform: scale(1.08); }
|
||||
.mc-vote-btn:active { transform: scale(.94); }
|
||||
.mc-vote-btn:disabled { opacity: .5; cursor: wait; }
|
||||
|
||||
/* Daumen hoch aktiv */
|
||||
.mc-vote-up.mc-vote-btn--active {
|
||||
background: rgba(34,197,94,.25);
|
||||
border-color: rgba(34,197,94,.5);
|
||||
color: #86efac;
|
||||
}
|
||||
.mc-vote-up.mc-vote-btn--active svg { stroke: #22c55e; fill: #22c55e; }
|
||||
.mc-vote-up:not(.mc-vote-btn--active):hover { background: rgba(34,197,94,.2); border-color: rgba(34,197,94,.4); }
|
||||
|
||||
/* Daumen runter aktiv */
|
||||
.mc-vote-down.mc-vote-btn--active {
|
||||
background: rgba(239,68,68,.25);
|
||||
border-color: rgba(239,68,68,.5);
|
||||
color: #fca5a5;
|
||||
}
|
||||
.mc-vote-down.mc-vote-btn--active svg { stroke: #ef4444; fill: #ef4444; }
|
||||
.mc-vote-down:not(.mc-vote-btn--active):hover { background: rgba(239,68,68,.2); border-color: rgba(239,68,68,.4); }
|
||||
|
||||
.mc-vote-count { min-width: 10px; text-align: center; }
|
||||
|
||||
/* In der Lightbox: größer und zentriert */
|
||||
.mc-vote-wrap--lightbox {
|
||||
position: static;
|
||||
justify-content: center;
|
||||
margin-top: 14px;
|
||||
}
|
||||
.mc-vote-wrap--lightbox .mc-vote-btn {
|
||||
padding: 8px 18px;
|
||||
font-size: 13px;
|
||||
border-radius: 24px;
|
||||
}
|
||||
.mc-vote-wrap--lightbox .mc-vote-btn svg { width: 16px; height: 16px; }
|
||||
|
||||
/* =========================================================================
|
||||
COMBINED UPLOAD WRAPPER
|
||||
========================================================================= */
|
||||
|
||||
/* Alle Buttons im Combined-Wrapper: gleiche Basis wie Upload-Button */
|
||||
.mc-combined-wrapper .mc-btn,
|
||||
.mc-combined-wrapper a.mc-btn,
|
||||
.mc-combined-upload-btn {
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
width: 100%;
|
||||
padding: 12px 20px;
|
||||
border: none;
|
||||
border-radius: var(--mc-radius);
|
||||
font-weight: 600;
|
||||
font-size: 15px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.2s ease, opacity 0.2s ease;
|
||||
white-space: nowrap;
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.mc-combined-upload-btn {
|
||||
margin-top: 0;
|
||||
}
|
||||
.mc-combined-method-tag {
|
||||
position: absolute;
|
||||
right: 14px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
font-size: 10px;
|
||||
font-weight: 600;
|
||||
letter-spacing: .05em;
|
||||
text-transform: uppercase;
|
||||
background: rgba(255,255,255,.15);
|
||||
padding: 2px 8px;
|
||||
border-radius: 20px;
|
||||
color: rgba(255,255,255,.85);
|
||||
}
|
||||
.mc-combined-two-col {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
}
|
||||
.mc-combined-divider {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 6px 0;
|
||||
color: rgba(148,163,184,.6);
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: .06em;
|
||||
}
|
||||
.mc-combined-divider::before,
|
||||
.mc-combined-divider::after {
|
||||
content: '';
|
||||
flex: 1;
|
||||
height: 1px;
|
||||
background: rgba(100,116,139,.2);
|
||||
}
|
||||
.mc-combined-verified-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
margin-top: 8px;
|
||||
padding: 7px 12px;
|
||||
background: rgba(34,197,94,.08);
|
||||
border: 1px solid rgba(34,197,94,.2);
|
||||
border-radius: 8px;
|
||||
color: #22c55e;
|
||||
font-size: 13px;
|
||||
}
|
||||
.mc-combined-verified-row svg {
|
||||
flex-shrink: 0;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
|
||||
/* =========================================================================
|
||||
VOTE BOARD
|
||||
========================================================================= */
|
||||
|
||||
.mc-vote-board .mc-player-avatar { font-size: 24px; }
|
||||
|
||||
/* Forum-Button — blaue Variante */
|
||||
.mc-combined-forum-btn {
|
||||
background-color: #2563eb !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
.mc-combined-forum-btn:hover {
|
||||
background-color: #1d4ed8 !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
Reference in New Issue
Block a user