Skip to content

Commit

Permalink
update composer packages
Browse files Browse the repository at this point in the history
  • Loading branch information
stiofan committed Jun 19, 2023
1 parent e473d33 commit 0e3a6cb
Show file tree
Hide file tree
Showing 18 changed files with 178 additions and 262 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/assets-v5/css/ayecode-ui.css

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,11 @@
-ms-transform: none !important;
-o-transform: none !important;
transform: none !important;
}

//
.carousel-item > .ratio {
display: block;
padding: 0;
overflow: hidden;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


// Base styles

/*
.form-group {
display: flex;
align-items: center;
Expand Down Expand Up @@ -116,3 +116,4 @@
background-color: $range-slider-light-bg;
}
}
*/
230 changes: 0 additions & 230 deletions vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_navbar.scss
Original file line number Diff line number Diff line change
@@ -1,230 +0,0 @@
//
// Navbar
// --------------------------------------------------


// Navbar brand

.navbar-brand {
font-weight: $navbar-brand-font-weight;
}


// Navbar nav

.navbar-nav {
margin-top: $spacer;

.nav-item {
margin-bottom: .375rem;
padding: .125rem 1rem;
border: $border-width solid transparent;
border-radius: $border-radius;
}

.dropdown-toggle {
display: flex;
&::after {
display: block;
font-size: .75em;
margin: {
top: .1875rem;
right: 0 !important;
left: auto;
}
}
}

.dropdown-menu {
margin-bottom: $dropdown-padding-y * 1.5;
padding: {
top: 0;
bottom: 0;
}
border: 0;
border-left: $border-width * 2 solid transparent;
border-radius: 0;
background-color: transparent;
box-shadow: none;

.dropdown-menu {
display: block;
margin: {
bottom: 0;
left: $dropdown-item-padding-x;
}
opacity: 1;
}

.dropdown-toggle::after { display: none; }
}
}

.navbar-divider {
width: $border-width;
height: 1.75rem;
}
.navbar-light .navbar-divider {
background-color: $dark;
opacity: .1;
}
.navbar-dark .navbar-divider {
background-color: $light;
opacity: .15;
}


// Styles for expanded navbar only

.navbar-expand {
@each $breakpoint in map-keys($grid-breakpoints) {
$next: breakpoint-next($breakpoint, $grid-breakpoints);
$infix: breakpoint-infix($next, $grid-breakpoints);

&#{$infix} {
@include media-breakpoint-up($next) {
.navbar-nav {
margin-top: 0;
padding-top: 0;
border-top: none;
border-radius: 0;
.nav-item {
margin-bottom: 0;
padding: 0;
border: 0;
border-radius: 0;
}
.nav-link {
padding: $navbar-nav-link-padding-y $navbar-nav-link-padding-x;
font-size: $navbar-nav-link-font-size;
}
.dropdown-toggle {
display: block;
&::after {
display: inline-block;
margin: {
top: 0;
left: .375rem;
}
font-size: .6em;
}
}
}
.dropdown-menu {
margin-bottom: 0;
padding: {
top: $dropdown-padding-y;
bottom: $dropdown-padding-y;
}
border: $dropdown-border-width solid $dropdown-border-color;
@include border-radius ($dropdown-border-radius);
background-color: $dropdown-bg;
@include box-shadow($dropdown-box-shadow);
&.dropdown-menu-dark {
border-color: $dropdown-dark-border-color;
background-color: $dropdown-dark-bg;
@include box-shadow($dropdown-dark-box-shadow);
}
> .dropdown {
> .dropdown-toggle {
display: block;
position: relative;
padding-right: $dropdown-item-padding-x * 1.5;
&::after {
display: block;
position: absolute;
top: 50%;
right: $spacer;
margin-top: -.375rem;
content: $fi-chevron-right;
}
}
.dropdown-menu {
display: none;
top: 0;
right: auto;
left: 100%;
width: auto;
margin: {
top: -$dropdown-padding-y;
right: 0;
left: -.375rem;
}
padding-bottom: $dropdown-padding-y;
}
&:hover > .dropdown-menu {
animation: fade-in .25s ease-in-out;
}
}
&.show { display: none; }
}
.dropdown-menu-end {
left: auto;
right: 0;
}
.dropdown:hover > .dropdown-menu {
display: block;
animation: slide-up .25s ease-in-out;
}

&.navbar-light,
&.navbar-dark {
background-color: transparent;
}
&.navbar-home.navbar-dark .dropdown-item {
color: $dropdown-link-color;
}
}
}
}
}


