🏨 Hotel Booking Enhancements: - Implemented Eagle Booking Advanced Pricing add-on - Added Booking.com-style rate management system - Created professional calendar interface for pricing - Integrated deals and discounts functionality 💰 Advanced Pricing Features: - Dynamic pricing models (per room, per person, per adult) - Base rates, adult rates, and child rates management - Length of stay discounts and early bird deals - Mobile rates and secret deals implementation - Seasonal promotions and flash sales 📅 Availability Management: - Real-time availability tracking - Stop sell and restriction controls - Closed to arrival/departure functionality - Minimum/maximum stay requirements - Automatic sold-out management 💳 Payment Integration: - Maintained Redsys payment gateway integration - Seamless integration with existing Eagle Booking - No modifications to core Eagle Booking plugin 🛠️ Technical Implementation: - Custom database tables for advanced pricing - WordPress hooks and filters integration - AJAX-powered admin interface - Data migration from existing Eagle Booking - Professional calendar view for revenue management 📊 Admin Interface: - Booking.com-style management dashboard - Visual rate and availability calendar - Bulk operations for date ranges - Statistics and analytics dashboard - Modal dialogs for quick editing 🔧 Code Quality: - WordPress coding standards compliance - Secure database operations with prepared statements - Proper input validation and sanitization - Error handling and logging - Responsive admin interface 🤖 Generated with Claude Code (https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
92 lines
2.4 KiB
SCSS
92 lines
2.4 KiB
SCSS
.redux-container-slides {
|
|
.redux-slides-list .select2-container {
|
|
margin-bottom: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
.ui-accordion-header {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.full-text,
|
|
.large-text {
|
|
width: 100%;
|
|
}
|
|
|
|
.redux-slides-accordion-group {
|
|
border: 1px solid #dfdfdf !important;
|
|
border-radius: 3px !important;
|
|
margin-top: 0 !important;
|
|
margin-bottom: 10px;
|
|
background: #f9f9f9;
|
|
padding: 5px;
|
|
|
|
h3 {
|
|
border: 1px solid #dfdfdf;
|
|
cursor: move !important;
|
|
font-weight: bold;
|
|
padding: 0 10px !important;
|
|
height: 40px;
|
|
line-height: 40px !important;
|
|
background-color: #f1f1f1;
|
|
background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
|
|
background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
|
|
background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
|
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
|
|
background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
|
|
background-image: linear-gradient(to bottom, #f9f9f9, #ececec);
|
|
overflow: hidden;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
border-radius: 3px;
|
|
-moz-box-shadow: inset 0 1px 0 #fff;
|
|
-webkit-box-shadow: inset 0 1px 0 #fff;
|
|
box-shadow: inset 0 1px 0 #fff;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
#redux-slides-accordion .redux-slides-image {
|
|
height: 250px;
|
|
padding: 5px;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
border: 1px solid #e3e3e3;
|
|
background: #f7f7f7;
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.redux-slides-add {
|
|
float: right;
|
|
margin-right: 10%;
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.redux-slides-remove {
|
|
color: #ef521d !important;
|
|
float: right;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.redux-slides-header {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.redux_slides_add_remove {
|
|
margin-bottom: 10px;
|
|
}
|
|
input {
|
|
width: 100% !important;
|
|
}
|
|
|
|
}
|
|
|
|
.wp-customizer {
|
|
.redux-container-slides .ui-accordion .ui-accordion-content {
|
|
padding: 10px;
|
|
}
|
|
}
|