_activities.scss
9 months ago
_addons.scss
9 months ago
_agents.scss
9 months ago
_animations.scss
9 months ago
_booking_form_preview.scss
9 months ago
_bookings.scss
3 weeks ago
_bundles.scss
9 months ago
_buttons.scss
9 months ago
_calendars.scss
9 months ago
_categories.scss
9 months ago
_customers.scss
9 months ago
_dark.scss
9 months ago
_daterangepicker.scss
9 months ago
_elements.scss
1 month ago
_forms.scss
9 months ago
_grid.scss
1 year ago
_grid_variables.scss
1 year ago
_icons.scss
1 year ago
_latecheckbox.scss
9 months ago
_lateselect.scss
1 year ago
_layout.scss
9 months ago
_lightbox.scss
9 months ago
_menu.scss
9 months ago
_messages.scss
9 months ago
_misc.scss
9 months ago
_mixins.scss
9 months ago
_notifications.scss
9 months ago
_orders.scss
9 months ago
_pickr.scss
1 year ago
_processes.scss
1 month ago
_quick_availability.scss
9 months ago
_reminders.scss
1 year ago
_responsive.scss
9 months ago
_roles.scss
1 year ago
_schedule.scss
3 months ago
_services.scss
9 months ago
_settings.scss
1 day ago
_side-panel.scss
9 months ago
_steps.scss
1 year ago
_tables.scss
9 months ago
_type.scss
1 year ago
_updates.scss
9 months ago
_utilities.scss
1 year ago
_variables.scss
9 months ago
_widgets.scss
9 months ago
_wizard.scss
2 weeks ago
_messages.scss
71 lines
| 1 | .latepoint-message { |
| 2 | border-radius: $border-radius-lg; |
| 3 | &.latepoint-message-success { |
| 4 | padding: 10px 15px; |
| 5 | font-weight: $body-font-weight-bold; |
| 6 | margin-bottom: 15px; |
| 7 | background: #aeffbe; |
| 8 | color: #258432; |
| 9 | text-align: center; |
| 10 | } |
| 11 | &.latepoint-message-error { |
| 12 | padding: 10px 15px; |
| 13 | font-weight: $body-font-weight-bold; |
| 14 | margin-bottom: 15px; |
| 15 | color: #820b0b; |
| 16 | text-align: center; |
| 17 | background-color: #ffdede; |
| 18 | border: 1px solid #eeb9b9; |
| 19 | border-bottom-color: #e5a5a5; |
| 20 | box-shadow: 0px 1px 1px rgba(255, 19, 19, 0.15); |
| 21 | } |
| 22 | &.latepoint-message-info { |
| 23 | padding: 10px 15px; |
| 24 | font-weight: $body-font-weight-bold; |
| 25 | margin-bottom: 15px; |
| 26 | background: #d5dcff; |
| 27 | color: #181b2d; |
| 28 | text-align: center; |
| 29 | } |
| 30 | &.latepoint-message-invalid { |
| 31 | padding: 10px 15px; |
| 32 | font-weight: $body-font-weight-bold; |
| 33 | margin-bottom: 20px; |
| 34 | background: #ffd9d9; |
| 35 | color: #700c0c; |
| 36 | border-left: 4px solid #f19696; |
| 37 | border-radius: $border-radius; |
| 38 | } |
| 39 | &.latepoint-message-subtle { |
| 40 | padding: 10px 15px; |
| 41 | font-weight: $body-font-weight-bold; |
| 42 | margin-bottom: 20px; |
| 43 | background: #f6f3ec; |
| 44 | color: #6a6561; |
| 45 | border-left: 4px solid #e9e4db; |
| 46 | border-radius: $border-radius; |
| 47 | &:last-child { |
| 48 | margin-bottom: 0px; |
| 49 | } |
| 50 | strong { |
| 51 | color: $link-color; |
| 52 | background-color: #fff; |
| 53 | padding: 0px 3px; |
| 54 | border-radius: 4px; |
| 55 | } |
| 56 | } |
| 57 | &.latepoint-message-warning { |
| 58 | padding: 10px; |
| 59 | font-weight: $body-font-weight-bold; |
| 60 | margin-bottom: 15px; |
| 61 | background: #f7f2dd; |
| 62 | color: #61583e; |
| 63 | text-align: center; |
| 64 | border: 1px solid #dfcb9e; |
| 65 | box-shadow: 0px 2px 4px rgba(64, 55, 40, 0.05); |
| 66 | } |
| 67 | h3 { |
| 68 | margin-top: 0px; |
| 69 | margin-bottom: 5px; |
| 70 | } |
| 71 | } |