// Navbar themes

// Dark links against light background
.navbar-light {
transition: $navbar-transition;
background-color: $light;
.nav-item {
border-color: $border-color;
&:hover .nav-link:not(.disabled) {
color: $navbar-light-hover-color;
}
&.active .nav-link:not(.disabled) {
color: $navbar-light-active-color;
}
}
.navbar-nav .dropdown-menu {
border-left-color: $border-color;
}

&.navbar-stuck {
background-color: $light;
box-shadow: $box-shadow-sm;
}
}

// White links against dark background
.navbar-dark {
transition: $navbar-transition;
background-color: $dark;
.nav-item {
border-color: $border-light-color;
&:hover .nav-link:not(.disabled) {
color: $navbar-dark-hover-color;
}
&.active .nav-link:not(.disabled) {
color: $navbar-dark-active-color;
}
}
.navbar-nav .dropdown-menu {
border-left-color: $border-light-color;
}

&.navbar-stuck { background-color: $dark; }
}

.navbar-home.navbar-dark .dropdown-item {
color: $dropdown-dark-color;
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,9 @@ Set images and videos to fit a certain way.
transition: all .3s ease-in-out;
}
}
}

// Seems to break firefox and safari if not dispaly block
.ratio {
display: block;
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

// Base styles

/*
.form-group {
display: flex;
align-items: center;
Expand Down Expand Up @@ -116,3 +117,4 @@
background-color: $range-slider-light-bg;
}
}
*/
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
}
.nav-link {
padding: $navbar-nav-link-padding-y $navbar-nav-link-padding-x;
font-size: $navbar-nav-link-font-size;
//font-size: $navbar-nav-link-font-size;
}
.dropdown-toggle {
display: block;
Expand Down
22 changes: 22 additions & 0 deletions vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_wp_core.scss
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,26 @@ body>.flatpickr-calendar .flatpickr-month .flatpickr-current-month>*{display:inl
// add blurr to open modal background, added here so will work in compatibility mode
body.modal-open .modal{
backdrop-filter: blur(10px);
}


// UWP specific styles
.aui_bs5.uwp_page .modal-body .jcrop-holder img,
.aui_bs5.uwp_page .modal-body img.jcrop-preview {
max-width: none;
}

/* skip links */
.bs-skip-links {
z-index: 10000;
left: 50%;
transform: translate(-50%, -150%);
transition: transform 0.3s;
}
.bs-skip-links:focus-within {
transform: translate(-50%, 0%);
}

.form-switch .form-check-input:checked::before{
content: none;
}
2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
add_action('after_setup_theme', function () {
global $ayecode_ui_version,$ayecode_ui_file_key;
$this_version = "0.1.91";
$this_version = "0.1.96";
if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
$ayecode_ui_version = $this_version ;
$ayecode_ui_file_key = wp_hash( __FILE__ );
Expand Down
15 changes: 15 additions & 0 deletions vendor/ayecode/wp-ayecode-ui/change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
= 0.1.96 =
* BS4 to BS5 font italic class is not working - FIXED
* Custom pallet colors not showing in BS5 when selected as a color in block - FIXED

= 0.1.94 =
* Fix conditional field for multiselect field type in search bar - FIXED

= 0.1.93 =
* Rounded right not working in BS5 - FIXED
* Firefox and Safari can have issues displaying images with the .ratio class - FIXED

= 0.1.92 =
* removed extra styling in bs5 for deprecated .form-group class - REMOVED
* Multiple AUI lightbox instances can prevent scrollbar coming back once closed - FIXED

= 0.1.91 =
* Improvements to BS5 compatibility - ADDED

Expand Down
Loading

0 comments on commit 0e3a6cb

Please sign in to comment.