Files

147 lines
3.6 KiB
SCSS
Raw Permalink Normal View History

Hotel Raxa - Advanced Booking System Implementation 🏨 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>
2025-07-11 07:43:22 +02:00
.redux-container-spinner {
.spinner-wrpr {
position: relative;
display: block;
height: 30px;
overflow: hidden;
.spinner-input {
position: relative !important;
z-index: 1;
width: 75px !important;
height: 30px !important;
background: #eee !important;
border: 1px solid #bfbfbf !important;
border-right: 0 !important;
border-left: 0 !important;
-webkit-border-radius: 0 !important;
-moz-border-radius: 0 !important;
border-radius: 0 !important;
}
}
.ui-spinner {
position: static;
display: inline;
}
.ui-spinner-buttons {
position: absolute;
padding: 0;
}
.ui-widget .ui-spinner-button {
color: #fff;
position: absolute;
top: 0;
padding: 0 0 30px;
overflow: hidden;
cursor: pointer;
background: -moz-linear-gradient(#fff, #f3f3f3);
background: -o-linear-gradient(#fff, #f3f3f3);
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
background: linear-gradient(#fff, #f3f3f3);
background-color: #fff;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.ui-spinner-button:hover,
.ui-state-hover {
background: -moz-linear-gradient(#f3f3f3, #fff);
background: -o-linear-gradient(#f3f3f3, #fff);
background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#fff));
background: linear-gradient(#f3f3f3, #fff);
background-color: #f3f3f3;
}
.ui-corner-tr,
.ui-spinner-button .ui-icon-triangle-1-n {
-webkit-border-radius: 0 5px 5px 0;
-moz-border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0;
}
.ui-corner-br,
.ui-spinner-button .ui-icon-triangle-1-s {
-webkit-border-radius: 5px 0 0 5px;
-moz-border-radius: 3px 0 0 3px;
border-radius: 3px 0 0 3px;
}
.ui-spinner-button {
.ui-icon {
top: 0;
display: block;
width: 28px;
height: 28px;
margin: 0;
border: 1px solid #b7b7b7;
background-image: initial;
text-indent: 0;
text-align: center;
font-size: 18px;
line-height: 26px;
}
}
}
.dp-numberPicker,
.dp-numberPicker-add,
.dp-numberPicker-sub,
.dp-numberPicker-input {
display: inline-block;
box-sizing: border-box;
text-align: center;
vertical-align: top;
height: 30px;
}
.dp-numberPicker {
border-radius: 3px;
}
.redux-container .redux-container-spinner .dp-numberPicker-add,
.redux-container .redux-container-spinner .dp-numberPicker-sub {
width: 30px;
font-size: 21px;
cursor: pointer;
-moz-user-select: none;
-webkit-user-select: none;
background-color: #33b5e5;
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
height: 29px !important;
&.disabled {
background-color: #2c6a81;
}
}
.dp-numberPicker-add {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
.dp-numberPicker-sub {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.dp-numberPicker-input {
width: 70px;
background-color: #eee;
border: 0;
margin: 0 !important;
box-shadow:
inset 0 1px 1px rgba(255, 255, 255, 0.5),
inset 0 -1px 1px rgba(0, 0, 0, 0.5);
&:disabled {
background-color: #eee;
}
}