Phase 3: Sidebar & Properties Panel

- Three-column layout (sidebar/canvas/properties)
- Sidebar with tabs: Upload, Stickers, Text
- Upload tab with drag-and-drop and click-to-upload
- Stickers tab with 6 categories (40+ emojis)
- Text tab with font selector, size slider, color picker
- Properties panel with position, size, rotation controls
- Delete button for selected element
- Responsive layout for mobile

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Khalid A
2026-04-21 01:17:47 -05:00
parent e67017b259
commit 2acf674aaa
9 changed files with 911 additions and 44 deletions

View File

@@ -66,3 +66,448 @@ button {
input, textarea, select {
font-family: inherit;
}
/* App Layout - Three Column */
.app-layout {
display: flex;
min-height: 100vh;
background: var(--bg-secondary);
}
.sidebar-container {
width: 280px;
background: var(--bg-primary);
border-right: 1px solid var(--border);
flex-shrink: 0;
overflow-y: auto;
}
.canvas-container {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
overflow-y: auto;
}
.properties-container {
width: 260px;
background: var(--bg-primary);
border-left: 1px solid var(--border);
flex-shrink: 0;
overflow-y: auto;
}
.app-title {
font-size: 1.5rem;
font-weight: 600;
margin: 0 0 0.5rem 0;
color: var(--text-primary);
}
.app-subtitle {
color: var(--text-secondary);
margin: 0 0 1.5rem 0;
font-size: 0.875rem;
}
.canvas-wrapper {
margin-bottom: 1rem;
}
.debug-info {
padding: 1rem;
background: var(--bg-tertiary);
border-radius: var(--radius-md);
font-size: 0.875rem;
text-align: center;
}
.debug-info p {
margin: 0.25rem 0;
}
.debug-info .tip {
color: var(--text-muted);
font-size: 12px;
}
/* Sidebar */
.sidebar {
display: flex;
flex-direction: column;
height: 100%;
}
.sidebar-tabs {
display: flex;
border-bottom: 1px solid var(--border);
background: var(--bg-tertiary);
}
.sidebar-tab {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
padding: 0.75rem 0.5rem;
background: transparent;
border: none;
border-bottom: 2px solid transparent;
cursor: pointer;
transition: all 0.2s;
font-size: 0.75rem;
color: var(--text-secondary);
}
.sidebar-tab:hover {
background: var(--bg-primary);
}
.sidebar-tab.active {
border-bottom-color: var(--accent);
color: var(--text-primary);
}
.tab-icon {
font-size: 1.25rem;
margin-bottom: 0.25rem;
}
.tab-label {
font-size: 0.625rem;
}
.sidebar-content {
padding: 1rem;
flex: 1;
}
/* Upload Tab */
.upload-tab h3 {
font-size: 0.875rem;
margin: 0 0 1rem 0;
color: var(--text-primary);
}
.upload-zone {
border: 2px dashed var(--border);
border-radius: var(--radius-md);
padding: 2rem 1rem;
text-align: center;
cursor: pointer;
transition: all 0.2s;
background: var(--bg-secondary);
}
.upload-zone:hover {
border-color: var(--accent);
background: var(--accent-bg);
}
.upload-zone.dragging {
border-color: var(--accent);
background: var(--accent-bg);
}
.upload-zone.uploading {
opacity: 0.7;
pointer-events: none;
}
.upload-icon {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.upload-zone p {
margin: 0.25rem 0;
font-size: 0.875rem;
color: var(--text-secondary);
}
.upload-hint {
font-size: 0.75rem !important;
color: var(--text-muted) !important;
}
.uploading-state {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.spinner {
width: 24px;
height: 24px;
border: 2px solid var(--border);
border-top-color: var(--accent);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* Stickers Tab */
.stickers-tab h3 {
font-size: 0.875rem;
margin: 0 0 1rem 0;
}
.category-pills {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 1rem;
}
.category-pill {
padding: 0.25rem 0.75rem;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
background: var(--bg-secondary);
font-size: 0.75rem;
cursor: pointer;
transition: all 0.2s;
}
.category-pill:hover {
border-color: var(--accent);
}
.category-pill.active {
background: var(--accent);
border-color: var(--accent);
color: white;
}
.sticker-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 0.5rem;
max-height: 400px;
overflow-y: auto;
}
.sticker-button {
font-size: 1.5rem;
padding: 0.5rem;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
background: var(--bg-primary);
cursor: pointer;
transition: all 0.2s;
}
.sticker-button:hover {
transform: scale(1.1);
border-color: var(--accent);
}
/* Text Tab */
.text-tab h3 {
font-size: 0.875rem;
margin: 0 0 1rem 0;
}
.text-input-group {
margin-bottom: 1rem;
}
.text-input-group label {
display: block;
font-size: 0.75rem;
color: var(--text-secondary);
margin-bottom: 0.25rem;
}
.text-input,
.font-select {
width: 100%;
padding: 0.5rem;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
font-size: 0.875rem;
}
.text-input:focus,
.font-select:focus {
outline: none;
border-color: var(--accent);
}
.size-slider {
width: 100%;
}
.color-picker-row {
display: flex;
gap: 0.5rem;
}
.color-picker {
width: 40px;
height: 36px;
padding: 0;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
cursor: pointer;
}
.color-input {
flex: 1;
padding: 0.5rem;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
}
.add-text-btn {
width: 100%;
padding: 0.75rem;
background: var(--accent);
color: white;
border: none;
border-radius: var(--radius-md);
font-weight: 500;
cursor: pointer;
transition: background 0.2s;
}
.add-text-btn:hover {
background: var(--accent-hover);
}
.text-preview {
margin-top: 1rem;
padding: 1rem;
background: var(--bg-secondary);
border-radius: var(--radius-md);
text-align: center;
}
/* Properties Panel */
.properties-panel {
padding: 1rem;
}
.properties-panel h3 {
font-size: 0.875rem;
margin: 0 0 1rem 0;
color: var(--text-primary);
}
.no-selection {
padding: 2rem 1rem;
text-align: center;
color: var(--text-muted);
font-size: 0.875rem;
}
.element-header {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem;
background: var(--bg-tertiary);
border-radius: var(--radius-md);
margin-bottom: 1rem;
}
.element-icon {
font-size: 1.25rem;
}
.element-name {
font-weight: 500;
font-size: 0.875rem;
}
.property-group {
margin-bottom: 1rem;
}
.property-group label {
display: block;
font-size: 0.75rem;
color: var(--text-secondary);
margin-bottom: 0.5rem;
}
.property-row {
display: flex;
gap: 0.5rem;
}
.property-input {
flex: 1;
display: flex;
align-items: center;
gap: 0.5rem;
}
.property-label {
font-size: 0.75rem;
color: var(--text-muted);
min-width: 12px;
}
.property-input input {
flex: 1;
padding: 0.5rem;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
font-size: 0.875rem;
text-align: center;
}
.property-input input:focus {
outline: none;
border-color: var(--accent);
}
.rotation-slider {
width: 100%;
}
.delete-btn {
width: 100%;
padding: 0.75rem;
background: transparent;
color: var(--error);
border: 1px solid var(--error);
border-radius: var(--radius-md);
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.delete-btn:hover {
background: var(--error);
color: white;
}
/* Responsive */
@media (max-width: 900px) {
.app-layout {
flex-direction: column;
}
.sidebar-container,
.properties-container {
width: 100%;
border: none;
border-bottom: 1px solid var(--border);
}
.sidebar-tabs {
overflow-x: auto;
}
.sticker-grid {
grid-template-columns: repeat(8, 1fr);
}
}