Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
2dbe3b5
Update the bootstrap to 4.6.2 and fontawesome to 7, removed theme wis…
vishal-singh-webkul Nov 21, 2025
833cf9f
Added popper and updated the bootstrap min js and css files, removed …
vishal-singh-webkul Nov 26, 2025
fb8df7c
Update the js file name for proper and sequential loading
vishal-singh-webkul Nov 26, 2025
995b368
Updated room type page, search block and home page
vishal-singh-webkul Jan 7, 2026
962d3e8
Landing Page along with mobile screens completed
shazar-webkul Feb 5, 2026
1811932
checkout flow desktop completed, overall mobile screen fix pending
shazar-webkul Feb 18, 2026
6c2579d
Merge remote-tracking branch 'my-fork/develop' into gli-2909-qloapps-…
shazar-webkul Feb 18, 2026
6b80045
login/signup and landing page mobile screen completed
shazar-webkul Feb 19, 2026
92f645c
Issue 2934: Backoffice implementation completed
shazar-webkul Feb 23, 2026
f828cb5
My account page desktop version completed, with hotel gallery categor…
shazar-webkul Feb 24, 2026
abd0755
Merge pull request #3 from shazar-webkul/gli-2934
shazar-webkul Feb 24, 2026
364713e
Image categorisation issue FO BO done
shazar-webkul Feb 25, 2026
953cd20
BS-3 => BS-4 default class changes
shazar-webkul Mar 2, 2026
34a6d5a
Back office font-awesome library upgraded
shazar-webkul Mar 2, 2026
809ae0f
Address and order history page completed with full function flow alon…
shazar-webkul Mar 3, 2026
e851d87
Refund-Request page Desktop version completed
shazar-webkul Mar 3, 2026
ecf5b00
QloApps themes all pages completed
shazar-webkul Mar 6, 2026
c9fd843
Booking and order pages completed
shazar-webkul Mar 12, 2026
4274e17
Updated: Cart-dropdown functional flow with Ui and Google map placeme…
shazar-webkul Mar 13, 2026
844ffe3
Map across theme and landing page fixes done along with js and php er…
shazar-webkul Mar 16, 2026
60b6e8a
Updated: CMS page desktop + mobile version completed, along with prod…
shazar-webkul Mar 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file modified admin/themes/default/fonts/FontAwesome.otf
Binary file not shown.
Binary file modified admin/themes/default/fonts/fontawesome-webfont.eot
Binary file not shown.
3,230 changes: 2,668 additions & 562 deletions admin/themes/default/fonts/fontawesome-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified admin/themes/default/fonts/fontawesome-webfont.ttf
Binary file not shown.
Binary file modified admin/themes/default/fonts/fontawesome-webfont.woff
Binary file not shown.
Binary file modified admin/themes/default/fonts/fontawesome-webfont.woff2
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@
border-radius: .1em;
}

.#{$fa-css-prefix}-pull-left { float: left; }
.#{$fa-css-prefix}-pull-right { float: right; }

.#{$fa-css-prefix} {
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
}

/* Deprecated as of 4.4.0 */
.pull-right { float: right; }
.pull-left { float: left; }

Expand Down
3 changes: 1 addition & 2 deletions admin/themes/default/sass/vendor/font-awesome/_core.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@

.#{$fa-css-prefix} {
display: inline-block;
font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
font-size: inherit; // can't have font-size inherit on line above, so need to override
text-rendering: auto; // optimizelegibility throws things off #1094
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0); // ensures no half-pixel rendering in firefox

}
197 changes: 195 additions & 2 deletions admin/themes/default/sass/vendor/font-awesome/_icons.scss

Large diffs are not rendered by default.

41 changes: 37 additions & 4 deletions admin/themes/default/sass/vendor/font-awesome/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,58 @@

@mixin fa-icon() {
display: inline-block;
font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
font-size: inherit; // can't have font-size inherit on line above, so need to override
text-rendering: auto; // optimizelegibility throws things off #1094
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0); // ensures no half-pixel rendering in firefox

}

@mixin fa-icon-rotate($degrees, $rotation) {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
-webkit-transform: rotate($degrees);
-ms-transform: rotate($degrees);
transform: rotate($degrees);
}

@mixin fa-icon-flip($horiz, $vert, $rotation) {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
-webkit-transform: scale($horiz, $vert);
-ms-transform: scale($horiz, $vert);
transform: scale($horiz, $vert);
}


// Only display content to screen readers. A la Bootstrap 4.
//
// See: http://a11yproject.com/posts/how-to-hide-content/

@mixin sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}

// Use in conjunction with .sr-only to only display content when it's focused.
//
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
//
// Credit: HTML5 Boilerplate

@mixin sr-only-focusable {
&:active,
&:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Screen Readers
// -------------------------

.sr-only { @include sr-only(); }
.sr-only-focusable { @include sr-only-focusable(); }
Loading