75eddcf85d3b7077d745c844dd146622a5f8688a
This commit enhances the professional appearance of the calendar application by removing all user-facing emojis while preserving debug logging functionality. Additionally, includes modal layout and styling improvements for better usability. ## Changes Made: ### Emoji Removal: - **Event creation modal tabs**: Removed emojis from all 6 tab buttons (📅 Basic Details → Basic Details, etc.) - **Modal content**: Removed emojis from alarm types, attachment types, pattern examples, and completion status - **Theme picker**: Removed emojis from all 8 theme options (🌊 Ocean → Ocean, etc.) - **Context menus**: Removed emojis from event context menu (edit/delete actions) and calendar context menu ### Modal Styling Improvements: - **Width expansion**: Increased modal max-width from 500px to 900px (80% wider) - **Enhanced padding**: Added more padding to modal header (2rem 3rem 1.5rem) and tab content areas - **Responsive design**: Improved mobile adjustments while maintaining desktop experience - **Checkbox fix**: Override width inheritance for "All Day" checkbox with auto width and inline-block display ### Form Layout Enhancement: - **Field reordering**: Moved Repeat and Reminder options above date/time pickers for better workflow - **Visual consistency**: Maintained clean, professional appearance throughout the interface The application now presents a clean, professional interface suitable for business environments while retaining full functionality. Debug logging with emojis is preserved for development purposes. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Calendar App
A full-stack calendar application built with Rust, featuring a Yew frontend and Axum backend with CalDAV integration.
Features
- Interactive calendar interface
- Event creation and management
- CalDAV server integration
- User authentication with JWT
- iCal format support
- Weekly recurrence patterns
- Responsive web design
Architecture
- Frontend: Yew (Rust WebAssembly)
- Backend: Axum (Rust async web framework)
- Shared Models: RFC 5545-compliant VEvent structures
- Protocol: CalDAV for calendar synchronization
- Database: SQLite (via migrations)
- Build Tool: Trunk for frontend bundling
Getting Started
Prerequisites
- Rust (latest stable version)
- Trunk (
cargo install trunk)
Development
-
Start the backend server:
cd backend cargo run -
Start the frontend development server:
cd frontend trunk serve -
Open your browser to
http://localhost:8080
Building for Production
cd frontend
trunk build --release
Project Structure
This is a Cargo workspace with the following structure:
frontend/- Yew frontend applicationsrc/- Frontend source codeindex.html- HTML templatestyles.css- CSS stylesTrunk.toml- Trunk build configuration
backend/- Axum backend servercalendar-models/- Shared RFC 5545 VEvent modelsmigrations/- Database schema migrations
Description
Languages
Rust
76.9%
CSS
22.4%
JavaScript
0.4%
Dockerfile
0.2%
HTML
0.1%