Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com> This commit refactors the entire application to replace the 'parties' concept with 'events'. All controllers, models, views, and related files have been updated to reflect this change. The parties table has been replaced with an events table, and all related functionality has been updated accordingly.
40 lines
864 B
CSS
Executable File
40 lines
864 B
CSS
Executable File
/* Flash Messages - Theme Integration */
|
|
.flash-message {
|
|
@apply max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 mb-4;
|
|
}
|
|
|
|
/* Base styles for all flash messages */
|
|
.flash-message .flex {
|
|
@apply rounded-md p-4 border shadow-md;
|
|
}
|
|
|
|
/* Success message styles */
|
|
.flash-message-success {
|
|
@apply bg-green-50 border-green-100 text-green-800;
|
|
}
|
|
|
|
/* Error message styles */
|
|
.flash-message-error {
|
|
@apply bg-red-50 border-red-100 text-red-800;
|
|
}
|
|
|
|
/* Warning message styles */
|
|
.flash-message-warning {
|
|
@apply bg-yellow-50 border-yellow-100 text-yellow-800;
|
|
}
|
|
|
|
/* Info message styles */
|
|
.flash-message-info {
|
|
@apply bg-blue-50 border-blue-100 text-blue-800;
|
|
}
|
|
|
|
/* Notice message styles */
|
|
.flash-message-notice {
|
|
@apply bg-purple-50 border-purple-100 text-purple-800;
|
|
}
|
|
|
|
/* Alert message styles */
|
|
.flash-message-alert {
|
|
@apply bg-red-50 border-red-100 text-red-800;
|
|
}
|