Lots of snazzy ui updates.
This commit is contained in:
@@ -26,6 +26,46 @@
|
||||
font-weight: 700 !important;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
Mode Selection Buttons (Compact)
|
||||
---------------------------------------------------------------------------- */
|
||||
.mode-btn {
|
||||
background: var(--overlay-light);
|
||||
border: 2px solid var(--border-light);
|
||||
border-radius: 0.5rem;
|
||||
padding: 0.75rem 1rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.mode-btn:hover {
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
border-color: rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.mode-btn.active {
|
||||
border-color: var(--gradient-start);
|
||||
background: rgba(102, 126, 234, 0.1);
|
||||
}
|
||||
|
||||
.mode-btn .form-check-input {
|
||||
margin-top: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.mode-info-icon {
|
||||
cursor: help;
|
||||
opacity: 0.6;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.mode-info-icon:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
Base Styles
|
||||
---------------------------------------------------------------------------- */
|
||||
@@ -407,3 +447,835 @@ footer {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
Reference Photo Scan Animation
|
||||
---------------------------------------------------------------------------- */
|
||||
.scan-container {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.scan-container .drop-zone-preview {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
margin-bottom: 45px;
|
||||
}
|
||||
|
||||
.scan-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
pointer-events: none;
|
||||
z-index: 2;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
.scan-container.scanning .scan-overlay {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Scan line that moves down */
|
||||
.scan-line {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg,
|
||||
transparent 0%,
|
||||
rgba(0, 255, 170, 0.4) 20%,
|
||||
rgba(0, 255, 170, 1) 50%,
|
||||
rgba(0, 255, 170, 0.4) 80%,
|
||||
transparent 100%
|
||||
);
|
||||
box-shadow: 0 0 10px rgba(0, 255, 170, 0.6), 0 0 20px rgba(0, 255, 170, 0.3);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.scan-container.scanning .scan-line {
|
||||
opacity: 1;
|
||||
animation: scanDown 0.7s ease-out forwards;
|
||||
}
|
||||
|
||||
@keyframes scanDown {
|
||||
0% { top: 0; opacity: 1; }
|
||||
100% { top: 100%; opacity: 0; }
|
||||
}
|
||||
|
||||
/* Grid overlay - subtle */
|
||||
.scan-grid {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-image:
|
||||
linear-gradient(rgba(0, 255, 170, 0.03) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(0, 255, 170, 0.03) 1px, transparent 1px);
|
||||
background-size: 8px 8px;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.scan-container.scanning .scan-grid {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* Hash blocks container - masked to image, positioned over it */
|
||||
.hash-blocks {
|
||||
position: absolute;
|
||||
z-index: 3;
|
||||
pointer-events: none;
|
||||
overflow: hidden;
|
||||
border-radius: 0.375rem;
|
||||
display: grid;
|
||||
gap: 2px;
|
||||
}
|
||||
|
||||
.hash-block {
|
||||
background: rgba(0, 255, 170, 0.6);
|
||||
border-radius: 1px;
|
||||
box-shadow: 0 0 4px rgba(0, 255, 170, 0.5);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
/* Hash blocks fade in then out one by one */
|
||||
.scan-container.scanning .hash-block {
|
||||
animation: hashBlockPulse 0.7s ease-in-out forwards;
|
||||
}
|
||||
|
||||
@keyframes hashBlockPulse {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale(0.8);
|
||||
}
|
||||
15% {
|
||||
opacity: 0.7;
|
||||
transform: scale(1);
|
||||
background: rgba(0, 255, 170, 0.6);
|
||||
}
|
||||
40% {
|
||||
opacity: 0.8;
|
||||
background: rgba(0, 255, 170, 0.7);
|
||||
box-shadow: 0 0 6px rgba(0, 255, 170, 0.6);
|
||||
}
|
||||
70% {
|
||||
opacity: 0.6;
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: scale(0.5);
|
||||
}
|
||||
}
|
||||
|
||||
/* Corner brackets - hidden during scan, shown after */
|
||||
.scan-corners {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.scan-corner {
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border-color: rgba(0, 255, 170, 0.8);
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.scan-corner.tl { top: 4px; left: 4px; border-top-width: 2px; border-left-width: 2px; }
|
||||
.scan-corner.tr { top: 4px; right: 4px; border-top-width: 2px; border-right-width: 2px; }
|
||||
.scan-corner.bl { bottom: 4px; left: 4px; border-bottom-width: 2px; border-left-width: 2px; }
|
||||
.scan-corner.br { bottom: 4px; right: 4px; border-bottom-width: 2px; border-right-width: 2px; }
|
||||
|
||||
/* Scan complete state */
|
||||
.scan-container.scan-complete .scan-overlay {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.scan-container.scan-complete .scan-corners {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.scan-container.scan-complete .drop-zone-preview {
|
||||
animation: scanPop 0.3s ease-out;
|
||||
}
|
||||
|
||||
@keyframes scanPop {
|
||||
0% { transform: scale(1); }
|
||||
50% { transform: scale(1.02); }
|
||||
100% { transform: scale(1); }
|
||||
}
|
||||
|
||||
/* Data panel that appears after scan */
|
||||
.scan-data-panel {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 3;
|
||||
background: linear-gradient(to top,
|
||||
rgba(10, 15, 30, 0.98) 0%,
|
||||
rgba(12, 20, 40, 0.9) 50%,
|
||||
rgba(15, 25, 50, 0.6) 75%,
|
||||
transparent 100%);
|
||||
padding: 35px 10px 8px 10px;
|
||||
opacity: 0;
|
||||
transform: translateY(4px);
|
||||
transition: opacity 0.4s ease, transform 0.4s ease;
|
||||
pointer-events: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.scan-container.scan-complete .scan-data-panel {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.scan-data-filename {
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.7rem;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
margin-bottom: 5px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.scan-data-filename i {
|
||||
color: rgba(0, 255, 170, 1);
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.scan-data-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.6rem;
|
||||
color: rgba(0, 255, 170, 0.9);
|
||||
letter-spacing: 0.5px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.scan-data-label {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
text-transform: uppercase;
|
||||
font-size: 0.55rem;
|
||||
}
|
||||
|
||||
.scan-data-value {
|
||||
color: rgba(0, 255, 170, 1);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.scan-hash-preview {
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.55rem;
|
||||
color: rgba(0, 255, 170, 0.6);
|
||||
letter-spacing: 0.5px;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.scan-status-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
background: rgba(0, 255, 170, 0.15);
|
||||
border: 1px solid rgba(0, 255, 170, 0.4);
|
||||
border-radius: 3px;
|
||||
padding: 2px 6px;
|
||||
font-size: 0.5rem;
|
||||
color: rgba(0, 255, 170, 1);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.3px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
Carrier/Stego Embed Animation - Hidden data threads
|
||||
---------------------------------------------------------------------------- */
|
||||
.pixel-container {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.pixel-container .drop-zone-preview {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
margin-bottom: 45px;
|
||||
}
|
||||
|
||||
/* Scan line effect - smooth single pass */
|
||||
.pixel-scan-line {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 2px;
|
||||
top: 0;
|
||||
background: linear-gradient(90deg,
|
||||
transparent 0%,
|
||||
rgba(212, 225, 87, 0.4) 20%,
|
||||
rgba(212, 225, 87, 1) 50%,
|
||||
rgba(212, 225, 87, 0.4) 80%,
|
||||
transparent 100%
|
||||
);
|
||||
box-shadow: 0 0 10px rgba(212, 225, 87, 0.6), 0 0 20px rgba(212, 225, 87, 0.3);
|
||||
opacity: 0;
|
||||
z-index: 5;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.pixel-container.loading .pixel-scan-line {
|
||||
opacity: 1;
|
||||
animation: embedScanDown 0.7s ease-out forwards;
|
||||
}
|
||||
|
||||
@keyframes embedScanDown {
|
||||
0% { top: 0; opacity: 1; }
|
||||
100% { top: calc(100% - 45px); opacity: 0; }
|
||||
}
|
||||
|
||||
/* Grid overlay - matches reference scan-grid exactly */
|
||||
.embed-grid {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: 3;
|
||||
pointer-events: none;
|
||||
background-image:
|
||||
linear-gradient(rgba(0, 255, 170, 0.03) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(0, 255, 170, 0.03) 1px, transparent 1px);
|
||||
background-size: 8px 8px;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.pixel-container.loading .embed-grid {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* Tron-style circuit traces container - masked to image */
|
||||
.embed-traces {
|
||||
position: absolute;
|
||||
z-index: 4;
|
||||
pointer-events: none;
|
||||
overflow: hidden;
|
||||
border-radius: 0.375rem;
|
||||
}
|
||||
|
||||
.embed-trace {
|
||||
position: absolute;
|
||||
border-radius: 1px;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
/* Color variants - 60% opacity */
|
||||
.embed-trace.color-yellow {
|
||||
background: rgba(212, 225, 87, 0.6);
|
||||
box-shadow: 0 0 6px rgba(212, 225, 87, 0.5), 0 0 12px rgba(212, 225, 87, 0.3);
|
||||
}
|
||||
|
||||
.embed-trace.color-cyan {
|
||||
background: rgba(0, 255, 170, 0.6);
|
||||
box-shadow: 0 0 6px rgba(0, 255, 170, 0.5), 0 0 12px rgba(0, 255, 170, 0.3);
|
||||
}
|
||||
|
||||
.embed-trace.color-purple {
|
||||
background: rgba(167, 139, 250, 0.6);
|
||||
box-shadow: 0 0 6px rgba(167, 139, 250, 0.5), 0 0 12px rgba(167, 139, 250, 0.3);
|
||||
}
|
||||
|
||||
.embed-trace.color-blue {
|
||||
background: rgba(102, 126, 234, 0.6);
|
||||
box-shadow: 0 0 6px rgba(102, 126, 234, 0.5), 0 0 12px rgba(102, 126, 234, 0.3);
|
||||
}
|
||||
|
||||
/* Vertical segments shrink from top */
|
||||
.embed-trace.v {
|
||||
width: 2px;
|
||||
transform-origin: top center;
|
||||
}
|
||||
|
||||
/* Horizontal segments shrink from left */
|
||||
.embed-trace.h {
|
||||
height: 2px;
|
||||
transform-origin: left center;
|
||||
}
|
||||
|
||||
/* Animation - appear, glow, shrink away completely */
|
||||
.pixel-container.loading .embed-trace.h {
|
||||
animation: traceHShrink 0.65s ease-in-out forwards;
|
||||
}
|
||||
|
||||
.pixel-container.loading .embed-trace.v {
|
||||
animation: traceVShrink 0.65s ease-in-out forwards;
|
||||
}
|
||||
|
||||
@keyframes traceHShrink {
|
||||
0% {
|
||||
transform: scaleX(0);
|
||||
opacity: 0;
|
||||
}
|
||||
15% {
|
||||
transform: scaleX(1);
|
||||
opacity: 1;
|
||||
}
|
||||
40% {
|
||||
transform: scaleX(1);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: scaleX(0);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes traceVShrink {
|
||||
0% {
|
||||
transform: scaleY(0);
|
||||
opacity: 0;
|
||||
}
|
||||
15% {
|
||||
transform: scaleY(1);
|
||||
opacity: 1;
|
||||
}
|
||||
40% {
|
||||
transform: scaleY(1);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: scaleY(0);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Ensure traces are gone after animation */
|
||||
.pixel-container.load-complete .embed-traces {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Corner brackets for pixel container - purple/blue theme */
|
||||
.pixel-corners {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.pixel-corner {
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border-color: rgba(212, 225, 87, 0.8);
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.pixel-corner.tl { top: 4px; left: 4px; border-top-width: 2px; border-left-width: 2px; }
|
||||
.pixel-corner.tr { top: 4px; right: 4px; border-top-width: 2px; border-right-width: 2px; }
|
||||
.pixel-corner.bl { bottom: 4px; left: 4px; border-bottom-width: 2px; border-left-width: 2px; }
|
||||
.pixel-corner.br { bottom: 4px; right: 4px; border-bottom-width: 2px; border-right-width: 2px; }
|
||||
|
||||
.pixel-container.load-complete .pixel-corners {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Data panel for pixel container - purple/blue theme */
|
||||
.pixel-data-panel {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 3;
|
||||
background: linear-gradient(to top,
|
||||
rgba(10, 15, 30, 0.98) 0%,
|
||||
rgba(12, 20, 40, 0.9) 50%,
|
||||
rgba(15, 25, 50, 0.6) 75%,
|
||||
transparent 100%);
|
||||
padding: 35px 10px 8px 10px;
|
||||
opacity: 0;
|
||||
transform: translateY(4px);
|
||||
transition: opacity 0.4s ease, transform 0.4s ease;
|
||||
pointer-events: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.pixel-container.load-complete .pixel-data-panel {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.pixel-data-filename {
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.7rem;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
margin-bottom: 5px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.pixel-data-filename i {
|
||||
color: #d4e157;
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.pixel-data-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.6rem;
|
||||
letter-spacing: 0.5px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.pixel-data-value {
|
||||
color: #d4e157;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.pixel-status-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
background: rgba(212, 225, 87, 0.15);
|
||||
border: 1px solid rgba(212, 225, 87, 0.4);
|
||||
border-radius: 3px;
|
||||
padding: 2px 6px;
|
||||
font-size: 0.55rem;
|
||||
color: #d4e157;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.pixel-dimensions {
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.55rem;
|
||||
color: rgba(212, 225, 87, 0.7);
|
||||
letter-spacing: 0.5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
QR Code Section - Square Inner Panel Layout
|
||||
---------------------------------------------------------------------------- */
|
||||
#rsaQrSection {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#rsaQrSection .drop-zone {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
aspect-ratio: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 1rem;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
/* Expand drop zone when showing scanned QR result */
|
||||
#rsaQrSection .drop-zone:has(.qr-scan-container:not(.d-none)) {
|
||||
width: auto;
|
||||
min-width: 200px;
|
||||
max-width: 280px;
|
||||
height: auto;
|
||||
min-height: 200px;
|
||||
aspect-ratio: auto;
|
||||
}
|
||||
|
||||
#rsaQrSection .drop-zone-label {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
QR Code Section Scan Animation - Simplified: Loading → Scan → Complete
|
||||
---------------------------------------------------------------------------- */
|
||||
.qr-scan-container {
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
border-radius: 8px;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
min-height: 160px;
|
||||
min-width: 160px;
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.qr-scan-container img {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* Hide original image - we don't use it anymore */
|
||||
.qr-scan-container .qr-original {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Cropped image - hidden until loaded, scales UP to fill container */
|
||||
.qr-scan-container .qr-cropped {
|
||||
max-height: 180px;
|
||||
max-width: 180px;
|
||||
min-width: 140px;
|
||||
min-height: 140px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
object-fit: contain;
|
||||
display: none;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
/* ===========================================
|
||||
PHASE 1: Loading - spinner while cropping
|
||||
=========================================== */
|
||||
.qr-loader {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 12px;
|
||||
color: rgba(0, 255, 170, 0.9);
|
||||
padding: 30px 20px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.qr-loader i {
|
||||
font-size: 2.5rem;
|
||||
animation: qrLoaderPulse 1.5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.qr-loader span {
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.75rem;
|
||||
letter-spacing: 0.5px;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
@keyframes qrLoaderPulse {
|
||||
0%, 100% { opacity: 0.5; transform: scale(0.95); }
|
||||
50% { opacity: 1; transform: scale(1.05); }
|
||||
}
|
||||
|
||||
.qr-scan-container.loading .qr-loader {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
/* Error state */
|
||||
.qr-scan-container.error .qr-loader {
|
||||
display: flex;
|
||||
color: #fbbf24;
|
||||
}
|
||||
|
||||
.qr-scan-container.error .qr-loader i {
|
||||
animation: none;
|
||||
}
|
||||
|
||||
/* ===========================================
|
||||
PHASE 2: Scanning - cropped QR with brackets
|
||||
=========================================== */
|
||||
.qr-scan-container.scanning .qr-cropped,
|
||||
.qr-scan-container.scan-complete .qr-cropped {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Scanner overlay - covers the container, padded to match image area */
|
||||
.qr-scanner-overlay {
|
||||
position: absolute;
|
||||
inset: 10px;
|
||||
pointer-events: none;
|
||||
z-index: 5;
|
||||
border-radius: 6px;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/* Four corner finder brackets */
|
||||
.qr-finder-bracket {
|
||||
position: absolute;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border-color: rgba(0, 255, 170, 0.9);
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
opacity: 0;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.qr-finder-bracket.tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; }
|
||||
.qr-finder-bracket.tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; }
|
||||
.qr-finder-bracket.bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; }
|
||||
.qr-finder-bracket.br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; }
|
||||
|
||||
/* Scanning state - brackets pulse */
|
||||
.qr-scan-container.scanning .qr-finder-bracket {
|
||||
opacity: 1;
|
||||
box-shadow: 0 0 8px rgba(0, 255, 170, 0.6);
|
||||
animation: bracketPulse 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.qr-scan-container.scanning .qr-finder-bracket.tl { animation-delay: 0s; }
|
||||
.qr-scan-container.scanning .qr-finder-bracket.tr { animation-delay: 0.15s; }
|
||||
.qr-scan-container.scanning .qr-finder-bracket.br { animation-delay: 0.3s; }
|
||||
.qr-scan-container.scanning .qr-finder-bracket.bl { animation-delay: 0.45s; }
|
||||
|
||||
@keyframes bracketPulse {
|
||||
0%, 100% { opacity: 0.6; border-color: rgba(0, 255, 170, 0.6); box-shadow: 0 0 4px rgba(0, 255, 170, 0.4); }
|
||||
50% { opacity: 1; border-color: rgba(0, 255, 170, 1); box-shadow: 0 0 12px rgba(0, 255, 170, 0.8); }
|
||||
}
|
||||
|
||||
/* Scan line during scanning phase */
|
||||
.qr-scan-container.scanning .qr-scanner-overlay::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 2px;
|
||||
right: 2px;
|
||||
height: 2px;
|
||||
top: 2px;
|
||||
z-index: 6;
|
||||
background: linear-gradient(90deg,
|
||||
transparent 0%,
|
||||
rgba(0, 255, 170, 0.5) 20%,
|
||||
rgba(0, 255, 170, 1) 50%,
|
||||
rgba(0, 255, 170, 0.5) 80%,
|
||||
transparent 100%
|
||||
);
|
||||
box-shadow: 0 0 8px rgba(0, 255, 170, 0.8);
|
||||
animation: qrScanLine 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes qrScanLine {
|
||||
0% { top: 2px; opacity: 0; }
|
||||
10% { opacity: 1; }
|
||||
90% { opacity: 1; }
|
||||
100% { top: calc(100% - 2px); opacity: 0; }
|
||||
}
|
||||
|
||||
/* Grid overlay during scanning */
|
||||
.qr-scan-container.scanning .qr-scanner-overlay::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background-image:
|
||||
linear-gradient(rgba(0, 255, 170, 0.03) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(0, 255, 170, 0.03) 1px, transparent 1px);
|
||||
background-size: 6px 6px;
|
||||
opacity: 0.5;
|
||||
z-index: 4;
|
||||
}
|
||||
|
||||
/* ===========================================
|
||||
PHASE 3: Complete - brackets lock solid
|
||||
=========================================== */
|
||||
.qr-scan-container.scan-complete .qr-finder-bracket {
|
||||
opacity: 1;
|
||||
border-color: rgba(0, 255, 170, 1);
|
||||
box-shadow: 0 0 8px rgba(0, 255, 170, 0.6);
|
||||
animation: none;
|
||||
}
|
||||
|
||||
/* Data panel at bottom of overlay (relative to image) */
|
||||
.qr-scanner-overlay .qr-data-panel {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 10;
|
||||
background: linear-gradient(to top,
|
||||
rgba(10, 15, 30, 0.95) 0%,
|
||||
rgba(10, 15, 30, 0.6) 80%,
|
||||
transparent 100%);
|
||||
padding: 4px 6px 3px 6px;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
border-radius: 0 0 6px 6px;
|
||||
}
|
||||
|
||||
.qr-scan-container.scan-complete .qr-data-panel {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Hide the static data panel in HTML */
|
||||
.qr-scan-container > .qr-data-panel {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide elements we don't use */
|
||||
.qr-scan-container .crop-badge {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* QR Data Panel text styles */
|
||||
.qr-data-filename {
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.6rem;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
margin-bottom: 2px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.qr-data-filename i {
|
||||
color: rgba(0, 255, 170, 1);
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.qr-data-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.5rem;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.qr-status-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
background: rgba(0, 255, 170, 0.15);
|
||||
border: 1px solid rgba(0, 255, 170, 0.4);
|
||||
border-radius: 2px;
|
||||
padding: 1px 4px;
|
||||
font-size: 0.45rem;
|
||||
color: rgba(0, 255, 170, 1);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.3px;
|
||||
}
|
||||
|
||||
.qr-data-value {
|
||||
color: rgba(0, 255, 170, 1);
|
||||
font-weight: 600;
|
||||
font-size: 0.5rem;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user