diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cd3428..b5d62f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.11.3] - 2026-02-03 + +### Changed + +- Calendar filters now display side by side instead of stacked rows + ## [0.11.2] - 2026-02-03 ### Changed diff --git a/assets/css/admin.css b/assets/css/admin.css index f119c07..5d1dfa4 100644 --- a/assets/css/admin.css +++ b/assets/css/admin.css @@ -950,13 +950,17 @@ /* Calendar Filters */ .bnb-calendar-filters { - display: flex; - gap: 15px; padding: 15px 20px; border-bottom: 1px solid #c3c4c7; background: #f9f9f9; } +.bnb-calendar-filters form { + display: flex; + align-items: center; + gap: 20px; +} + .bnb-calendar-filters label { display: flex; align-items: center; @@ -1173,8 +1177,9 @@ /* Responsive */ @media screen and (max-width: 782px) { - .bnb-calendar-filters { + .bnb-calendar-filters form { flex-direction: column; + align-items: stretch; } .bnb-calendar-filters select { diff --git a/wp-bnb.php b/wp-bnb.php index 53c11d2..1331ff9 100644 --- a/wp-bnb.php +++ b/wp-bnb.php @@ -3,7 +3,7 @@ * Plugin Name: WP BnB Management * Plugin URI: https://src.bundespruefstelle.ch/magdev/wp-bnb * Description: A comprehensive Bed & Breakfast management system for WordPress. Manage buildings, rooms, bookings, and guests. - * Version: 0.11.2 + * Version: 0.11.3 * Requires at least: 6.0 * Requires PHP: 8.3 * Author: Marco Graetsch @@ -24,7 +24,7 @@ if ( ! defined( 'ABSPATH' ) ) { } // Plugin version constant - MUST match Version in header above. -define( 'WP_BNB_VERSION', '0.11.2' ); +define( 'WP_BNB_VERSION', '0.11.3' ); // Plugin path constants. define( 'WP_BNB_PATH', plugin_dir_path( __FILE__ ) );