feat: add Apple Liquid Glass templates, image security settings, and automated releases
## New Features - Apple Liquid Glass CSS template with iOS 26-inspired design - Liquid Glass Dark theme with neon accents - Image Security settings tab with per-event protection levels - Release Please automation for versioning and changelog ## Improvements - Update CSS template migration with final working templates - Add search placeholder visibility fix for glass themes - Update README roadmap (Download Protection, Gallery Templates, Filtering & Export now implemented) ## Infrastructure - Add release-please.yml workflow for automated releases - Add release-please-config.json and manifest - Update docker-build.yml with Release Please integration comments - Add comprehensive CHANGELOG.md ## Cleanup - Add working/planning docs to .gitignore (CLAUDE.md, test-*.md, feature-*.md, etc.) - Remove internal planning documents from git tracking (kept locally) ## Files Added - .github/workflows/release-please.yml - .release-please-manifest.json - release-please-config.json - CHANGELOG.md - frontend/src/features/settings/tabs/ImageSecurityTab.tsx
This commit is contained in:
@@ -1,296 +1,334 @@
|
||||
/**
|
||||
* Migration: Add Liquid Glass CSS Templates
|
||||
* Updates template slots 2 and 3 with Apple-inspired Liquid Glass designs
|
||||
*/
|
||||
|
||||
const LIQUID_GLASS_LIGHT = `/*
|
||||
* PicPeak Custom CSS Template: Liquid Glass Light
|
||||
* Inspired by Apple's iOS 26 Liquid Glass Design Language
|
||||
*
|
||||
* Features:
|
||||
* - Translucent frosted glass surfaces
|
||||
* - Dynamic light refraction effects
|
||||
* - Subtle specular highlights
|
||||
* - Soft depth shadows
|
||||
* These are starter example templates for new installations.
|
||||
* Users can edit or replace them as needed.
|
||||
*/
|
||||
|
||||
/* ===== Base Theme Variables ===== */
|
||||
.gallery-page {
|
||||
--glass-bg: rgba(255, 255, 255, 0.7);
|
||||
--glass-bg-elevated: rgba(255, 255, 255, 0.85);
|
||||
--glass-border: rgba(255, 255, 255, 0.5);
|
||||
--glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
|
||||
--glass-blur: 20px;
|
||||
--glass-saturation: 180%;
|
||||
const APPLE_LIQUID_GLASS = `/*
|
||||
* PicPeak Custom CSS Template: Apple Liquid Glass
|
||||
* Authentic iOS 26 / macOS Tahoe Liquid Glass Design
|
||||
*/
|
||||
|
||||
--gallery-bg: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
|
||||
/* ===== Apple System Fonts ===== */
|
||||
.gallery-page,
|
||||
.gallery-page *,
|
||||
.gallery-sidebar,
|
||||
.gallery-sidebar * {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
|
||||
"Helvetica Neue", Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* ===== CSS Variables ===== */
|
||||
:root {
|
||||
--glass-blur: 20px;
|
||||
--glass-blur-heavy: 40px;
|
||||
--glass-saturation: 180%;
|
||||
--glass-bg: rgba(255, 255, 255, 0.08);
|
||||
--glass-bg-medium: rgba(255, 255, 255, 0.18);
|
||||
--glass-bg-solid: rgba(255, 255, 255, 0.25);
|
||||
--glass-border: rgba(255, 255, 255, 0.2);
|
||||
--glass-border-light: rgba(255, 255, 255, 0.4);
|
||||
--glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
|
||||
--glass-inset: inset 0 1px 1px rgba(255, 255, 255, 0.4),
|
||||
inset 0 -1px 1px rgba(0, 0, 0, 0.05);
|
||||
--gallery-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
|
||||
--gallery-text: #1a1a2e;
|
||||
--gallery-text-muted: rgba(26, 26, 46, 0.7);
|
||||
--gallery-text-light: #ffffff;
|
||||
--gallery-accent: #667eea;
|
||||
--gallery-accent-hover: #764ba2;
|
||||
--gallery-radius: 24px;
|
||||
--gallery-spacing: 20px;
|
||||
--gallery-radius: 20px;
|
||||
--gallery-radius-sm: 12px;
|
||||
}
|
||||
|
||||
/* ===== Page Background ===== */
|
||||
.gallery-page {
|
||||
background: var(--gallery-bg);
|
||||
background: var(--gallery-gradient) !important;
|
||||
background-attachment: fixed !important;
|
||||
min-height: 100vh;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Animated gradient background */
|
||||
.gallery-page::before {
|
||||
content: '';
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
inset: 0;
|
||||
background:
|
||||
radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
|
||||
radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 40%);
|
||||
radial-gradient(ellipse 600px 400px at 15% 85%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
|
||||
radial-gradient(ellipse 500px 350px at 85% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 45%);
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
/* ===== Glass Card Base ===== */
|
||||
.glass-surface {
|
||||
background: var(--glass-bg);
|
||||
backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
|
||||
-webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
|
||||
border: 1px solid var(--glass-border);
|
||||
border-radius: var(--gallery-radius);
|
||||
box-shadow:
|
||||
var(--glass-shadow),
|
||||
inset 0 1px 1px rgba(255, 255, 255, 0.8),
|
||||
inset 0 -1px 1px rgba(0, 0, 0, 0.05);
|
||||
/* ===== TOP BAR / HEADER - Liquid Glass ===== */
|
||||
.gallery-page .gallery-header,
|
||||
.gallery-page header {
|
||||
background: var(--glass-bg-medium) !important;
|
||||
backdrop-filter: blur(var(--glass-blur-heavy)) saturate(var(--glass-saturation)) !important;
|
||||
-webkit-backdrop-filter: blur(var(--glass-blur-heavy)) saturate(var(--glass-saturation)) !important;
|
||||
border-bottom: 1px solid var(--glass-border) !important;
|
||||
box-shadow: var(--glass-shadow), var(--glass-inset) !important;
|
||||
}
|
||||
|
||||
/* Liquid shine effect */
|
||||
.glass-surface::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 50%;
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
rgba(255, 255, 255, 0.4) 0%,
|
||||
rgba(255, 255, 255, 0.1) 50%,
|
||||
transparent 100%
|
||||
);
|
||||
border-radius: var(--gallery-radius) var(--gallery-radius) 0 0;
|
||||
pointer-events: none;
|
||||
.gallery-page .gallery-header > div {
|
||||
background: transparent !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
/* ===== Gallery Header ===== */
|
||||
.gallery-header {
|
||||
background: var(--glass-bg-elevated);
|
||||
backdrop-filter: blur(30px) saturate(200%);
|
||||
-webkit-backdrop-filter: blur(30px) saturate(200%);
|
||||
border-bottom: 1px solid var(--glass-border);
|
||||
padding: calc(var(--gallery-spacing) * 1.5);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
/* ===== SIDEBAR - Liquid Glass ===== */
|
||||
.gallery-sidebar {
|
||||
background: var(--glass-bg-medium) !important;
|
||||
backdrop-filter: blur(var(--glass-blur-heavy)) saturate(var(--glass-saturation)) !important;
|
||||
-webkit-backdrop-filter: blur(var(--glass-blur-heavy)) saturate(var(--glass-saturation)) !important;
|
||||
border-right: 1px solid var(--glass-border) !important;
|
||||
box-shadow: 4px 0 32px rgba(31, 38, 135, 0.1), var(--glass-inset) !important;
|
||||
}
|
||||
|
||||
.gallery-title {
|
||||
color: var(--gallery-text);
|
||||
font-weight: 700;
|
||||
font-size: 1.75rem;
|
||||
letter-spacing: -0.02em;
|
||||
text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
|
||||
.gallery-sidebar h2,
|
||||
.gallery-sidebar h3 {
|
||||
color: var(--gallery-text) !important;
|
||||
font-weight: 600 !important;
|
||||
}
|
||||
|
||||
/* ===== Photo Grid ===== */
|
||||
.photo-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
||||
gap: var(--gallery-spacing);
|
||||
padding: calc(var(--gallery-spacing) * 2);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
/* ===== HERO LAYOUT - Transform to Glass Title Box ===== */
|
||||
/* Target the hero wrapper */
|
||||
.gallery-page .relative.-mt-6 {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
/* ===== Photo Cards - Glass Style ===== */
|
||||
.photo-card {
|
||||
position: relative;
|
||||
background: var(--glass-bg);
|
||||
backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
|
||||
-webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
|
||||
border: 1px solid var(--glass-border);
|
||||
border-radius: var(--gallery-radius);
|
||||
overflow: hidden;
|
||||
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
box-shadow:
|
||||
0 4px 16px rgba(0, 0, 0, 0.1),
|
||||
inset 0 1px 1px rgba(255, 255, 255, 0.6);
|
||||
/* Target the hero section (first child with h-[60vh]) */
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child {
|
||||
height: auto !important;
|
||||
min-height: auto !important;
|
||||
margin: 0 !important;
|
||||
padding: 2rem !important;
|
||||
display: flex !important;
|
||||
justify-content: center !important;
|
||||
align-items: center !important;
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
.photo-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 40%;
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
rgba(255, 255, 255, 0.3) 0%,
|
||||
transparent 100%
|
||||
);
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
border-radius: var(--gallery-radius) var(--gallery-radius) 0 0;
|
||||
/* Hide the hero background image */
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child > img,
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child > canvas {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.photo-card:hover {
|
||||
transform: translateY(-8px) scale(1.02);
|
||||
box-shadow:
|
||||
0 20px 40px rgba(102, 126, 234, 0.3),
|
||||
0 8px 16px rgba(0, 0, 0, 0.1),
|
||||
inset 0 1px 1px rgba(255, 255, 255, 0.8);
|
||||
/* Hide the dark overlay */
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child > .absolute.inset-0.bg-black {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.photo-card img {
|
||||
width: 100%;
|
||||
height: 240px;
|
||||
object-fit: cover;
|
||||
transition: transform 0.4s ease;
|
||||
/* Style the content area as glass title box */
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child > .absolute.inset-0.flex {
|
||||
position: relative !important;
|
||||
inset: auto !important;
|
||||
background: var(--glass-bg-medium) !important;
|
||||
backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
|
||||
-webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
|
||||
border: 1px solid var(--glass-border-light) !important;
|
||||
border-radius: var(--gallery-radius) !important;
|
||||
padding: 2rem 3rem !important;
|
||||
box-shadow: var(--glass-shadow), var(--glass-inset) !important;
|
||||
max-width: 600px !important;
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
.photo-card:hover img {
|
||||
transform: scale(1.05);
|
||||
/* Hide logo in glass title box */
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child .mb-6 {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.photo-card-info {
|
||||
padding: var(--gallery-spacing);
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
rgba(255, 255, 255, 0.1) 0%,
|
||||
rgba(255, 255, 255, 0.3) 100%
|
||||
);
|
||||
/* Style title text */
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child h1 {
|
||||
color: var(--gallery-text) !important;
|
||||
text-shadow: none !important;
|
||||
font-weight: 700 !important;
|
||||
font-size: 2.25rem !important;
|
||||
margin-bottom: 0.75rem !important;
|
||||
}
|
||||
|
||||
/* ===== Buttons - Glass Style ===== */
|
||||
.gallery-btn {
|
||||
background: var(--glass-bg);
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
border: 1px solid var(--glass-border);
|
||||
border-radius: calc(var(--gallery-radius) / 2);
|
||||
padding: 12px 24px;
|
||||
color: var(--gallery-text);
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
/* Style date text */
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child .text-white\\/90 {
|
||||
color: var(--gallery-text) !important;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.gallery-btn::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 50%;
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
rgba(255, 255, 255, 0.4) 0%,
|
||||
transparent 100%
|
||||
);
|
||||
/* Hide scroll down button */
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child > .absolute.bottom-8,
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child > button.absolute {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.gallery-btn:hover {
|
||||
background: var(--glass-bg-elevated);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
|
||||
/* ===== PHOTO GRID ===== */
|
||||
.gallery-page .photo-grid {
|
||||
display: grid !important;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
|
||||
gap: 1.25rem !important;
|
||||
padding: 1rem !important;
|
||||
}
|
||||
|
||||
.gallery-btn-primary {
|
||||
background: linear-gradient(135deg, var(--gallery-accent) 0%, var(--gallery-accent-hover) 100%);
|
||||
color: white;
|
||||
border: none;
|
||||
/* ===== PHOTO CARDS - Liquid Glass ===== */
|
||||
.gallery-page .photo-card {
|
||||
background: var(--glass-bg) !important;
|
||||
backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
|
||||
-webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
|
||||
border: 1px solid var(--glass-border) !important;
|
||||
border-radius: var(--gallery-radius) !important;
|
||||
overflow: hidden !important;
|
||||
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), var(--glass-inset) !important;
|
||||
}
|
||||
|
||||
/* ===== Lightbox - Glass Style ===== */
|
||||
.lightbox-overlay {
|
||||
background: rgba(26, 26, 46, 0.8);
|
||||
backdrop-filter: blur(40px);
|
||||
-webkit-backdrop-filter: blur(40px);
|
||||
.gallery-page .photo-card:hover {
|
||||
transform: translateY(-6px) scale(1.02) !important;
|
||||
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25),
|
||||
0 8px 16px rgba(0, 0, 0, 0.1),
|
||||
var(--glass-inset) !important;
|
||||
border-color: var(--glass-border-light) !important;
|
||||
}
|
||||
|
||||
.lightbox-content {
|
||||
background: var(--glass-bg);
|
||||
backdrop-filter: blur(20px);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
border: 1px solid var(--glass-border);
|
||||
border-radius: var(--gallery-radius);
|
||||
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
|
||||
.gallery-page .photo-card img {
|
||||
transition: transform 0.4s ease !important;
|
||||
}
|
||||
|
||||
/* ===== Category Pills ===== */
|
||||
.category-pill {
|
||||
background: var(--glass-bg);
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
border: 1px solid var(--glass-border);
|
||||
border-radius: 9999px;
|
||||
padding: 8px 20px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
color: var(--gallery-text);
|
||||
transition: all 0.3s ease;
|
||||
.gallery-page .photo-card:hover img {
|
||||
transform: scale(1.05) !important;
|
||||
}
|
||||
|
||||
.category-pill:hover,
|
||||
.category-pill.active {
|
||||
background: var(--gallery-accent);
|
||||
color: white;
|
||||
border-color: var(--gallery-accent);
|
||||
/* ===== BUTTONS - Glass Pill Style ===== */
|
||||
.gallery-page button,
|
||||
.gallery-page [role="button"],
|
||||
.gallery-sidebar button {
|
||||
background: var(--glass-bg) !important;
|
||||
backdrop-filter: blur(12px) saturate(150%) !important;
|
||||
-webkit-backdrop-filter: blur(12px) saturate(150%) !important;
|
||||
border: 1px solid var(--glass-border) !important;
|
||||
border-radius: 9999px !important;
|
||||
color: var(--gallery-text) !important;
|
||||
font-weight: 500 !important;
|
||||
transition: all 0.3s ease !important;
|
||||
}
|
||||
|
||||
/* ===== Responsive ===== */
|
||||
.gallery-page button:hover,
|
||||
.gallery-page [role="button"]:hover,
|
||||
.gallery-sidebar button:hover {
|
||||
background: var(--glass-bg-medium) !important;
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2) !important;
|
||||
}
|
||||
|
||||
.gallery-page button[class*="bg-primary"],
|
||||
.gallery-page .gallery-btn-download {
|
||||
background: linear-gradient(135deg, var(--gallery-accent) 0%, #764ba2 100%) !important;
|
||||
color: white !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
/* ===== INPUT FIELDS ===== */
|
||||
.gallery-page input,
|
||||
.gallery-page select,
|
||||
.gallery-sidebar input,
|
||||
.gallery-sidebar select {
|
||||
background: rgba(255, 255, 255, 0.25) !important;
|
||||
backdrop-filter: blur(8px) !important;
|
||||
-webkit-backdrop-filter: blur(8px) !important;
|
||||
border: 1px solid var(--glass-border) !important;
|
||||
border-radius: var(--gallery-radius-sm) !important;
|
||||
color: var(--gallery-text) !important;
|
||||
}
|
||||
|
||||
/* Input placeholder text - make it visible */
|
||||
.gallery-page input::placeholder,
|
||||
.gallery-sidebar input::placeholder {
|
||||
color: rgba(26, 26, 46, 0.6) !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
/* Input focus state */
|
||||
.gallery-page input:focus,
|
||||
.gallery-sidebar input:focus {
|
||||
background: rgba(255, 255, 255, 0.35) !important;
|
||||
border-color: var(--glass-border-light) !important;
|
||||
outline: none !important;
|
||||
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2) !important;
|
||||
}
|
||||
|
||||
/* ===== FOOTER ===== */
|
||||
.gallery-page .gallery-footer,
|
||||
.gallery-page footer {
|
||||
background: var(--glass-bg) !important;
|
||||
backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
|
||||
-webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation)) !important;
|
||||
border-top: 1px solid var(--glass-border) !important;
|
||||
}
|
||||
|
||||
/* ===== LIGHTBOX ===== */
|
||||
.gallery-page [class*="fixed"][class*="inset-0"][class*="z-50"] {
|
||||
background: rgba(0, 0, 0, 0.7) !important;
|
||||
backdrop-filter: blur(30px) !important;
|
||||
-webkit-backdrop-filter: blur(30px) !important;
|
||||
}
|
||||
|
||||
/* ===== SCROLLBAR ===== */
|
||||
.gallery-page ::-webkit-scrollbar,
|
||||
.gallery-sidebar ::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
.gallery-page ::-webkit-scrollbar-track,
|
||||
.gallery-sidebar ::-webkit-scrollbar-track {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.gallery-page ::-webkit-scrollbar-thumb,
|
||||
.gallery-sidebar ::-webkit-scrollbar-thumb {
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
/* ===== RESPONSIVE ===== */
|
||||
@media (max-width: 768px) {
|
||||
.gallery-page {
|
||||
:root {
|
||||
--gallery-radius: 16px;
|
||||
--gallery-spacing: 12px;
|
||||
--glass-blur: 16px;
|
||||
}
|
||||
|
||||
.photo-grid {
|
||||
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child > .absolute.inset-0.flex {
|
||||
padding: 1.5rem 2rem !important;
|
||||
max-width: 90% !important;
|
||||
}
|
||||
|
||||
.photo-card img {
|
||||
height: 180px;
|
||||
.gallery-page .relative.-mt-6 > .relative:first-child h1 {
|
||||
font-size: 1.5rem !important;
|
||||
}
|
||||
|
||||
.gallery-page .photo-grid {
|
||||
grid-template-columns: repeat(2, 1fr) !important;
|
||||
gap: 0.75rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* ===== Accessibility: Reduce Motion ===== */
|
||||
/* ===== ACCESSIBILITY ===== */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.photo-card,
|
||||
.gallery-btn {
|
||||
transition: none;
|
||||
.gallery-page .photo-card,
|
||||
.gallery-page button {
|
||||
transition: none !important;
|
||||
}
|
||||
|
||||
.photo-card:hover {
|
||||
transform: none;
|
||||
.gallery-page .photo-card:hover {
|
||||
transform: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* ===== Accessibility: Reduce Transparency ===== */
|
||||
@media (prefers-reduced-transparency: reduce) {
|
||||
.glass-surface,
|
||||
.photo-card,
|
||||
.gallery-btn {
|
||||
backdrop-filter: none;
|
||||
-webkit-backdrop-filter: none;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
.gallery-page .photo-card,
|
||||
.gallery-page button,
|
||||
.gallery-sidebar {
|
||||
backdrop-filter: none !important;
|
||||
-webkit-backdrop-filter: none !important;
|
||||
background: rgba(255, 255, 255, 0.95) !important;
|
||||
}
|
||||
}`;
|
||||
|
||||
@@ -642,12 +680,12 @@ const LIQUID_GLASS_DARK = `/*
|
||||
}`;
|
||||
|
||||
exports.up = async function(knex) {
|
||||
// Update template slot 2 with Liquid Glass Light
|
||||
// Update template slot 2 with Apple Liquid Glass (Light)
|
||||
await knex('css_templates')
|
||||
.where({ slot_number: 2 })
|
||||
.update({
|
||||
name: 'Liquid Glass Light',
|
||||
css_content: LIQUID_GLASS_LIGHT,
|
||||
name: 'Apple Liquid Glass',
|
||||
css_content: APPLE_LIQUID_GLASS,
|
||||
is_enabled: true,
|
||||
is_default: false,
|
||||
updated_at: knex.fn.now()
|
||||
@@ -689,5 +727,5 @@ exports.down = async function(knex) {
|
||||
};
|
||||
|
||||
// Export templates for use elsewhere
|
||||
module.exports.LIQUID_GLASS_LIGHT = LIQUID_GLASS_LIGHT;
|
||||
module.exports.APPLE_LIQUID_GLASS = APPLE_LIQUID_GLASS;
|
||||
module.exports.LIQUID_GLASS_DARK = LIQUID_GLASS_DARK;
|
||||
|
||||
Reference in New Issue
Block a user