Skip to content

Commit

Permalink
Merge tag 'v3.0.0-rc.14' into develop
Browse files Browse the repository at this point in the history
no message
  • Loading branch information
janschoenherr committed Sep 4, 2018
2 parents e3f4957 + 60d0a08 commit a7f7466
Show file tree
Hide file tree
Showing 15 changed files with 227 additions and 227 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Expand Up @@ -15,7 +15,7 @@ Also try to search for your issue. It may have already been answered or even fix
<!-- BUG REPORT TEMPLATE -->
### UIkit version
<!-- Check if the issue is reproducible with the latest stable version. -->
3.0.0-rc.13
3.0.0-rc.14

### Browser

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

##WIP
## 3.0.0 rc 14 (September 4, 2018)

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit-rtl.css
@@ -1,4 +1,4 @@
/*! UIkit 3.0.0-rc.13 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */
/*! UIkit 3.0.0-rc.14 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit-rtl.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/uikit.css
@@ -1,4 +1,4 @@
/*! UIkit 3.0.0-rc.13 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */
/*! UIkit 3.0.0-rc.14 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit.min.css

Large diffs are not rendered by default.

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

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

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

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/js/uikit.js
@@ -1,4 +1,4 @@
/*! UIkit 3.0.0-rc.13 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */
/*! UIkit 3.0.0-rc.14 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
Expand Down Expand Up @@ -1128,7 +1128,7 @@
}

function removeClasses(element, cls) {
attr(element, 'class', function (value) { return (value || '').replace(new RegExp(("\b" + cls + "\b"), 'g'), ''); });
attr(element, 'class', function (value) { return (value || '').replace(new RegExp(("\\b" + cls + "\\b"), 'g'), ''); });
}

function replaceClass(element) {
Expand Down Expand Up @@ -8040,7 +8040,7 @@

}

UIkit.version = '3.0.0-rc.13';
UIkit.version = '3.0.0-rc.14';

core(UIkit);

Expand Down
4 changes: 2 additions & 2 deletions dist/js/uikit.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "uikit",
"title": "UIkit",
"description": "UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.",
"version": "3.0.0-rc.13",
"version": "3.0.0-rc.14",
"main": "dist/js/uikit.js",
"style": "dist/css/uikit.css",
"scripts": {
Expand Down
200 changes: 100 additions & 100 deletions src/scss/mixins-theme.scss
Expand Up @@ -1054,6 +1054,54 @@
}

}
@mixin hook-label(){
border-radius: $label-border-radius;
text-transform: $label-text-transform;
}
@mixin hook-label-success(){}
@mixin hook-label-warning(){}
@mixin hook-label-danger(){}
@mixin hook-label-misc(){}
@mixin hook-inverse-label(){}
@mixin hook-inverse-component-label(){

.uk-label {
background-color: $inverse-label-background;
color: $inverse-label-color;
@if(mixin-exists(hook-inverse-label)) {@include hook-inverse-label();}
}

}
@mixin hook-leader(){}
@mixin hook-leader-misc(){}
@mixin hook-inverse-leader(){}
@mixin hook-inverse-component-leader(){

.uk-leader-fill {
@if(mixin-exists(hook-inverse-leader)) {@include hook-inverse-leader();}
}

}
@mixin hook-lightbox(){}
@mixin hook-lightbox-item(){}
@mixin hook-lightbox-toolbar(){}
@mixin hook-lightbox-toolbar-icon(){}
@mixin hook-lightbox-toolbar-icon-hover(){}
@mixin hook-lightbox-button(){}
@mixin hook-lightbox-button-hover(){}
@mixin hook-lightbox-misc(){}
@mixin hook-link-muted(){}
@mixin hook-link-muted-hover(){}
@mixin hook-link-text(){}
@mixin hook-link-text-hover(){}
@mixin hook-link-heading(){}
@mixin hook-link-heading-hover(){}
@mixin hook-link-reset(){}
@mixin hook-link-misc(){}
@mixin hook-inverse-link-muted(){}
@mixin hook-inverse-link-muted-hover(){}
@mixin hook-inverse-link-text-hover(){}
@mixin hook-inverse-link-heading-hover(){}
@mixin hook-inverse-component-link(){

a.uk-link-muted,
Expand Down Expand Up @@ -1081,6 +1129,27 @@
}

}
@mixin hook-list-divider(){}
@mixin hook-list-striped(){

&:nth-of-type(odd) {
border-top: $list-striped-border-width solid $list-striped-border;
border-bottom: $list-striped-border-width solid $list-striped-border;
}

}
@mixin hook-list-bullet(){}
@mixin hook-list-misc(){}
@mixin hook-inverse-list-divider(){}
@mixin hook-inverse-list-striped(){

&:nth-of-type(odd) {
border-top-color: $inverse-global-border;
border-bottom-color: $inverse-global-border;
}

}
@mixin hook-inverse-list-bullet(){}
@mixin hook-inverse-component-list(){

.uk-list-divider > li:nth-child(n+2) {
Expand All @@ -1099,6 +1168,29 @@
@if(mixin-exists(hook-inverse-list-bullet)) {@include hook-inverse-list-bullet();}
}

}
@mixin hook-margin-misc(){}
@mixin hook-marker(){
border-radius: 500px;
}
@mixin hook-marker-hover(){}
@mixin hook-marker-misc(){}
@mixin hook-inverse-marker(){}
@mixin hook-inverse-marker-hover(){}
@mixin hook-inverse-component-marker(){

.uk-marker {
background: $inverse-marker-background;
color: $inverse-marker-color;
@if(mixin-exists(hook-inverse-marker)) {@include hook-inverse-marker();}
}

.uk-marker:hover,
.uk-marker:focus {
color: $inverse-marker-hover-color;
@if(mixin-exists(hook-inverse-marker-hover)) {@include hook-inverse-marker-hover();}
}

}
@mixin hook-inverse-component-totop(){

Expand All @@ -1118,15 +1210,6 @@
@if(mixin-exists(hook-inverse-totop-active)) {@include hook-inverse-totop-active();}
}

}
@mixin hook-inverse-component-label(){

.uk-label {
background-color: $inverse-label-background;
color: $inverse-label-color;
@if(mixin-exists(hook-inverse-label)) {@include hook-inverse-label();}
}

}
@mixin hook-inverse-component-search(){

Expand Down Expand Up @@ -1517,89 +1600,6 @@
@include hook-inverse-component-column();
@include hook-inverse-component-utility();
}
@mixin hook-label(){
border-radius: $label-border-radius;
text-transform: $label-text-transform;
}
@mixin hook-label-success(){}
@mixin hook-label-warning(){}
@mixin hook-label-danger(){}
@mixin hook-label-misc(){}
@mixin hook-inverse-label(){}
@mixin hook-leader(){}
@mixin hook-leader-misc(){}
@mixin hook-inverse-leader(){}
@mixin hook-inverse-component-leader(){

.uk-leader-fill {
@if(mixin-exists(hook-inverse-leader)) {@include hook-inverse-leader();}
}

}
@mixin hook-lightbox(){}
@mixin hook-lightbox-item(){}
@mixin hook-lightbox-toolbar(){}
@mixin hook-lightbox-toolbar-icon(){}
@mixin hook-lightbox-toolbar-icon-hover(){}
@mixin hook-lightbox-button(){}
@mixin hook-lightbox-button-hover(){}
@mixin hook-lightbox-misc(){}
@mixin hook-link-muted(){}
@mixin hook-link-muted-hover(){}
@mixin hook-link-text(){}
@mixin hook-link-text-hover(){}
@mixin hook-link-heading(){}
@mixin hook-link-heading-hover(){}
@mixin hook-link-reset(){}
@mixin hook-link-misc(){}
@mixin hook-inverse-link-muted(){}
@mixin hook-inverse-link-muted-hover(){}
@mixin hook-inverse-link-text-hover(){}
@mixin hook-inverse-link-heading-hover(){}
@mixin hook-list-divider(){}
@mixin hook-list-striped(){

&:nth-of-type(odd) {
border-top: $list-striped-border-width solid $list-striped-border;
border-bottom: $list-striped-border-width solid $list-striped-border;
}

}
@mixin hook-list-bullet(){}
@mixin hook-list-misc(){}
@mixin hook-inverse-list-divider(){}
@mixin hook-inverse-list-striped(){

&:nth-of-type(odd) {
border-top-color: $inverse-global-border;
border-bottom-color: $inverse-global-border;
}

}
@mixin hook-inverse-list-bullet(){}
@mixin hook-margin-misc(){}
@mixin hook-marker(){
border-radius: 500px;
}
@mixin hook-marker-hover(){}
@mixin hook-marker-misc(){}
@mixin hook-inverse-marker(){}
@mixin hook-inverse-marker-hover(){}
@mixin hook-inverse-component-marker(){

.uk-marker {
background: $inverse-marker-background;
color: $inverse-marker-color;
@if(mixin-exists(hook-inverse-marker)) {@include hook-inverse-marker();}
}

.uk-marker:hover,
.uk-marker:focus {
color: $inverse-marker-hover-color;
@if(mixin-exists(hook-inverse-marker-hover)) {@include hook-inverse-marker-hover();}
}

}
@mixin hook-modal(){}
@mixin hook-modal-dialog(){}
@mixin hook-modal-full(){}
Expand Down Expand Up @@ -1649,6 +1649,14 @@
@mixin hook-inverse-nav-primary-item-active(){}
@mixin hook-inverse-nav-primary-header(){}
@mixin hook-inverse-nav-primary-divider(){}
@mixin hook-notification(){}
@mixin hook-notification-message(){}
@mixin hook-notification-close(){}
@mixin hook-notification-message-primary(){}
@mixin hook-notification-message-success(){}
@mixin hook-notification-message-warning(){}
@mixin hook-notification-message-danger(){}
@mixin hook-notification-misc(){}
@mixin hook-navbar(){}
@mixin hook-navbar-container(){}
@mixin hook-navbar-nav-item(){
Expand Down Expand Up @@ -1722,14 +1730,6 @@
@mixin hook-inverse-navbar-item(){}
@mixin hook-inverse-navbar-toggle(){}
@mixin hook-inverse-navbar-toggle-hover(){}
@mixin hook-notification(){}
@mixin hook-notification-message(){}
@mixin hook-notification-close(){}
@mixin hook-notification-message-primary(){}
@mixin hook-notification-message-success(){}
@mixin hook-notification-message-warning(){}
@mixin hook-notification-message-danger(){}
@mixin hook-notification-misc(){}
@mixin hook-offcanvas-bar(){}
@mixin hook-offcanvas-close(){}
@mixin hook-offcanvas-overlay(){}
Expand Down

0 comments on commit a7f7466

Please sign in to comment.