Files
Kenso Grimm 216a972fef chore: initialize project repository with core extension files
- Add .gitignore to exclude node_modules, dist, logs, and system files
- Add comprehensive project documentation including README, deployment guide, and development setup
- Add .kiro project specifications for amazon-product-bar-extension, appwrite-cloud-storage, appwrite-userid-repair, blacklist-feature, and enhanced-item-management
- Add .kiro steering documents for product, structure, styling, and tech guidelines
- Add VSCode settings configuration for consistent development environment
- Add manifest.json and babel/vite configuration for extension build setup
- Add complete source code implementation including AppWrite integration, storage managers, UI components, and services
- Add comprehensive test suite with Jest configuration and 30+ test files covering all major modules
- Add test HTML files for integration testing and validation
- Add coverage reports and build validation scripts
- Add AppWrite setup and repair documentation for database schema management
- Add migration guides and responsive accessibility implementation documentation
- Establish foundation for Amazon product bar extension with full feature set including blacklist management, enhanced item workflows, and real-time synchronization
2026-01-12 17:46:42 +01:00

39 lines
997 B
CSS

/* Amazon Product Bar Extension Styles */
.amazon-ext-product-bar {
width: 100%;
min-height: 30px;
background-color: #ff9900;
background: linear-gradient(135deg, #ff9900 0%, #ffb84d 100%);
border-radius: 6px;
margin-top: 8px;
margin-bottom: 4px;
box-sizing: border-box;
position: relative;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
font-size: 12px;
text-shadow: 0 1px 2px rgba(0,0,0,0.3);
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Ensure the bar doesn't interfere with existing Amazon functionality */
.amazon-ext-product-bar:hover {
background: linear-gradient(135deg, #e68a00 0%, #ff9900 100%);
transform: translateY(-1px);
box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
/* Prevent layout shifts during injection */
.amazon-ext-product-bar {
transition: all 0.2s ease;
}
/* Make sure it's visible on all backgrounds */
.amazon-ext-product-bar {
border: 1px solid rgba(0,0,0,0.1);
}