Skip to content

Commit

Permalink
Merge pull request #53 from Markus-GS/master
Browse files Browse the repository at this point in the history
2.6.1 (Vendor 3.9.3)
  • Loading branch information
Markus-GS authored Nov 18, 2021
2 parents dfd105b + 53e61ce commit d0fa66b
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 24 deletions.
7 changes: 5 additions & 2 deletions assets/uikit/css/uikit-rtl.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.9.2 | https://www.getuikit.com | (c) 2014 - 2021 YOOtheme | MIT License */
/*! UIkit 3.9.3 | https://www.getuikit.com | (c) 2014 - 2021 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down Expand Up @@ -8135,6 +8135,9 @@ iframe.uk-cover {
/* 1 */
text-decoration: none;
}
.uk-logo > :where(img, svg, video) {
display: block;
}
.uk-logo-inverse {
display: none;
}
Expand Down Expand Up @@ -12068,7 +12071,7 @@ iframe.uk-cover {
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo-inverse,
.uk-overlay-primary .uk-logo-inverse,
.uk-offcanvas-bar .uk-logo-inverse {
display: inline;
display: block;
}
.uk-light .uk-table-striped > tr:nth-of-type(even):last-child,
.uk-light .uk-table-striped tbody tr:nth-of-type(even):last-child,
Expand Down
2 changes: 1 addition & 1 deletion assets/uikit/css/uikit-rtl.min.css

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions assets/uikit/css/uikit.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.9.2 | https://www.getuikit.com | (c) 2014 - 2021 YOOtheme | MIT License */
/*! UIkit 3.9.3 | https://www.getuikit.com | (c) 2014 - 2021 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down Expand Up @@ -8135,6 +8135,9 @@ iframe.uk-cover {
/* 1 */
text-decoration: none;
}
.uk-logo > :where(img, svg, video) {
display: block;
}
.uk-logo-inverse {
display: none;
}
Expand Down Expand Up @@ -12068,7 +12071,7 @@ iframe.uk-cover {
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo-inverse,
.uk-overlay-primary .uk-logo-inverse,
.uk-offcanvas-bar .uk-logo-inverse {
display: inline;
display: block;
}
.uk-light .uk-table-striped > tr:nth-of-type(even):last-child,
.uk-light .uk-table-striped tbody tr:nth-of-type(even):last-child,
Expand Down
2 changes: 1 addition & 1 deletion assets/uikit/css/uikit.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/uikit/js/uikit-icons.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions assets/uikit/js/uikit-icons.min.js

Large diffs are not rendered by default.

21 changes: 12 additions & 9 deletions assets/uikit/js/uikit.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.9.2 | https://www.getuikit.com | (c) 2014 - 2021 YOOtheme | MIT License */
/*! UIkit 3.9.3 | https://www.getuikit.com | (c) 2014 - 2021 YOOtheme | MIT License */

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
Expand Down Expand Up @@ -1604,14 +1604,17 @@
function offset(element, coordinates) {

var currentOffset = dimensions(element);
var ref = toWindow(element);
var pageYOffset = ref.pageYOffset;
var pageXOffset = ref.pageXOffset;
var offsetBy = {height: pageYOffset, width: pageXOffset};

for (var dir in dirs$1) {
for (var i in dirs$1[dir]) {
currentOffset[dirs$1[dir][i]] += offsetBy[dir];
if (element) {
var ref = toWindow(element);
var pageYOffset = ref.pageYOffset;
var pageXOffset = ref.pageXOffset;
var offsetBy = {height: pageYOffset, width: pageXOffset};

for (var dir in dirs$1) {
for (var i in dirs$1[dir]) {
currentOffset[dirs$1[dir][i]] += offsetBy[dir];
}
}
}

Expand Down Expand Up @@ -3462,7 +3465,7 @@
UIkit.data = '__uikit__';
UIkit.prefix = 'uk-';
UIkit.options = {};
UIkit.version = '3.9.2';
UIkit.version = '3.9.3';

globalAPI(UIkit);
hooksAPI(UIkit);
Expand Down
4 changes: 1 addition & 3 deletions assets/uikit/js/uikit.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package: uikit_collection
version: '2.6.0'
vendor: '3.9.2'
version: '2.6.1'
vendor: '3.9.3'
author: 'Friends Of REDAXO'
supportpage: https://github.com/FriendsOfREDAXO/uikit_collection
info: 'FOR UIKIT Collection'
Expand Down

0 comments on commit d0fa66b

Please sign in to comment.