Remove all user-facing emojis and improve modal styling

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>
This commit is contained in:
Connor Johnstone
2025-08-30 22:45:10 -04:00
parent 0babfc90f4
commit 75eddcf85d
5 changed files with 88 additions and 84 deletions

View File

@@ -1042,9 +1042,9 @@ body {
background: white;
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
max-width: 500px;
width: 90%;
max-height: 80vh;
max-width: 900px;
width: 95%;
max-height: 85vh;
overflow-y: auto;
position: relative;
animation: modalAppear 0.2s ease-out;
@@ -1065,7 +1065,7 @@ body {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.5rem 2rem 1rem;
padding: 2rem 3rem 1.5rem;
border-bottom: 1px solid #e9ecef;
}
@@ -1100,7 +1100,7 @@ body {
}
.modal-body {
padding: 1.5rem 2rem 2rem;
padding: 0.25rem 1.0rem 0rem;
}
.event-detail {
@@ -1260,7 +1260,7 @@ body {
}
.modal-header, .modal-body {
padding: 1rem 1.5rem;
padding: 1.5rem 2rem;
}
.event-detail {
@@ -1662,7 +1662,8 @@ body {
/* Event Creation Modal Styles */
.create-event-modal {
max-width: 600px;
min-width: 750px;
max-width: 900px;
width: 95%;
}
@@ -1700,6 +1701,14 @@ body {
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
/* Checkbox specific styling override */
.create-event-modal input[type="checkbox"] {
width: auto;
display: inline-block;
margin-right: 0.5rem;
vertical-align: middle;
}
.create-event-modal .form-row {
display: grid;
grid-template-columns: 1fr 1fr;
@@ -1947,7 +1956,7 @@ body {
min-height: 300px;
max-height: 50vh;
overflow-y: auto;
padding-right: 0.5rem;
padding: 1rem 2rem 2rem 2rem;
}
.tab-panel {
@@ -1983,6 +1992,7 @@ body {
.tab-content {
min-height: 250px;
max-height: 45vh;
padding: 1rem 1.5rem 1.5rem 1.5rem;
}
}
@@ -3316,4 +3326,4 @@ body {
[data-theme="mint"] .app-sidebar {
background: var(--sidebar-bg);
}
}