Changeset 2768982
- Timestamp:
- 08/10/2022 03:13:38 PM (4 years ago)
- Location:
- hq-rental-software/trunk
- Files:
-
- 8 edited
-
CHANGELOG.txt (modified) (1 diff)
-
CHANGELOG.md (modified) (1 diff)
-
README.txt (modified) (1 diff)
-
hq-wordpress.php (modified) (2 diffs)
-
includes/assets/HQRentalsAssetsHandler.php (modified) (2 diffs)
-
includes/assets/css/wheelsberry/style.css (modified) (1 diff)
-
includes/assets/js/hq-carousel.js (modified) (1 diff)
-
includes/shortcodes/HQWheelsberrySliderShortcode.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hq-rental-software/trunk/ CHANGELOG.txt
r2763629 r2768982 1 1 == Change Log == 2 3 = 1.5.14 = 4 5 Fixes on styles for Wheelsberry Slider Widget. 6 Setting 5 feature max for Wheelsberry Slider Widget. 2 7 3 8 = 1.5.13 = -
hq-rental-software/trunk/CHANGELOG.md
r2763629 r2768982 3 3 All notable changes to this project will be documented in this file. 4 4 5 The format is based on [Keep a Changelog](http://keepachangelog.com/) 6 and this project adheres to [Semantic Versioning](http://semver.org/). 5 This project adheres to [Semantic Versioning](http://semver.org/). 6 7 # [1.5.14] - 2022-08-10 8 9 - Fixes on styles for Wheelsberry Slider Widget. 10 - Setting 5 feature max for Wheelsberry Slider Widget. 11 12 ### Changed 13 14 - ```HQWheelsberrySliderShortcode.php``` Wheelsberry Slider Shortcode File. 15 - Styles files. 7 16 8 17 # [1.5.13] - 2022-07-29 -
hq-rental-software/trunk/README.txt
r2763629 r2768982 6 6 Tested up to: 6.0 7 7 Requires PHP: 7.3.0 8 Stable tag: 1.5.1 38 Stable tag: 1.5.14 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
hq-rental-software/trunk/hq-wordpress.php
r2763629 r2768982 4 4 Plugin URI: https://hqrentalsoftware.com/knowledgebase/wordpress-plugin/ 5 5 Description: This plugin is to easily integrate HQ Rental Software with your website which will allow your rental business to receive reservations directly from your site. 6 Version: 1.5.1 36 Version: 1.5.14 7 7 Author: HQ Rental Software 8 8 Author URI: https://hqrentalsoftware.com … … 12 12 namespace HQRentalsPlugin; 13 13 14 define('HQ_RENTALS_PLUGIN_VERSION', '1.5.1 3');14 define('HQ_RENTALS_PLUGIN_VERSION', '1.5.14'); 15 15 16 16 require_once('includes/autoloader.php'); -
hq-rental-software/trunk/includes/assets/HQRentalsAssetsHandler.php
r2758610 r2768982 56 56 wp_register_style('hq-wheelsberry-om-font-styles', plugin_dir_url(__FILE__) . 'css/wheelsberry/omFont.css', array(), HQ_RENTALS_PLUGIN_VERSION, 'all'); 57 57 wp_register_style('hq-wheelsberry-responsive-mobile', plugin_dir_url(__FILE__) . 'css/wheelsberry/responsive-mobile.css', array(), HQ_RENTALS_PLUGIN_VERSION, 'all'); 58 wp_register_style('hq-wheelsberry-slider-css', plugin_dir_url(__FILE__) . 'css/hq-wheelsberry-slider.css', array(), HQ_RENTALS_PLUGIN_VERSION, 'all'); 58 59 wp_register_style('hq-elementor-vehicle-grid-widget-css', plugin_dir_url(__FILE__) . 'css/hq-elementor-vehicle-grid-widget.css', array(), HQ_RENTALS_PLUGIN_VERSION, 'all'); 59 60 wp_register_style('hq-places-form-css', plugin_dir_url(__FILE__) . 'css/hq-places-form.css', array(), HQ_RENTALS_PLUGIN_VERSION, 'all'); … … 314 315 { 315 316 wp_enqueue_style('hq-wheelsberry-styles'); 317 wp_enqueue_style('hq-wheelsberry-slider-css'); 316 318 wp_enqueue_style('hq-wheelsberry-custom-styles'); 317 319 wp_enqueue_style('hq-wheelsberry-om-font-styles'); -
hq-rental-software/trunk/includes/assets/css/wheelsberry/style.css
r2762502 r2768982 101 101 min-width:940px; 102 102 } 103 @media (min-width: 1300px){ 104 .owl-nav { 105 bottom: 30vh; 106 } 107 } 103 108 104 * { 109 105 outline:none; -
hq-rental-software/trunk/includes/assets/js/hq-carousel.js
r2762502 r2768982 10 10 autoHeight: true, 11 11 autoplay: true, 12 /*13 responsive : {14 // breakpoint from 0 up15 0 : {16 option1 : value,17 option2 : value,18 ...19 },20 // breakpoint from 480 up21 480 : {22 option1 : value,23 option2 : value,24 ...25 },26 // breakpoint from 768 up27 768 : {28 option1 : value,29 option2 : value,30 ...31 }32 }*/33 12 }); 34 13 jQuery('.hq-tab').on('click',function (e){ -
hq-rental-software/trunk/includes/shortcodes/HQWheelsberrySliderShortcode.php
r2763002 r2768982 70 70 #hq-wheelsberry-slider{ 71 71 background-color: {$themeColor}; 72 font-family: Montserrat, Open Sans !important; 73 } 74 .hq-reservation-form-wrapper, 75 .hq-reservation-form-wrapper select, 76 .hq-reservation-form-wrapper input, 77 .hq-reservation-form-wrapper select placeholder, 78 .hq-reservation-form-wrapper select option{ 79 font-family: Montserrat, Open Sans !important; 80 } 81 #hq-wheelsberry-slider .cars-slider__item-option-label{ 82 font-family: Open Sans, Montserrat !important; 83 } 84 .branding-img{ 85 max-width: 200px; 86 height: auto; 87 } 88 .owl-prev, .owl-next{ 89 width: 60px !important; 90 height: 60px !important; 91 line-height: 60px !important; 92 text-align: center !important; 93 border-radius: 50% !important; 94 font-size: 32px !important; 95 color: red; 96 background-color: #333333 !important; 97 } 98 99 .cars-slider__hq-feature-icon{ 100 display: inline-block; 101 position: relative; 102 width: 44px; 103 height: 44px; 104 text-align: center; 105 line-height: 40px !important; 106 border-radius: 50%; 107 font-size: 25px; 108 background-color: grey; 109 color: #fff; 110 margin-right: 10px; 111 } 112 .hq-wheelsberry-image-wrapper{ 113 width: 45%; 114 } 115 @media only screen and (max-width: 519px){ 116 .hq-wheelsberry-image-wrapper{ 117 width: 100%; 118 } 119 } 120 .hq-reservation-item-inner-wrapper{ 121 overflow:hidden; 122 } 123 124 #reservation-form__pick-up-date-input, #reservation-form__drop-off-date-input{ 125 background-color: #fff !important; 126 } 127 .reservation-form select, .reservation-form input[type=text]{ 128 height: 50px; 129 } 130 .cars-slider__item-category{ 131 font-family: Montserrat !important; 132 } 133 .hq-upper-tag{ 134 text-transform: uppercase; 135 font-size: 16px; 136 } 137 .owl-nav{ 138 padding-top: 20px; 139 } 140 .cars-slider .owl-prev, 141 .cars-slider .owl-next{ 142 top: -60px !important; 143 } 144 @media only screen and (max-width: 1350px){ 145 .cars-slider .owl-prev, 146 .cars-slider .owl-next{ 147 bottom: 30px !important; 148 } 72 font-family: Montserrat, Open Sans,serif !important; 149 73 } 150 74 </style> … … 361 285 if (is_array($features) and count($features)) { 362 286 $html = ''; 363 foreach ( $featuresas $feature) {287 foreach (array_slice($features,0, 5) as $feature) { 364 288 $html .= " 365 289 <div class='cars-slider__item-option car-option'><i class='cars-slider__hq-feature-icon {$feature->icon}'></i><span class='cars-slider__item-option-label'>{$feature->label}</span></div>
Note: See TracChangeset
for help on using the changeset viewer.