jekyll-uikit 0.1.5 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +81 -0
- data/_data/navigation.yml +25 -0
- data/_includes/algolia.html +106 -0
- data/_includes/buymeacoffee.html +10 -0
- data/_includes/disqus.html +19 -0
- data/_includes/footer-links.html +11 -0
- data/_includes/footer.html +14 -0
- data/_includes/google_analytics.html +14 -0
- data/_includes/head.html +82 -0
- data/_includes/header.html +62 -0
- data/_includes/pagination.html +24 -0
- data/_includes/post-pagination.html +22 -0
- data/_includes/search_box.html +17 -0
- data/_includes/totop.html +3 -0
- data/_layouts/archive.html +51 -0
- data/_layouts/default.html +10 -0
- data/_layouts/feed.html +26 -0
- data/_layouts/home.html +84 -0
- data/_layouts/page.html +29 -0
- data/_layouts/post.html +46 -0
- data/assets/apple-touch-icon.png +0 -0
- data/assets/avatar-icon.png +0 -0
- data/assets/css/syntax.css +3 -0
- data/assets/css/uikit.min.css +1 -0
- data/assets/img/algolia.png +0 -0
- data/assets/img/archive-page.png +0 -0
- data/assets/img/boats.jpg +0 -0
- data/assets/img/coffee.png +0 -0
- data/assets/img/designer.png +0 -0
- data/assets/img/home-layout.png +0 -0
- data/assets/img/post-tags.png +0 -0
- data/assets/img/search.png +0 -0
- data/assets/img/site-build.png +0 -0
- data/assets/img/tag-cloud.png +0 -0
- data/assets/img/thisisfine.gif +0 -0
- data/assets/img/uikit.jpg +0 -0
- data/assets/img/web-mockup.png +0 -0
- data/assets/img/writer.jpg +0 -0
- data/assets/js/uikit-icons.min.js +3 -0
- data/assets/js/uikit.min.js +3 -0
- data/assets/node_modules/uikit/.github/ISSUE_TEMPLATE.md +28 -0
- data/assets/node_modules/uikit/CHANGELOG.md +603 -0
- data/assets/node_modules/uikit/CONTRIBUTING.md +80 -0
- data/assets/node_modules/uikit/LICENSE.md +7 -0
- data/assets/node_modules/uikit/README.md +88 -0
- data/assets/node_modules/uikit/build/build.js +25 -0
- data/assets/node_modules/uikit/build/icons.js +23 -0
- data/assets/node_modules/uikit/build/less.js +69 -0
- data/assets/node_modules/uikit/build/prefix.js +27 -0
- data/assets/node_modules/uikit/build/release.js +20 -0
- data/assets/node_modules/uikit/build/scope.js +16 -0
- data/assets/node_modules/uikit/build/scss.js +291 -0
- data/assets/node_modules/uikit/build/util.js +131 -0
- data/assets/node_modules/uikit/circle.yml +11 -0
- data/assets/node_modules/uikit/dist/css/uikit-rtl.css +12344 -0
- data/assets/node_modules/uikit/dist/css/uikit-rtl.min.css +1 -0
- data/assets/node_modules/uikit/dist/css/uikit.css +12344 -0
- data/assets/node_modules/uikit/dist/css/uikit.min.css +1 -0
- data/assets/node_modules/uikit/dist/js/uikit-icons.js +262 -0
- data/assets/node_modules/uikit/dist/js/uikit-icons.min.js +3 -0
- data/assets/node_modules/uikit/dist/js/uikit.js +10491 -0
- data/assets/node_modules/uikit/dist/js/uikit.min.js +3 -0
- data/assets/node_modules/uikit/package.json +87 -0
- data/assets/node_modules/uikit/src/images/backgrounds/accordion-close.svg +4 -0
- data/assets/node_modules/uikit/src/images/backgrounds/accordion-open.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/divider-icon.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/form-checkbox-indeterminate.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/form-checkbox.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/form-radio.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/form-select.svg +4 -0
- data/assets/node_modules/uikit/src/images/backgrounds/list-bullet.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/nav-parent-close.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/nav-parent-open.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/close-icon.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/close-large.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/marker.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/navbar-toggle-icon.svg +5 -0
- data/assets/node_modules/uikit/src/images/components/overlay-icon.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/pagination-next.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/pagination-previous.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/search-icon.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/search-large.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/search-navbar.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/slidenav-next-large.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/slidenav-next.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/slidenav-previous-large.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/slidenav-previous.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/spinner.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/totop.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/500px.svg +30 -0
- data/assets/node_modules/uikit/src/images/icons/album.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/arrow-down.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/arrow-left.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/arrow-right.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/arrow-up.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/ban.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/behance.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/bell.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/bold.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/bolt.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/bookmark.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/calendar.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/camera.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/cart.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/check.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/chevron-down.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/chevron-left.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/chevron-right.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/chevron-up.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/clock.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/close.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/cloud-download.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/cloud-upload.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/code.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/cog.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/comment.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/commenting.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/comments.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/copy.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/credit-card.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/database.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/desktop.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/download.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/dribbble.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/expand.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/facebook.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/file-edit.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/file.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/flickr.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/folder.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/forward.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/foursquare.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/future.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/git-branch.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/git-fork.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/github-alt.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/github.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/gitter.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/google-plus.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/google.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/grid.svg +11 -0
- data/assets/node_modules/uikit/src/images/icons/happy.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/hashtag.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/heart.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/history.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/home.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/image.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/info.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/instagram.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/italic.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/joomla.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/laptop.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/lifesaver.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/link.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/linkedin.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/list.svg +8 -0
- data/assets/node_modules/uikit/src/images/icons/location.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/lock.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/mail.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/menu.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/minus-circle.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/minus.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/more-vertical.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/more.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/move.svg +8 -0
- data/assets/node_modules/uikit/src/images/icons/nut.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/pagekit.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/paint-bucket.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/pencil.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/phone-landscape.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/phone.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/pinterest.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/play-circle.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/play.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/plus-circle.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/plus.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/pull.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/push.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/question.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/quote-right.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/receiver.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/refresh.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/reply.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/rss.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/search.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/server.svg +15 -0
- data/assets/node_modules/uikit/src/images/icons/settings.svg +11 -0
- data/assets/node_modules/uikit/src/images/icons/shrink.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/sign-in.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/sign-out.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/social.svg +7 -0
- data/assets/node_modules/uikit/src/images/icons/soundcloud.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/star.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/strikethrough.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/table.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/tablet-landscape.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/tablet.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/tag.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/thumbnails.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/trash.svg +7 -0
- data/assets/node_modules/uikit/src/images/icons/triangle-down.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/triangle-left.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/triangle-right.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/triangle-up.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/tripadvisor.svg +19 -0
- data/assets/node_modules/uikit/src/images/icons/tumblr.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/tv.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/twitter.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/uikit.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/unlock.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/upload.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/user.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/users.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/video-camera.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/vimeo.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/warning.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/whatsapp.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/wordpress.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/world.svg +7 -0
- data/assets/node_modules/uikit/src/images/icons/xing.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/yelp.svg +15 -0
- data/assets/node_modules/uikit/src/images/icons/youtube.svg +3 -0
- data/assets/node_modules/uikit/src/js/api/boot.js +82 -0
- data/assets/node_modules/uikit/src/js/api/component.js +84 -0
- data/assets/node_modules/uikit/src/js/api/global.js +119 -0
- data/assets/node_modules/uikit/src/js/api/hooks.js +121 -0
- data/assets/node_modules/uikit/src/js/api/index.js +25 -0
- data/assets/node_modules/uikit/src/js/api/instance.js +71 -0
- data/assets/node_modules/uikit/src/js/api/state.js +283 -0
- data/assets/node_modules/uikit/src/js/components/countdown.js +167 -0
- data/assets/node_modules/uikit/src/js/components/grid-parallax.js +122 -0
- data/assets/node_modules/uikit/src/js/components/internal/lightbox-animations.js +56 -0
- data/assets/node_modules/uikit/src/js/components/internal/slideshow-animations.js +126 -0
- data/assets/node_modules/uikit/src/js/components/lightbox.js +469 -0
- data/assets/node_modules/uikit/src/js/components/notification.js +128 -0
- data/assets/node_modules/uikit/src/js/components/parallax.js +395 -0
- data/assets/node_modules/uikit/src/js/components/slideshow.js +179 -0
- data/assets/node_modules/uikit/src/js/components/sortable.js +333 -0
- data/assets/node_modules/uikit/src/js/components/tooltip.js +127 -0
- data/assets/node_modules/uikit/src/js/components/upload.js +208 -0
- data/assets/node_modules/uikit/src/js/core/accordion.js +124 -0
- data/assets/node_modules/uikit/src/js/core/alert.js +54 -0
- data/assets/node_modules/uikit/src/js/core/cover.js +61 -0
- data/assets/node_modules/uikit/src/js/core/drop.js +416 -0
- data/assets/node_modules/uikit/src/js/core/dropdown.js +5 -0
- data/assets/node_modules/uikit/src/js/core/form-custom.js +88 -0
- data/assets/node_modules/uikit/src/js/core/gif.js +25 -0
- data/assets/node_modules/uikit/src/js/core/grid.js +31 -0
- data/assets/node_modules/uikit/src/js/core/height-match.js +104 -0
- data/assets/node_modules/uikit/src/js/core/height-viewport.js +98 -0
- data/assets/node_modules/uikit/src/js/core/hover.js +31 -0
- data/assets/node_modules/uikit/src/js/core/icon.js +180 -0
- data/assets/node_modules/uikit/src/js/core/index.js +85 -0
- data/assets/node_modules/uikit/src/js/core/leader.js +68 -0
- data/assets/node_modules/uikit/src/js/core/margin.js +100 -0
- data/assets/node_modules/uikit/src/js/core/modal.js +184 -0
- data/assets/node_modules/uikit/src/js/core/nav.js +15 -0
- data/assets/node_modules/uikit/src/js/core/navbar.js +205 -0
- data/assets/node_modules/uikit/src/js/core/offcanvas.js +224 -0
- data/assets/node_modules/uikit/src/js/core/responsive.js +37 -0
- data/assets/node_modules/uikit/src/js/core/scroll.js +76 -0
- data/assets/node_modules/uikit/src/js/core/scrollspy-nav.js +108 -0
- data/assets/node_modules/uikit/src/js/core/scrollspy.js +140 -0
- data/assets/node_modules/uikit/src/js/core/sticky.js +308 -0
- data/assets/node_modules/uikit/src/js/core/svg.js +193 -0
- data/assets/node_modules/uikit/src/js/core/switcher.js +149 -0
- data/assets/node_modules/uikit/src/js/core/tab.js +36 -0
- data/assets/node_modules/uikit/src/js/core/toggle.js +116 -0
- data/assets/node_modules/uikit/src/js/core/video.js +46 -0
- data/assets/node_modules/uikit/src/js/icons.js +17 -0
- data/assets/node_modules/uikit/src/js/mixin/class.js +9 -0
- data/assets/node_modules/uikit/src/js/mixin/container.js +21 -0
- data/assets/node_modules/uikit/src/js/mixin/index.js +17 -0
- data/assets/node_modules/uikit/src/js/mixin/internal/slideshow-animations.js +45 -0
- data/assets/node_modules/uikit/src/js/mixin/modal.js +229 -0
- data/assets/node_modules/uikit/src/js/mixin/position.js +68 -0
- data/assets/node_modules/uikit/src/js/mixin/slideshow.js +613 -0
- data/assets/node_modules/uikit/src/js/mixin/togglable.js +207 -0
- data/assets/node_modules/uikit/src/js/uikit-core.js +15 -0
- data/assets/node_modules/uikit/src/js/uikit.js +27 -0
- data/assets/node_modules/uikit/src/js/util/attr.js +55 -0
- data/assets/node_modules/uikit/src/js/util/class.js +75 -0
- data/assets/node_modules/uikit/src/js/util/dom.js +414 -0
- data/assets/node_modules/uikit/src/js/util/env.js +54 -0
- data/assets/node_modules/uikit/src/js/util/event.js +104 -0
- data/assets/node_modules/uikit/src/js/util/fastdom.js +62 -0
- data/assets/node_modules/uikit/src/js/util/index.js +14 -0
- data/assets/node_modules/uikit/src/js/util/lang.js +276 -0
- data/assets/node_modules/uikit/src/js/util/mouse.js +88 -0
- data/assets/node_modules/uikit/src/js/util/options.js +85 -0
- data/assets/node_modules/uikit/src/js/util/player.js +139 -0
- data/assets/node_modules/uikit/src/js/util/position.js +298 -0
- data/assets/node_modules/uikit/src/js/util/promise.js +175 -0
- data/assets/node_modules/uikit/src/js/util/selector.js +204 -0
- data/assets/node_modules/uikit/src/js/util/style.js +120 -0
- data/assets/node_modules/uikit/src/js/util/touch.js +109 -0
- data/assets/node_modules/uikit/src/less/components/_import.less +90 -0
- data/assets/node_modules/uikit/src/less/components/accordion.less +112 -0
- data/assets/node_modules/uikit/src/less/components/alert.less +147 -0
- data/assets/node_modules/uikit/src/less/components/align.less +142 -0
- data/assets/node_modules/uikit/src/less/components/animation.less +638 -0
- data/assets/node_modules/uikit/src/less/components/article.less +113 -0
- data/assets/node_modules/uikit/src/less/components/background.less +136 -0
- data/assets/node_modules/uikit/src/less/components/badge.less +104 -0
- data/assets/node_modules/uikit/src/less/components/base.less +740 -0
- data/assets/node_modules/uikit/src/less/components/breadcrumb.less +162 -0
- data/assets/node_modules/uikit/src/less/components/button.less +560 -0
- data/assets/node_modules/uikit/src/less/components/card.less +363 -0
- data/assets/node_modules/uikit/src/less/components/close.less +70 -0
- data/assets/node_modules/uikit/src/less/components/column.less +285 -0
- data/assets/node_modules/uikit/src/less/components/comment.less +171 -0
- data/assets/node_modules/uikit/src/less/components/container.less +106 -0
- data/assets/node_modules/uikit/src/less/components/countdown.less +145 -0
- data/assets/node_modules/uikit/src/less/components/cover.less +58 -0
- data/assets/node_modules/uikit/src/less/components/description-list.less +71 -0
- data/assets/node_modules/uikit/src/less/components/divider.less +147 -0
- data/assets/node_modules/uikit/src/less/components/dotnav.less +188 -0
- data/assets/node_modules/uikit/src/less/components/drop.less +74 -0
- data/assets/node_modules/uikit/src/less/components/dropdown.less +150 -0
- data/assets/node_modules/uikit/src/less/components/flex.less +476 -0
- data/assets/node_modules/uikit/src/less/components/form-range.less +185 -0
- data/assets/node_modules/uikit/src/less/components/form.less +848 -0
- data/assets/node_modules/uikit/src/less/components/grid.less +367 -0
- data/assets/node_modules/uikit/src/less/components/heading.less +238 -0
- data/assets/node_modules/uikit/src/less/components/icon.less +275 -0
- data/assets/node_modules/uikit/src/less/components/iconnav.less +166 -0
- data/assets/node_modules/uikit/src/less/components/inverse.less +52 -0
- data/assets/node_modules/uikit/src/less/components/label.less +110 -0
- data/assets/node_modules/uikit/src/less/components/lightbox.less +247 -0
- data/assets/node_modules/uikit/src/less/components/link.less +122 -0
- data/assets/node_modules/uikit/src/less/components/list.less +205 -0
- data/assets/node_modules/uikit/src/less/components/margin.less +163 -0
- data/assets/node_modules/uikit/src/less/components/marker.less +77 -0
- data/assets/node_modules/uikit/src/less/components/mixin.less +20 -0
- data/assets/node_modules/uikit/src/less/components/modal.less +376 -0
- data/assets/node_modules/uikit/src/less/components/nav.less +440 -0
- data/assets/node_modules/uikit/src/less/components/navbar.less +601 -0
- data/assets/node_modules/uikit/src/less/components/notification.less +190 -0
- data/assets/node_modules/uikit/src/less/components/offcanvas.less +313 -0
- data/assets/node_modules/uikit/src/less/components/overlay.less +85 -0
- data/assets/node_modules/uikit/src/less/components/padding.less +81 -0
- data/assets/node_modules/uikit/src/less/components/pagination.less +157 -0
- data/assets/node_modules/uikit/src/less/components/placeholder.less +45 -0
- data/assets/node_modules/uikit/src/less/components/position.less +279 -0
- data/assets/node_modules/uikit/src/less/components/print.less +61 -0
- data/assets/node_modules/uikit/src/less/components/progress.less +102 -0
- data/assets/node_modules/uikit/src/less/components/search.less +394 -0
- data/assets/node_modules/uikit/src/less/components/section.less +224 -0
- data/assets/node_modules/uikit/src/less/components/slidenav.less +142 -0
- data/assets/node_modules/uikit/src/less/components/slideshow.less +90 -0
- data/assets/node_modules/uikit/src/less/components/sortable.less +101 -0
- data/assets/node_modules/uikit/src/less/components/spinner.less +95 -0
- data/assets/node_modules/uikit/src/less/components/sticky.less +59 -0
- data/assets/node_modules/uikit/src/less/components/subnav.less +307 -0
- data/assets/node_modules/uikit/src/less/components/switcher.less +47 -0
- data/assets/node_modules/uikit/src/less/components/tab.less +226 -0
- data/assets/node_modules/uikit/src/less/components/table.less +343 -0
- data/assets/node_modules/uikit/src/less/components/text.less +276 -0
- data/assets/node_modules/uikit/src/less/components/thumbnav.less +146 -0
- data/assets/node_modules/uikit/src/less/components/tile.less +224 -0
- data/assets/node_modules/uikit/src/less/components/tooltip.less +84 -0
- data/assets/node_modules/uikit/src/less/components/totop.less +89 -0
- data/assets/node_modules/uikit/src/less/components/transition.less +195 -0
- data/assets/node_modules/uikit/src/less/components/utility.less +632 -0
- data/assets/node_modules/uikit/src/less/components/variables.less +117 -0
- data/assets/node_modules/uikit/src/less/components/visibility.less +136 -0
- data/assets/node_modules/uikit/src/less/components/width.less +418 -0
- data/assets/node_modules/uikit/src/less/theme/_import.less +78 -0
- data/assets/node_modules/uikit/src/less/theme/accordion.less +76 -0
- data/assets/node_modules/uikit/src/less/theme/alert.less +76 -0
- data/assets/node_modules/uikit/src/less/theme/align.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/animation.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/article.less +60 -0
- data/assets/node_modules/uikit/src/less/theme/background.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/badge.less +29 -0
- data/assets/node_modules/uikit/src/less/theme/base.less +134 -0
- data/assets/node_modules/uikit/src/less/theme/breadcrumb.less +45 -0
- data/assets/node_modules/uikit/src/less/theme/button.less +219 -0
- data/assets/node_modules/uikit/src/less/theme/card.less +193 -0
- data/assets/node_modules/uikit/src/less/theme/close.less +34 -0
- data/assets/node_modules/uikit/src/less/theme/column.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/comment.less +72 -0
- data/assets/node_modules/uikit/src/less/theme/container.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/countdown.less +53 -0
- data/assets/node_modules/uikit/src/less/theme/description-list.less +36 -0
- data/assets/node_modules/uikit/src/less/theme/divider.less +41 -0
- data/assets/node_modules/uikit/src/less/theme/dotnav.less +59 -0
- data/assets/node_modules/uikit/src/less/theme/drop.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/dropdown.less +45 -0
- data/assets/node_modules/uikit/src/less/theme/form-range.less +45 -0
- data/assets/node_modules/uikit/src/less/theme/form.less +150 -0
- data/assets/node_modules/uikit/src/less/theme/grid.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/heading.less +59 -0
- data/assets/node_modules/uikit/src/less/theme/icon.less +55 -0
- data/assets/node_modules/uikit/src/less/theme/iconnav.less +34 -0
- data/assets/node_modules/uikit/src/less/theme/inverse.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/label.less +46 -0
- data/assets/node_modules/uikit/src/less/theme/lightbox.less +48 -0
- data/assets/node_modules/uikit/src/less/theme/link.less +45 -0
- data/assets/node_modules/uikit/src/less/theme/list.less +53 -0
- data/assets/node_modules/uikit/src/less/theme/margin.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/marker.less +31 -0
- data/assets/node_modules/uikit/src/less/theme/modal.less +89 -0
- data/assets/node_modules/uikit/src/less/theme/nav.less +94 -0
- data/assets/node_modules/uikit/src/less/theme/navbar.less +179 -0
- data/assets/node_modules/uikit/src/less/theme/notification.less +44 -0
- data/assets/node_modules/uikit/src/less/theme/offcanvas.less +32 -0
- data/assets/node_modules/uikit/src/less/theme/overlay.less +33 -0
- data/assets/node_modules/uikit/src/less/theme/padding.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/pagination.less +44 -0
- data/assets/node_modules/uikit/src/less/theme/placeholder.less +29 -0
- data/assets/node_modules/uikit/src/less/theme/position.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/progress.less +27 -0
- data/assets/node_modules/uikit/src/less/theme/search.less +73 -0
- data/assets/node_modules/uikit/src/less/theme/section.less +32 -0
- data/assets/node_modules/uikit/src/less/theme/slidenav.less +55 -0
- data/assets/node_modules/uikit/src/less/theme/sortable.less +38 -0
- data/assets/node_modules/uikit/src/less/theme/spinner.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/sticky.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/subnav.less +81 -0
- data/assets/node_modules/uikit/src/less/theme/tab.less +139 -0
- data/assets/node_modules/uikit/src/less/theme/table.less +79 -0
- data/assets/node_modules/uikit/src/less/theme/text.less +59 -0
- data/assets/node_modules/uikit/src/less/theme/thumbnav.less +62 -0
- data/assets/node_modules/uikit/src/less/theme/tile.less +32 -0
- data/assets/node_modules/uikit/src/less/theme/tooltip.less +20 -0
- data/assets/node_modules/uikit/src/less/theme/totop.less +35 -0
- data/assets/node_modules/uikit/src/less/theme/transition.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/utility.less +60 -0
- data/assets/node_modules/uikit/src/less/theme/variables.less +36 -0
- data/assets/node_modules/uikit/src/less/theme/width.less +14 -0
- data/assets/node_modules/uikit/src/less/uikit.less +5 -0
- data/assets/node_modules/uikit/src/less/uikit.theme.less +11 -0
- data/assets/node_modules/uikit/src/scss/components/_import.components.scss +56 -0
- data/assets/node_modules/uikit/src/scss/components/_import.scss +90 -0
- data/assets/node_modules/uikit/src/scss/components/_import.utilities.scss +19 -0
- data/assets/node_modules/uikit/src/scss/components/accordion.scss +102 -0
- data/assets/node_modules/uikit/src/scss/components/alert.scss +147 -0
- data/assets/node_modules/uikit/src/scss/components/align.scss +142 -0
- data/assets/node_modules/uikit/src/scss/components/animation.scss +638 -0
- data/assets/node_modules/uikit/src/scss/components/article.scss +102 -0
- data/assets/node_modules/uikit/src/scss/components/background.scss +136 -0
- data/assets/node_modules/uikit/src/scss/components/badge.scss +90 -0
- data/assets/node_modules/uikit/src/scss/components/base.scss +641 -0
- data/assets/node_modules/uikit/src/scss/components/breadcrumb.scss +130 -0
- data/assets/node_modules/uikit/src/scss/components/button.scss +453 -0
- data/assets/node_modules/uikit/src/scss/components/card.scss +363 -0
- data/assets/node_modules/uikit/src/scss/components/close.scss +57 -0
- data/assets/node_modules/uikit/src/scss/components/column.scss +276 -0
- data/assets/node_modules/uikit/src/scss/components/comment.scss +171 -0
- data/assets/node_modules/uikit/src/scss/components/container.scss +106 -0
- data/assets/node_modules/uikit/src/scss/components/countdown.scss +126 -0
- data/assets/node_modules/uikit/src/scss/components/cover.scss +58 -0
- data/assets/node_modules/uikit/src/scss/components/description-list.scss +71 -0
- data/assets/node_modules/uikit/src/scss/components/divider.scss +129 -0
- data/assets/node_modules/uikit/src/scss/components/dotnav.scss +165 -0
- data/assets/node_modules/uikit/src/scss/components/drop.scss +74 -0
- data/assets/node_modules/uikit/src/scss/components/dropdown.scss +150 -0
- data/assets/node_modules/uikit/src/scss/components/flex.scss +476 -0
- data/assets/node_modules/uikit/src/scss/components/form-range.scss +185 -0
- data/assets/node_modules/uikit/src/scss/components/form.scss +771 -0
- data/assets/node_modules/uikit/src/scss/components/grid.scss +362 -0
- data/assets/node_modules/uikit/src/scss/components/heading.scss +212 -0
- data/assets/node_modules/uikit/src/scss/components/icon.scss +229 -0
- data/assets/node_modules/uikit/src/scss/components/iconnav.scss +148 -0
- data/assets/node_modules/uikit/src/scss/components/inverse.scss +46 -0
- data/assets/node_modules/uikit/src/scss/components/label.scss +102 -0
- data/assets/node_modules/uikit/src/scss/components/lightbox.scss +247 -0
- data/assets/node_modules/uikit/src/scss/components/link.scss +102 -0
- data/assets/node_modules/uikit/src/scss/components/list.scss +187 -0
- data/assets/node_modules/uikit/src/scss/components/margin.scss +163 -0
- data/assets/node_modules/uikit/src/scss/components/marker.scss +63 -0
- data/assets/node_modules/uikit/src/scss/components/mixin.scss +32 -0
- data/assets/node_modules/uikit/src/scss/components/modal.scss +376 -0
- data/assets/node_modules/uikit/src/scss/components/nav.scss +357 -0
- data/assets/node_modules/uikit/src/scss/components/navbar.scss +560 -0
- data/assets/node_modules/uikit/src/scss/components/notification.scss +190 -0
- data/assets/node_modules/uikit/src/scss/components/offcanvas.scss +313 -0
- data/assets/node_modules/uikit/src/scss/components/overlay.scss +85 -0
- data/assets/node_modules/uikit/src/scss/components/padding.scss +81 -0
- data/assets/node_modules/uikit/src/scss/components/pagination.scss +134 -0
- data/assets/node_modules/uikit/src/scss/components/placeholder.scss +45 -0
- data/assets/node_modules/uikit/src/scss/components/position.scss +279 -0
- data/assets/node_modules/uikit/src/scss/components/print.scss +61 -0
- data/assets/node_modules/uikit/src/scss/components/progress.scss +102 -0
- data/assets/node_modules/uikit/src/scss/components/search.scss +335 -0
- data/assets/node_modules/uikit/src/scss/components/section.scss +224 -0
- data/assets/node_modules/uikit/src/scss/components/slidenav.scss +124 -0
- data/assets/node_modules/uikit/src/scss/components/slideshow.scss +90 -0
- data/assets/node_modules/uikit/src/scss/components/sortable.scss +101 -0
- data/assets/node_modules/uikit/src/scss/components/spinner.scss +95 -0
- data/assets/node_modules/uikit/src/scss/components/sticky.scss +59 -0
- data/assets/node_modules/uikit/src/scss/components/subnav.scss +242 -0
- data/assets/node_modules/uikit/src/scss/components/switcher.scss +47 -0
- data/assets/node_modules/uikit/src/scss/components/tab.scss +199 -0
- data/assets/node_modules/uikit/src/scss/components/table.scss +306 -0
- data/assets/node_modules/uikit/src/scss/components/text.scss +261 -0
- data/assets/node_modules/uikit/src/scss/components/thumbnav.scss +131 -0
- data/assets/node_modules/uikit/src/scss/components/tile.scss +224 -0
- data/assets/node_modules/uikit/src/scss/components/tooltip.scss +84 -0
- data/assets/node_modules/uikit/src/scss/components/totop.scss +71 -0
- data/assets/node_modules/uikit/src/scss/components/transition.scss +195 -0
- data/assets/node_modules/uikit/src/scss/components/utility.scss +607 -0
- data/assets/node_modules/uikit/src/scss/components/variables.scss +117 -0
- data/assets/node_modules/uikit/src/scss/components/visibility.scss +136 -0
- data/assets/node_modules/uikit/src/scss/components/width.scss +418 -0
- data/assets/node_modules/uikit/src/scss/mixins-theme.scss +2060 -0
- data/assets/node_modules/uikit/src/scss/mixins.scss +1630 -0
- data/assets/node_modules/uikit/src/scss/theme/_import.scss +78 -0
- data/assets/node_modules/uikit/src/scss/theme/accordion.scss +54 -0
- data/assets/node_modules/uikit/src/scss/theme/alert.scss +46 -0
- data/assets/node_modules/uikit/src/scss/theme/align.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/animation.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/article.scss +51 -0
- data/assets/node_modules/uikit/src/scss/theme/background.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/badge.scss +29 -0
- data/assets/node_modules/uikit/src/scss/theme/base.scss +116 -0
- data/assets/node_modules/uikit/src/scss/theme/breadcrumb.scss +45 -0
- data/assets/node_modules/uikit/src/scss/theme/button.scss +161 -0
- data/assets/node_modules/uikit/src/scss/theme/card.scss +125 -0
- data/assets/node_modules/uikit/src/scss/theme/close.scss +29 -0
- data/assets/node_modules/uikit/src/scss/theme/column.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/comment.scss +69 -0
- data/assets/node_modules/uikit/src/scss/theme/container.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/countdown.scss +53 -0
- data/assets/node_modules/uikit/src/scss/theme/description-list.scss +32 -0
- data/assets/node_modules/uikit/src/scss/theme/divider.scss +41 -0
- data/assets/node_modules/uikit/src/scss/theme/dotnav.scss +52 -0
- data/assets/node_modules/uikit/src/scss/theme/drop.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/dropdown.scss +45 -0
- data/assets/node_modules/uikit/src/scss/theme/form-range.scss +45 -0
- data/assets/node_modules/uikit/src/scss/theme/form.scss +131 -0
- data/assets/node_modules/uikit/src/scss/theme/grid.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/heading.scss +59 -0
- data/assets/node_modules/uikit/src/scss/theme/icon.scss +50 -0
- data/assets/node_modules/uikit/src/scss/theme/iconnav.scss +34 -0
- data/assets/node_modules/uikit/src/scss/theme/inverse.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/label.scss +43 -0
- data/assets/node_modules/uikit/src/scss/theme/lightbox.scss +48 -0
- data/assets/node_modules/uikit/src/scss/theme/link.scss +45 -0
- data/assets/node_modules/uikit/src/scss/theme/list.scss +39 -0
- data/assets/node_modules/uikit/src/scss/theme/margin.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/marker.scss +29 -0
- data/assets/node_modules/uikit/src/scss/theme/modal.scss +84 -0
- data/assets/node_modules/uikit/src/scss/theme/nav.scss +94 -0
- data/assets/node_modules/uikit/src/scss/theme/navbar.scss +136 -0
- data/assets/node_modules/uikit/src/scss/theme/notification.scss +44 -0
- data/assets/node_modules/uikit/src/scss/theme/offcanvas.scss +32 -0
- data/assets/node_modules/uikit/src/scss/theme/overlay.scss +33 -0
- data/assets/node_modules/uikit/src/scss/theme/padding.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/pagination.scss +41 -0
- data/assets/node_modules/uikit/src/scss/theme/placeholder.scss +29 -0
- data/assets/node_modules/uikit/src/scss/theme/position.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/progress.scss +24 -0
- data/assets/node_modules/uikit/src/scss/theme/search.scss +73 -0
- data/assets/node_modules/uikit/src/scss/theme/section.scss +32 -0
- data/assets/node_modules/uikit/src/scss/theme/slidenav.scss +52 -0
- data/assets/node_modules/uikit/src/scss/theme/sortable.scss +38 -0
- data/assets/node_modules/uikit/src/scss/theme/spinner.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/sticky.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/subnav.scss +74 -0
- data/assets/node_modules/uikit/src/scss/theme/tab.scss +74 -0
- data/assets/node_modules/uikit/src/scss/theme/table.scss +66 -0
- data/assets/node_modules/uikit/src/scss/theme/text.scss +50 -0
- data/assets/node_modules/uikit/src/scss/theme/thumbnav.scss +42 -0
- data/assets/node_modules/uikit/src/scss/theme/tile.scss +32 -0
- data/assets/node_modules/uikit/src/scss/theme/tooltip.scss +20 -0
- data/assets/node_modules/uikit/src/scss/theme/totop.scss +32 -0
- data/assets/node_modules/uikit/src/scss/theme/transition.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/utility.scss +57 -0
- data/assets/node_modules/uikit/src/scss/theme/variables.scss +36 -0
- data/assets/node_modules/uikit/src/scss/theme/width.scss +14 -0
- data/assets/node_modules/uikit/src/scss/uikit-theme.scss +9 -0
- data/assets/node_modules/uikit/src/scss/uikit.scss +5 -0
- data/assets/node_modules/uikit/src/scss/variables-theme.scss +1080 -0
- data/assets/node_modules/uikit/src/scss/variables.scss +973 -0
- data/assets/node_modules/uikit/tests/accordion.html +209 -0
- data/assets/node_modules/uikit/tests/alert.html +125 -0
- data/assets/node_modules/uikit/tests/align.html +134 -0
- data/assets/node_modules/uikit/tests/animation.html +240 -0
- data/assets/node_modules/uikit/tests/article.html +168 -0
- data/assets/node_modules/uikit/tests/background.html +68 -0
- data/assets/node_modules/uikit/tests/badge.html +95 -0
- data/assets/node_modules/uikit/tests/base.html +234 -0
- data/assets/node_modules/uikit/tests/breadcrumb.html +35 -0
- data/assets/node_modules/uikit/tests/button.html +253 -0
- data/assets/node_modules/uikit/tests/card.html +623 -0
- data/assets/node_modules/uikit/tests/close.html +31 -0
- data/assets/node_modules/uikit/tests/column.html +72 -0
- data/assets/node_modules/uikit/tests/comment.html +208 -0
- data/assets/node_modules/uikit/tests/container.html +63 -0
- data/assets/node_modules/uikit/tests/countdown.html +122 -0
- data/assets/node_modules/uikit/tests/cover.html +183 -0
- data/assets/node_modules/uikit/tests/description-list.html +52 -0
- data/assets/node_modules/uikit/tests/divider.html +50 -0
- data/assets/node_modules/uikit/tests/dotnav.html +140 -0
- data/assets/node_modules/uikit/tests/drop.html +409 -0
- data/assets/node_modules/uikit/tests/dropdown.html +434 -0
- data/assets/node_modules/uikit/tests/flex.html +183 -0
- data/assets/node_modules/uikit/tests/form.html +615 -0
- data/assets/node_modules/uikit/tests/grid-parallax.html +118 -0
- data/assets/node_modules/uikit/tests/grid.html +622 -0
- data/assets/node_modules/uikit/tests/heading.html +154 -0
- data/assets/node_modules/uikit/tests/height-expand.html +33 -0
- data/assets/node_modules/uikit/tests/height-viewport.html +186 -0
- data/assets/node_modules/uikit/tests/icon.html +770 -0
- data/assets/node_modules/uikit/tests/iconnav.html +39 -0
- data/assets/node_modules/uikit/tests/images/animated.gif +0 -0
- data/assets/node_modules/uikit/tests/images/avatar.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/dark.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/icons.svg +24 -0
- data/assets/node_modules/uikit/tests/images/light.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/photo.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/size-h.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/size-v.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/size1.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/size2.jpg +0 -0
- data/assets/node_modules/uikit/tests/index.html +814 -0
- data/assets/node_modules/uikit/tests/js/index.js +210 -0
- data/assets/node_modules/uikit/tests/js/uikit.js +1 -0
- data/assets/node_modules/uikit/tests/label.html +29 -0
- data/assets/node_modules/uikit/tests/lightbox.html +297 -0
- data/assets/node_modules/uikit/tests/link.html +36 -0
- data/assets/node_modules/uikit/tests/list.html +223 -0
- data/assets/node_modules/uikit/tests/margin.html +190 -0
- data/assets/node_modules/uikit/tests/marker.html +44 -0
- data/assets/node_modules/uikit/tests/modal.html +500 -0
- data/assets/node_modules/uikit/tests/nav.html +356 -0
- data/assets/node_modules/uikit/tests/navbar.html +2005 -0
- data/assets/node_modules/uikit/tests/notification.html +132 -0
- data/assets/node_modules/uikit/tests/offcanvas.html +771 -0
- data/assets/node_modules/uikit/tests/overlay.html +103 -0
- data/assets/node_modules/uikit/tests/padding.html +53 -0
- data/assets/node_modules/uikit/tests/pagination.html +87 -0
- data/assets/node_modules/uikit/tests/parallax.html +229 -0
- data/assets/node_modules/uikit/tests/placeholder.html +34 -0
- data/assets/node_modules/uikit/tests/position.html +366 -0
- data/assets/node_modules/uikit/tests/progress.html +61 -0
- data/assets/node_modules/uikit/tests/scroll.html +65 -0
- data/assets/node_modules/uikit/tests/scrollspy.html +528 -0
- data/assets/node_modules/uikit/tests/search.html +376 -0
- data/assets/node_modules/uikit/tests/section.html +377 -0
- data/assets/node_modules/uikit/tests/slidenav.html +342 -0
- data/assets/node_modules/uikit/tests/slideshow.html +463 -0
- data/assets/node_modules/uikit/tests/sortable.html +317 -0
- data/assets/node_modules/uikit/tests/spinner.html +26 -0
- data/assets/node_modules/uikit/tests/sticky-navbar.html +582 -0
- data/assets/node_modules/uikit/tests/sticky.html +146 -0
- data/assets/node_modules/uikit/tests/subnav.html +114 -0
- data/assets/node_modules/uikit/tests/switcher.html +377 -0
- data/assets/node_modules/uikit/tests/tab.html +219 -0
- data/assets/node_modules/uikit/tests/table.html +310 -0
- data/assets/node_modules/uikit/tests/text.html +136 -0
- data/assets/node_modules/uikit/tests/thumbnav.html +65 -0
- data/assets/node_modules/uikit/tests/tile.html +227 -0
- data/assets/node_modules/uikit/tests/toggle.html +181 -0
- data/assets/node_modules/uikit/tests/tooltip.html +121 -0
- data/assets/node_modules/uikit/tests/totop.html +25 -0
- data/assets/node_modules/uikit/tests/transition.html +252 -0
- data/assets/node_modules/uikit/tests/upload.html +257 -0
- data/assets/node_modules/uikit/tests/utility.html +572 -0
- data/assets/node_modules/uikit/tests/visibility.html +113 -0
- data/assets/node_modules/uikit/tests/width.html +131 -0
- data/assets/node_modules/uikit/webpack.config.js +102 -0
- data/assets/node_modules/uikit/yarn.lock +3849 -0
- metadata +668 -2
@@ -0,0 +1,185 @@
|
|
1
|
+
// Name: Form Range
|
2
|
+
// Description: Styles for the range input type
|
3
|
+
//
|
4
|
+
// Component: `uk-range`
|
5
|
+
//
|
6
|
+
// ========================================================================
|
7
|
+
|
8
|
+
|
9
|
+
// Variables
|
10
|
+
// ========================================================================
|
11
|
+
|
12
|
+
@form-range-thumb-height: 15px;
|
13
|
+
@form-range-thumb-border-radius: 500px;
|
14
|
+
@form-range-thumb-background: @global-color;
|
15
|
+
|
16
|
+
@form-range-track-height: 3px;
|
17
|
+
@form-range-track-background: darken(@global-muted-background, 5%);
|
18
|
+
@form-range-track-focus-background: darken(@global-muted-background, 15%);
|
19
|
+
|
20
|
+
|
21
|
+
/* ========================================================================
|
22
|
+
Component: Form Range
|
23
|
+
========================================================================== */
|
24
|
+
|
25
|
+
/*
|
26
|
+
* 1. Normalize and defaults
|
27
|
+
* 2. Prevent content overflow if a fixed width is used
|
28
|
+
* 3. Take the full width
|
29
|
+
* 4. Remove default style
|
30
|
+
* 5. Remove white background in Chrome
|
31
|
+
* 6. Remove padding in IE11
|
32
|
+
*/
|
33
|
+
|
34
|
+
.uk-range {
|
35
|
+
/* 1 */
|
36
|
+
box-sizing: border-box;
|
37
|
+
margin: 0;
|
38
|
+
vertical-align: middle;
|
39
|
+
/* 2 */
|
40
|
+
max-width: 100%;
|
41
|
+
/* 3 */
|
42
|
+
width: 100%;
|
43
|
+
/* 4 */
|
44
|
+
-webkit-appearance: none;
|
45
|
+
/* 5 */
|
46
|
+
background: transparent;
|
47
|
+
/* 6 */
|
48
|
+
padding: 0;
|
49
|
+
.hook-form-range;
|
50
|
+
}
|
51
|
+
|
52
|
+
/* Focus */
|
53
|
+
.uk-range:focus { outline: none; }
|
54
|
+
.uk-range::-moz-focus-outer { border: none; }
|
55
|
+
|
56
|
+
/* IE11 Reset */
|
57
|
+
.uk-range::-ms-track {
|
58
|
+
height: @form-range-thumb-height;
|
59
|
+
background: transparent;
|
60
|
+
border-color: transparent;
|
61
|
+
color: transparent;
|
62
|
+
}
|
63
|
+
|
64
|
+
/*
|
65
|
+
* Improves consistency of cursor style for clickable elements
|
66
|
+
*/
|
67
|
+
|
68
|
+
.uk-range:not(:disabled)::-webkit-slider-thumb { cursor: pointer; }
|
69
|
+
.uk-range:not(:disabled)::-moz-range-thumb { cursor: pointer; }
|
70
|
+
.uk-range:not(:disabled)::-ms-thumb { cursor: pointer; }
|
71
|
+
|
72
|
+
|
73
|
+
/* Thumb
|
74
|
+
========================================================================== */
|
75
|
+
|
76
|
+
/*
|
77
|
+
* 1. Reset
|
78
|
+
* 2. Style
|
79
|
+
*/
|
80
|
+
|
81
|
+
/* Webkit */
|
82
|
+
.uk-range::-webkit-slider-thumb {
|
83
|
+
/* 1 */
|
84
|
+
-webkit-appearance: none;
|
85
|
+
margin-top: (floor(@form-range-thumb-height / 2) * -1);
|
86
|
+
/* 2 */
|
87
|
+
height: @form-range-thumb-height;
|
88
|
+
width: @form-range-thumb-height;
|
89
|
+
border-radius: @form-range-thumb-border-radius;
|
90
|
+
background: @form-range-thumb-background;
|
91
|
+
.hook-form-range-thumb;
|
92
|
+
}
|
93
|
+
|
94
|
+
/* Firefox */
|
95
|
+
.uk-range::-moz-range-thumb {
|
96
|
+
/* 1 */
|
97
|
+
border: none;
|
98
|
+
/* 2 */
|
99
|
+
height: @form-range-thumb-height;
|
100
|
+
width: @form-range-thumb-height;
|
101
|
+
border-radius: @form-range-thumb-border-radius;
|
102
|
+
background: @form-range-thumb-background;
|
103
|
+
.hook-form-range-thumb;
|
104
|
+
}
|
105
|
+
|
106
|
+
/* Edge */
|
107
|
+
.uk-range::-ms-thumb {
|
108
|
+
/* 1 */
|
109
|
+
margin-top: 0;
|
110
|
+
}
|
111
|
+
|
112
|
+
/* IE11 */
|
113
|
+
.uk-range::-ms-thumb {
|
114
|
+
/* 1 */
|
115
|
+
border: none;
|
116
|
+
/* 2 */
|
117
|
+
height: @form-range-thumb-height;
|
118
|
+
width: @form-range-thumb-height;
|
119
|
+
border-radius: @form-range-thumb-border-radius;
|
120
|
+
background: @form-range-thumb-background;
|
121
|
+
.hook-form-range-thumb;
|
122
|
+
}
|
123
|
+
|
124
|
+
/* Edge + IE11 */
|
125
|
+
.uk-range::-ms-tooltip { display: none; }
|
126
|
+
|
127
|
+
|
128
|
+
/* Track
|
129
|
+
========================================================================== */
|
130
|
+
|
131
|
+
/*
|
132
|
+
* 1. Safari doesn't have a focus state. Using active instead.
|
133
|
+
*/
|
134
|
+
|
135
|
+
/* Webkit */
|
136
|
+
.uk-range::-webkit-slider-runnable-track {
|
137
|
+
height: @form-range-track-height;
|
138
|
+
background: @form-range-track-background;
|
139
|
+
.hook-form-range-track;
|
140
|
+
}
|
141
|
+
|
142
|
+
.uk-range:focus::-webkit-slider-runnable-track,
|
143
|
+
/* 1 */
|
144
|
+
.uk-range:active::-webkit-slider-runnable-track {
|
145
|
+
background: @form-range-track-focus-background;
|
146
|
+
.hook-form-range-track-focus;
|
147
|
+
}
|
148
|
+
|
149
|
+
/* Firefox */
|
150
|
+
.uk-range::-moz-range-track {
|
151
|
+
height: @form-range-track-height;
|
152
|
+
background: @form-range-track-background;
|
153
|
+
.hook-form-range-track;
|
154
|
+
}
|
155
|
+
|
156
|
+
.uk-range:focus::-moz-range-track {
|
157
|
+
background: @form-range-track-focus-background;
|
158
|
+
.hook-form-range-track-focus;
|
159
|
+
}
|
160
|
+
|
161
|
+
/* Edge */
|
162
|
+
.uk-range::-ms-fill-lower,
|
163
|
+
.uk-range::-ms-fill-upper {
|
164
|
+
height: @form-range-track-height;
|
165
|
+
background: @form-range-track-background;
|
166
|
+
.hook-form-range-track;
|
167
|
+
}
|
168
|
+
|
169
|
+
.uk-range:focus::-ms-fill-lower,
|
170
|
+
.uk-range:focus::-ms-fill-upper {
|
171
|
+
background: @form-range-track-focus-background;
|
172
|
+
.hook-form-range-track-focus;
|
173
|
+
}
|
174
|
+
|
175
|
+
|
176
|
+
// Hooks
|
177
|
+
// ========================================================================
|
178
|
+
|
179
|
+
.hook-form-range-misc;
|
180
|
+
|
181
|
+
.hook-form-range() {}
|
182
|
+
.hook-form-range-thumb() {}
|
183
|
+
.hook-form-range-track() {}
|
184
|
+
.hook-form-range-track-focus() {}
|
185
|
+
.hook-form-range-misc() {}
|
@@ -0,0 +1,848 @@
|
|
1
|
+
// Name: Form
|
2
|
+
// Description: Styles for forms
|
3
|
+
//
|
4
|
+
// Component: `uk-form-*`
|
5
|
+
// `uk-input`
|
6
|
+
// `uk-select`
|
7
|
+
// `uk-textarea`
|
8
|
+
// `uk-radio`
|
9
|
+
// `uk-checkbox`
|
10
|
+
// `uk-legend`
|
11
|
+
// `uk-fieldset`
|
12
|
+
//
|
13
|
+
// Sub-objects: `uk-form-custom`
|
14
|
+
// `uk-form-stacked`
|
15
|
+
// `uk-form-horizontal`
|
16
|
+
// `uk-form-label`
|
17
|
+
// `uk-form-controls`
|
18
|
+
// `uk-form-icon`
|
19
|
+
// `uk-form-icon-flip`
|
20
|
+
//
|
21
|
+
// Modifiers: `uk-form-small`
|
22
|
+
// `uk-form-large`
|
23
|
+
// `uk-form-danger`
|
24
|
+
// `uk-form-success`
|
25
|
+
// `uk-form-blank`
|
26
|
+
// `uk-form-width-xsmall`
|
27
|
+
// `uk-form-width-small`
|
28
|
+
// `uk-form-width-medium`
|
29
|
+
// `uk-form-width-large`
|
30
|
+
// `uk-form-controls-text`
|
31
|
+
//
|
32
|
+
// ========================================================================
|
33
|
+
|
34
|
+
|
35
|
+
// Variables
|
36
|
+
// ========================================================================
|
37
|
+
|
38
|
+
@form-height: @global-control-height;
|
39
|
+
@form-line-height: @form-height;
|
40
|
+
@form-padding-horizontal: 10px;
|
41
|
+
@form-padding-vertical: 4px;
|
42
|
+
|
43
|
+
@form-background: @global-muted-background;
|
44
|
+
@form-color: @global-color;
|
45
|
+
|
46
|
+
@form-focus-background: @global-muted-background;
|
47
|
+
@form-focus-color: @global-color;
|
48
|
+
|
49
|
+
@form-disabled-background: @global-muted-background;
|
50
|
+
@form-disabled-color: @global-muted-color;
|
51
|
+
|
52
|
+
@form-placeholder-color: @global-muted-color;
|
53
|
+
|
54
|
+
@form-small-height: @global-control-small-height;
|
55
|
+
@form-small-padding-horizontal: 8px;
|
56
|
+
@form-small-line-height: @form-small-height;
|
57
|
+
@form-small-font-size: @global-small-font-size;
|
58
|
+
|
59
|
+
@form-large-height: @global-control-large-height;
|
60
|
+
@form-large-padding-horizontal: 12px;
|
61
|
+
@form-large-line-height: @form-large-height;
|
62
|
+
@form-large-font-size: @global-medium-font-size;
|
63
|
+
|
64
|
+
@form-danger-color: @global-danger-background;
|
65
|
+
@form-success-color: @global-success-background;
|
66
|
+
|
67
|
+
@form-width-xsmall: 50px;
|
68
|
+
@form-width-small: 130px;
|
69
|
+
@form-width-medium: 200px;
|
70
|
+
@form-width-large: 500px;
|
71
|
+
|
72
|
+
@form-select-padding-right: 20px;
|
73
|
+
@form-select-icon-color: @global-color;
|
74
|
+
@form-select-disabled-icon-color: @global-muted-color;
|
75
|
+
|
76
|
+
@form-radio-size: 16px;
|
77
|
+
@form-radio-margin-top: -4px;
|
78
|
+
@form-radio-background: darken(@global-muted-background, 5%);
|
79
|
+
|
80
|
+
@form-radio-checked-background: @global-primary-background;
|
81
|
+
@form-radio-checked-icon-color: @global-inverse-color;
|
82
|
+
|
83
|
+
@form-radio-checked-focus-background: darken(@global-primary-background, 10%);
|
84
|
+
|
85
|
+
@form-radio-disabled-background: @global-muted-background;
|
86
|
+
@form-radio-disabled-icon-color: @global-muted-color;
|
87
|
+
|
88
|
+
@form-legend-font-size: @global-large-font-size;
|
89
|
+
@form-legend-line-height: 1.4;
|
90
|
+
|
91
|
+
@form-stacked-margin-bottom: @global-small-margin;
|
92
|
+
|
93
|
+
@form-horizontal-label-width: 200px;
|
94
|
+
@form-horizontal-label-margin-top: 7px;
|
95
|
+
@form-horizontal-controls-margin-left: 215px;
|
96
|
+
@form-horizontal-controls-text-padding-top: 7px;
|
97
|
+
|
98
|
+
@form-icon-width: @form-height;
|
99
|
+
@form-icon-font-size: @global-font-size;
|
100
|
+
@form-icon-color: @global-muted-color;
|
101
|
+
@form-icon-hover-color: @global-color;
|
102
|
+
|
103
|
+
@internal-form-select-image: "../../images/backgrounds/form-select.svg";
|
104
|
+
@internal-form-radio-image: "../../images/backgrounds/form-radio.svg";
|
105
|
+
@internal-form-checkbox-image: "../../images/backgrounds/form-checkbox.svg";
|
106
|
+
@internal-form-checkbox-indeterminate-image: "../../images/backgrounds/form-checkbox-indeterminate.svg";
|
107
|
+
|
108
|
+
|
109
|
+
/* ========================================================================
|
110
|
+
Component: Form
|
111
|
+
========================================================================== */
|
112
|
+
|
113
|
+
/*
|
114
|
+
* 1. Define consistent box sizing.
|
115
|
+
* Default is `content-box` with following exceptions set to `border-box`
|
116
|
+
* `select`, `input[type="checkbox"]` and `input[type="radio"]`
|
117
|
+
* `input[type="search"]` in Chrome, Safari and Opera
|
118
|
+
* `input[type="color"]` in Firefox
|
119
|
+
* 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
|
120
|
+
* 3. Remove `border-radius` in iOS.
|
121
|
+
* 4. Change font properties to `inherit` in all browsers
|
122
|
+
*/
|
123
|
+
|
124
|
+
.uk-input,
|
125
|
+
.uk-select,
|
126
|
+
.uk-textarea,
|
127
|
+
.uk-radio,
|
128
|
+
.uk-checkbox {
|
129
|
+
/* 1 */
|
130
|
+
box-sizing: border-box;
|
131
|
+
/* 2 */
|
132
|
+
margin: 0;
|
133
|
+
/* 3 */
|
134
|
+
border-radius: 0;
|
135
|
+
/* 4 */
|
136
|
+
font: inherit;
|
137
|
+
}
|
138
|
+
|
139
|
+
/*
|
140
|
+
* Show the overflow in Edge.
|
141
|
+
*/
|
142
|
+
|
143
|
+
.uk-input { overflow: visible; }
|
144
|
+
|
145
|
+
/*
|
146
|
+
* Remove the inheritance of text transform in Firefox.
|
147
|
+
*/
|
148
|
+
|
149
|
+
.uk-select { text-transform: none; }
|
150
|
+
|
151
|
+
/*
|
152
|
+
* 1. Change font properties to `inherit` in all browsers
|
153
|
+
* 2. Don't inherit the `font-weight` and use `bold` instead.
|
154
|
+
* NOTE: Both declarations don't work in Chrome, Safari and Opera.
|
155
|
+
*/
|
156
|
+
|
157
|
+
.uk-select optgroup {
|
158
|
+
/* 1 */
|
159
|
+
font: inherit;
|
160
|
+
/* 2 */
|
161
|
+
font-weight: bold;
|
162
|
+
}
|
163
|
+
|
164
|
+
/*
|
165
|
+
* Remove the default vertical scrollbar in IE.
|
166
|
+
*/
|
167
|
+
|
168
|
+
.uk-textarea { overflow: auto; }
|
169
|
+
|
170
|
+
/*
|
171
|
+
* Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
|
172
|
+
*/
|
173
|
+
|
174
|
+
.uk-input[type="search"]::-webkit-search-cancel-button,
|
175
|
+
.uk-input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
|
176
|
+
|
177
|
+
|
178
|
+
/*
|
179
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
180
|
+
*/
|
181
|
+
|
182
|
+
.uk-input[type="number"]::-webkit-inner-spin-button,
|
183
|
+
.uk-input[type="number"]::-webkit-outer-spin-button { height: auto; }
|
184
|
+
|
185
|
+
/*
|
186
|
+
* Removes placeholder transparency in Firefox.
|
187
|
+
*/
|
188
|
+
|
189
|
+
.uk-input::-moz-placeholder,
|
190
|
+
.uk-textarea::-moz-placeholder { opacity: 1; }
|
191
|
+
|
192
|
+
/*
|
193
|
+
* Remove the padding in IE 10-.
|
194
|
+
*/
|
195
|
+
|
196
|
+
.uk-radio,
|
197
|
+
.uk-checkbox { padding: 0; }
|
198
|
+
|
199
|
+
/*
|
200
|
+
* Improves consistency of cursor style for clickable elements
|
201
|
+
*/
|
202
|
+
|
203
|
+
.uk-radio:not(:disabled),
|
204
|
+
.uk-checkbox:not(:disabled) { cursor: pointer; }
|
205
|
+
|
206
|
+
/*
|
207
|
+
* Define consistent border, margin, and padding.
|
208
|
+
*/
|
209
|
+
|
210
|
+
.uk-fieldset {
|
211
|
+
border: none;
|
212
|
+
margin: 0;
|
213
|
+
padding: 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
|
217
|
+
/* Input, select and textarea
|
218
|
+
* Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`, `month`,
|
219
|
+
`time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
|
220
|
+
* Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
|
221
|
+
========================================================================== */
|
222
|
+
|
223
|
+
/*
|
224
|
+
* Remove default style in iOS.
|
225
|
+
*/
|
226
|
+
|
227
|
+
.uk-input,
|
228
|
+
.uk-textarea { -webkit-appearance: none; }
|
229
|
+
|
230
|
+
/*
|
231
|
+
* 1. Prevent content overflow if a fixed width is used
|
232
|
+
* 2. Take the full width
|
233
|
+
* 3. Reset default
|
234
|
+
* 4. Style
|
235
|
+
*/
|
236
|
+
|
237
|
+
.uk-input,
|
238
|
+
.uk-select,
|
239
|
+
.uk-textarea {
|
240
|
+
/* 1 */
|
241
|
+
max-width: 100%;
|
242
|
+
/* 2 */
|
243
|
+
width: 100%;
|
244
|
+
/* 3 */
|
245
|
+
border: 0 none;
|
246
|
+
/* 4 */
|
247
|
+
padding: 0 @form-padding-horizontal;
|
248
|
+
background: @form-background;
|
249
|
+
color: @form-color;
|
250
|
+
.hook-form;
|
251
|
+
}
|
252
|
+
|
253
|
+
/*
|
254
|
+
* Single-line
|
255
|
+
* 1. Allow any element to look like an `input` or `select` element
|
256
|
+
* 2. Make sure line-height is not larger than height
|
257
|
+
* Also needed to center the text vertically
|
258
|
+
*/
|
259
|
+
|
260
|
+
.uk-input,
|
261
|
+
.uk-select:not([multiple]):not([size]) {
|
262
|
+
height: @form-height;
|
263
|
+
vertical-align: middle;
|
264
|
+
/* 1 */
|
265
|
+
display: inline-block;
|
266
|
+
.hook-form-single-line;
|
267
|
+
}
|
268
|
+
|
269
|
+
/* 2 */
|
270
|
+
.uk-input:not(input),
|
271
|
+
.uk-select:not(select) { line-height: @form-line-height; }
|
272
|
+
|
273
|
+
/*
|
274
|
+
* Multi-line
|
275
|
+
*/
|
276
|
+
|
277
|
+
.uk-select[multiple],
|
278
|
+
.uk-select[size],
|
279
|
+
.uk-textarea {
|
280
|
+
padding-top: @form-padding-vertical;
|
281
|
+
padding-bottom: @form-padding-vertical;
|
282
|
+
vertical-align: top;
|
283
|
+
.hook-form-multi-line;
|
284
|
+
}
|
285
|
+
|
286
|
+
/* Focus */
|
287
|
+
.uk-input:focus,
|
288
|
+
.uk-select:focus,
|
289
|
+
.uk-textarea:focus {
|
290
|
+
outline: none;
|
291
|
+
background-color: @form-focus-background;
|
292
|
+
color: @form-focus-color;
|
293
|
+
.hook-form-focus;
|
294
|
+
}
|
295
|
+
|
296
|
+
/* Disabled */
|
297
|
+
.uk-input:disabled,
|
298
|
+
.uk-select:disabled,
|
299
|
+
.uk-textarea:disabled {
|
300
|
+
background-color: @form-disabled-background;
|
301
|
+
color: @form-disabled-color;
|
302
|
+
.hook-form-disabled;
|
303
|
+
}
|
304
|
+
|
305
|
+
/*
|
306
|
+
* Placeholder
|
307
|
+
*/
|
308
|
+
|
309
|
+
.uk-input:-ms-input-placeholder { color: @form-placeholder-color !important; }
|
310
|
+
.uk-input::-moz-placeholder { color: @form-placeholder-color; }
|
311
|
+
.uk-input::-webkit-input-placeholder { color: @form-placeholder-color; }
|
312
|
+
|
313
|
+
.uk-textarea:-ms-input-placeholder { color: @form-placeholder-color !important; }
|
314
|
+
.uk-textarea::-moz-placeholder { color: @form-placeholder-color; }
|
315
|
+
.uk-textarea::-webkit-input-placeholder { color: @form-placeholder-color; }
|
316
|
+
|
317
|
+
|
318
|
+
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
|
319
|
+
========================================================================== */
|
320
|
+
|
321
|
+
/*
|
322
|
+
* Small
|
323
|
+
*/
|
324
|
+
|
325
|
+
.uk-form-small { font-size: @form-small-font-size; }
|
326
|
+
|
327
|
+
.uk-form-small:not(textarea):not([multiple]):not([size]) {
|
328
|
+
height: @form-small-height;
|
329
|
+
padding-left: @form-small-padding-horizontal;
|
330
|
+
padding-right: @form-small-padding-horizontal;
|
331
|
+
}
|
332
|
+
|
333
|
+
.uk-form-small:not(select):not(input):not(textarea) { line-height: @form-small-line-height; }
|
334
|
+
|
335
|
+
/*
|
336
|
+
* Large
|
337
|
+
*/
|
338
|
+
|
339
|
+
.uk-form-large { font-size: @form-large-font-size; }
|
340
|
+
|
341
|
+
.uk-form-large:not(textarea):not([multiple]):not([size]) {
|
342
|
+
height: @form-large-height;
|
343
|
+
padding-left: @form-large-padding-horizontal;
|
344
|
+
padding-right: @form-large-padding-horizontal;
|
345
|
+
}
|
346
|
+
|
347
|
+
.uk-form-large:not(select):not(input):not(textarea) { line-height: @form-large-line-height; }
|
348
|
+
|
349
|
+
|
350
|
+
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
|
351
|
+
========================================================================== */
|
352
|
+
|
353
|
+
/*
|
354
|
+
* Error
|
355
|
+
*/
|
356
|
+
|
357
|
+
.uk-form-danger,
|
358
|
+
.uk-form-danger:focus {
|
359
|
+
color: @form-danger-color;
|
360
|
+
.hook-form-danger;
|
361
|
+
}
|
362
|
+
|
363
|
+
/*
|
364
|
+
* Success
|
365
|
+
*/
|
366
|
+
|
367
|
+
.uk-form-success,
|
368
|
+
.uk-form-success:focus {
|
369
|
+
color: @form-success-color;
|
370
|
+
.hook-form-success;
|
371
|
+
}
|
372
|
+
|
373
|
+
/*
|
374
|
+
* Blank
|
375
|
+
*/
|
376
|
+
|
377
|
+
.uk-form-blank {
|
378
|
+
background: none;
|
379
|
+
.hook-form-blank;
|
380
|
+
}
|
381
|
+
|
382
|
+
.uk-form-blank:focus {
|
383
|
+
.hook-form-blank-focus;
|
384
|
+
}
|
385
|
+
|
386
|
+
|
387
|
+
/* Width modifiers (`uk-input`, `uk-select` and `uk-textarea`)
|
388
|
+
========================================================================== */
|
389
|
+
|
390
|
+
/*
|
391
|
+
* Fixed widths
|
392
|
+
* Different widths for mini sized `input` and `select` elements
|
393
|
+
*/
|
394
|
+
|
395
|
+
input.uk-form-width-xsmall { width: @form-width-xsmall; }
|
396
|
+
|
397
|
+
select.uk-form-width-xsmall { width: (@form-width-xsmall + 25px); }
|
398
|
+
|
399
|
+
.uk-form-width-small { width: @form-width-small; }
|
400
|
+
|
401
|
+
.uk-form-width-medium { width: @form-width-medium; }
|
402
|
+
|
403
|
+
.uk-form-width-large { width: @form-width-large; }
|
404
|
+
|
405
|
+
|
406
|
+
/* Select
|
407
|
+
========================================================================== */
|
408
|
+
|
409
|
+
/*
|
410
|
+
* 1. Remove default style. Also works in Firefox
|
411
|
+
* 2. Style
|
412
|
+
* 3. Remove default style in IE 10/11
|
413
|
+
*/
|
414
|
+
|
415
|
+
.uk-select:not([multiple]):not([size]) {
|
416
|
+
/* 1 */
|
417
|
+
-webkit-appearance: none;
|
418
|
+
-moz-appearance: none;
|
419
|
+
/* 2 */
|
420
|
+
padding-right: @form-select-padding-right;
|
421
|
+
.svg-fill(@internal-form-select-image, "#000", @form-select-icon-color);
|
422
|
+
background-repeat: no-repeat;
|
423
|
+
background-position: 100% 50%;
|
424
|
+
}
|
425
|
+
|
426
|
+
/* 3 */
|
427
|
+
.uk-select:not([multiple]):not([size])::-ms-expand { display: none; }
|
428
|
+
|
429
|
+
/*
|
430
|
+
* Disabled
|
431
|
+
*/
|
432
|
+
|
433
|
+
.uk-select:not([multiple]):not([size]):disabled { .svg-fill(@internal-form-select-image, "#000", @form-select-disabled-icon-color); }
|
434
|
+
|
435
|
+
|
436
|
+
/* Radio and checkbox
|
437
|
+
* Note: Does not work in IE11
|
438
|
+
========================================================================== */
|
439
|
+
|
440
|
+
/*
|
441
|
+
* 1. Style
|
442
|
+
* 2. Make box more robust so it clips the child element
|
443
|
+
* 3. Vertical alignment
|
444
|
+
* 4. Remove default style
|
445
|
+
* 5. Fix black background on iOS
|
446
|
+
* 6. Center icons
|
447
|
+
*/
|
448
|
+
|
449
|
+
.uk-radio,
|
450
|
+
.uk-checkbox {
|
451
|
+
/* 1 */
|
452
|
+
display: inline-block;
|
453
|
+
height: @form-radio-size;
|
454
|
+
width: @form-radio-size;
|
455
|
+
/* 2 */
|
456
|
+
overflow: hidden;
|
457
|
+
/* 3 */
|
458
|
+
margin-top: @form-radio-margin-top;
|
459
|
+
vertical-align: middle;
|
460
|
+
/* 4 */
|
461
|
+
-webkit-appearance: none;
|
462
|
+
-moz-appearance: none;
|
463
|
+
/* 5 */
|
464
|
+
background-color: @form-radio-background;
|
465
|
+
/* 6 */
|
466
|
+
background-repeat: no-repeat;
|
467
|
+
background-position: 50% 50%;
|
468
|
+
.hook-form-radio;
|
469
|
+
}
|
470
|
+
|
471
|
+
.uk-radio { border-radius: 50%; }
|
472
|
+
|
473
|
+
/* Focus */
|
474
|
+
.uk-radio:focus,
|
475
|
+
.uk-checkbox:focus {
|
476
|
+
outline: none;
|
477
|
+
.hook-form-radio-focus;
|
478
|
+
}
|
479
|
+
|
480
|
+
/*
|
481
|
+
* Checked
|
482
|
+
*/
|
483
|
+
|
484
|
+
.uk-radio:checked,
|
485
|
+
.uk-checkbox:checked,
|
486
|
+
.uk-checkbox:indeterminate {
|
487
|
+
background-color: @form-radio-checked-background;
|
488
|
+
.hook-form-radio-checked;
|
489
|
+
}
|
490
|
+
|
491
|
+
/* Focus */
|
492
|
+
.uk-radio:checked:focus,
|
493
|
+
.uk-checkbox:checked:focus,
|
494
|
+
.uk-checkbox:indeterminate:focus {
|
495
|
+
background-color: @form-radio-checked-focus-background;
|
496
|
+
.hook-form-radio-checked-focus;
|
497
|
+
}
|
498
|
+
|
499
|
+
/*
|
500
|
+
* Icons
|
501
|
+
*/
|
502
|
+
|
503
|
+
.uk-radio:checked { .svg-fill(@internal-form-radio-image, "#000", @form-radio-checked-icon-color); }
|
504
|
+
.uk-checkbox:checked { .svg-fill(@internal-form-checkbox-image, "#000", @form-radio-checked-icon-color); }
|
505
|
+
.uk-checkbox:indeterminate { .svg-fill(@internal-form-checkbox-indeterminate-image, "#000", @form-radio-checked-icon-color); }
|
506
|
+
|
507
|
+
/*
|
508
|
+
* Disabled
|
509
|
+
*/
|
510
|
+
|
511
|
+
.uk-radio:disabled,
|
512
|
+
.uk-checkbox:disabled {
|
513
|
+
background-color: @form-radio-disabled-background;
|
514
|
+
.hook-form-radio-disabled;
|
515
|
+
}
|
516
|
+
|
517
|
+
.uk-radio:disabled:checked { .svg-fill(@internal-form-radio-image, "#000", @form-radio-disabled-icon-color); }
|
518
|
+
.uk-checkbox:disabled:checked { .svg-fill(@internal-form-checkbox-image, "#000", @form-radio-disabled-icon-color); }
|
519
|
+
.uk-checkbox:disabled:indeterminate { .svg-fill(@internal-form-checkbox-indeterminate-image, "#000", @form-radio-disabled-icon-color); }
|
520
|
+
|
521
|
+
|
522
|
+
/* Legend
|
523
|
+
========================================================================== */
|
524
|
+
|
525
|
+
/*
|
526
|
+
* Legend
|
527
|
+
* 1. Behave like block element
|
528
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
529
|
+
* 3. Remove padding so people aren't caught out if they zero out fieldsets.
|
530
|
+
* 4. Style
|
531
|
+
*/
|
532
|
+
|
533
|
+
.uk-legend {
|
534
|
+
/* 1 */
|
535
|
+
width: 100%;
|
536
|
+
/* 2 */
|
537
|
+
color: inherit;
|
538
|
+
/* 3 */
|
539
|
+
padding: 0;
|
540
|
+
/* 4 */
|
541
|
+
font-size: @form-legend-font-size;
|
542
|
+
line-height: @form-legend-line-height;
|
543
|
+
.hook-form-legend;
|
544
|
+
}
|
545
|
+
|
546
|
+
|
547
|
+
/* Custom controls
|
548
|
+
========================================================================== */
|
549
|
+
|
550
|
+
/*
|
551
|
+
* 1. Container fits its content
|
552
|
+
* 2. Create position context
|
553
|
+
* 3. Prevent content overflow
|
554
|
+
* 4. Behave like most inline-block elements
|
555
|
+
*/
|
556
|
+
|
557
|
+
.uk-form-custom {
|
558
|
+
/* 1 */
|
559
|
+
display: inline-block;
|
560
|
+
/* 2 */
|
561
|
+
position: relative;
|
562
|
+
/* 3 */
|
563
|
+
max-width: 100%;
|
564
|
+
/* 4 */
|
565
|
+
vertical-align: middle;
|
566
|
+
}
|
567
|
+
|
568
|
+
/*
|
569
|
+
* 1. Position and resize the form control to always cover its container
|
570
|
+
* 2. Required for Firefox for positioning to the left
|
571
|
+
* 3. Required for Webkit to make `height` work
|
572
|
+
* 4. Hide controle and show cursor
|
573
|
+
* 5. Needed for the cursor
|
574
|
+
* 6. Clip height caused by 5. Needed for Webkit only
|
575
|
+
*/
|
576
|
+
|
577
|
+
.uk-form-custom select,
|
578
|
+
.uk-form-custom input[type="file"] {
|
579
|
+
/* 1 */
|
580
|
+
position: absolute;
|
581
|
+
top: 0;
|
582
|
+
z-index: 1;
|
583
|
+
width: 100%;
|
584
|
+
height: 100%;
|
585
|
+
/* 2 */
|
586
|
+
left: 0;
|
587
|
+
/* 3 */
|
588
|
+
-webkit-appearance: none;
|
589
|
+
/* 4 */
|
590
|
+
opacity: 0;
|
591
|
+
cursor: pointer;
|
592
|
+
}
|
593
|
+
|
594
|
+
.uk-form-custom input[type="file"] {
|
595
|
+
/* 5 */
|
596
|
+
font-size: 500px;
|
597
|
+
/* 6 */
|
598
|
+
overflow: hidden;
|
599
|
+
}
|
600
|
+
|
601
|
+
|
602
|
+
/* Label
|
603
|
+
========================================================================== */
|
604
|
+
|
605
|
+
.uk-form-label {
|
606
|
+
.hook-form-label;
|
607
|
+
}
|
608
|
+
|
609
|
+
|
610
|
+
/* Layout
|
611
|
+
========================================================================== */
|
612
|
+
|
613
|
+
/*
|
614
|
+
* Stacked
|
615
|
+
*/
|
616
|
+
|
617
|
+
.uk-form-stacked .uk-form-label {
|
618
|
+
display: block;
|
619
|
+
margin-bottom: @form-stacked-margin-bottom;
|
620
|
+
.hook-form-stacked-label;
|
621
|
+
}
|
622
|
+
|
623
|
+
/*
|
624
|
+
* Horizontal
|
625
|
+
*/
|
626
|
+
|
627
|
+
/* Tablet portrait and smaller */
|
628
|
+
@media (max-width: @breakpoint-small-max) {
|
629
|
+
|
630
|
+
/* Behave like `uk-form-stacked` */
|
631
|
+
.uk-form-horizontal .uk-form-label {
|
632
|
+
display: block;
|
633
|
+
margin-bottom: @form-stacked-margin-bottom;
|
634
|
+
.hook-form-stacked-label;
|
635
|
+
}
|
636
|
+
|
637
|
+
}
|
638
|
+
|
639
|
+
/* Tablet landscape and bigger */
|
640
|
+
@media (min-width: @breakpoint-medium) {
|
641
|
+
|
642
|
+
.uk-form-horizontal .uk-form-label {
|
643
|
+
width: @form-horizontal-label-width;
|
644
|
+
margin-top: @form-horizontal-label-margin-top;
|
645
|
+
float: left;
|
646
|
+
.hook-form-horizontal-label;
|
647
|
+
}
|
648
|
+
|
649
|
+
.uk-form-horizontal .uk-form-controls { margin-left: @form-horizontal-controls-margin-left; }
|
650
|
+
|
651
|
+
/* Better vertical alignment if controls are checkboxes and radio buttons with text */
|
652
|
+
.uk-form-horizontal .uk-form-controls-text { padding-top: @form-horizontal-controls-text-padding-top; }
|
653
|
+
|
654
|
+
}
|
655
|
+
|
656
|
+
|
657
|
+
/* Icons
|
658
|
+
========================================================================== */
|
659
|
+
|
660
|
+
/*
|
661
|
+
* 1. Set position
|
662
|
+
* 2. Set width
|
663
|
+
* 3. Center icon vertically and horizontally
|
664
|
+
* 4. Style
|
665
|
+
*/
|
666
|
+
|
667
|
+
.uk-form-icon {
|
668
|
+
/* 1 */
|
669
|
+
position: absolute;
|
670
|
+
top: 0;
|
671
|
+
bottom: 0;
|
672
|
+
left: 0;
|
673
|
+
/* 2 */
|
674
|
+
width: @form-icon-width;
|
675
|
+
/* 3 */
|
676
|
+
display: -ms-inline-flexbox;
|
677
|
+
display: -webkit-inline-flex;
|
678
|
+
display: inline-flex;
|
679
|
+
-ms-flex-pack: center;
|
680
|
+
-webkit-justify-content: center;
|
681
|
+
justify-content: center;
|
682
|
+
-ms-flex-align: center;
|
683
|
+
-webkit-align-items: center;
|
684
|
+
align-items: center;
|
685
|
+
/* 4 */
|
686
|
+
color: @form-icon-color;
|
687
|
+
}
|
688
|
+
|
689
|
+
/*
|
690
|
+
* Required for `a`.
|
691
|
+
*/
|
692
|
+
|
693
|
+
.uk-form-icon:hover { color: @form-icon-hover-color; }
|
694
|
+
|
695
|
+
/*
|
696
|
+
* Make `input` element clickable through icon, e.g. if it's a `span`
|
697
|
+
*/
|
698
|
+
|
699
|
+
.uk-form-icon:not(a):not(button):not(input) { pointer-events: none; }
|
700
|
+
|
701
|
+
/*
|
702
|
+
* Input padding
|
703
|
+
*/
|
704
|
+
|
705
|
+
.uk-form-icon:not(.uk-form-icon-flip) + .uk-input { padding-left: @form-icon-width; }
|
706
|
+
|
707
|
+
/*
|
708
|
+
* Position modifier
|
709
|
+
*/
|
710
|
+
|
711
|
+
.uk-form-icon-flip {
|
712
|
+
right: 0;
|
713
|
+
left: auto;
|
714
|
+
}
|
715
|
+
|
716
|
+
.uk-form-icon-flip + .uk-input { padding-right: @form-icon-width; }
|
717
|
+
|
718
|
+
|
719
|
+
// Hooks
|
720
|
+
// ========================================================================
|
721
|
+
|
722
|
+
.hook-form-misc;
|
723
|
+
|
724
|
+
.hook-form() {}
|
725
|
+
.hook-form-single-line() {}
|
726
|
+
.hook-form-multi-line() {}
|
727
|
+
.hook-form-focus() {}
|
728
|
+
.hook-form-disabled() {}
|
729
|
+
.hook-form-danger() {}
|
730
|
+
.hook-form-success() {}
|
731
|
+
.hook-form-blank() {}
|
732
|
+
.hook-form-blank-focus() {}
|
733
|
+
.hook-form-radio() {}
|
734
|
+
.hook-form-radio-focus() {}
|
735
|
+
.hook-form-radio-checked() {}
|
736
|
+
.hook-form-radio-checked-focus() {}
|
737
|
+
.hook-form-radio-disabled() {}
|
738
|
+
.hook-form-legend() {}
|
739
|
+
.hook-form-label() {}
|
740
|
+
.hook-form-stacked-label() {}
|
741
|
+
.hook-form-horizontal-label() {}
|
742
|
+
.hook-form-misc() {}
|
743
|
+
|
744
|
+
|
745
|
+
// Inverse
|
746
|
+
// ========================================================================
|
747
|
+
|
748
|
+
@inverse-form-background: @inverse-global-muted-background;
|
749
|
+
@inverse-form-color: @inverse-global-color;
|
750
|
+
@inverse-form-focus-background: @inverse-global-muted-background;
|
751
|
+
@inverse-form-focus-color: @inverse-global-color;
|
752
|
+
@inverse-form-placeholder-color: @inverse-global-muted-color;
|
753
|
+
|
754
|
+
@inverse-form-select-icon-color: @inverse-global-color;
|
755
|
+
|
756
|
+
@inverse-form-radio-background: darken(@inverse-global-muted-background, 5%);
|
757
|
+
|
758
|
+
@inverse-form-radio-checked-background: @inverse-global-primary-background;
|
759
|
+
@inverse-form-radio-checked-icon-color: @inverse-global-inverse-color;
|
760
|
+
|
761
|
+
@inverse-form-radio-checked-focus-background: darken(@inverse-global-primary-background, 10%);
|
762
|
+
|
763
|
+
.hook-inverse() {
|
764
|
+
|
765
|
+
.uk-input,
|
766
|
+
.uk-select,
|
767
|
+
.uk-textarea {
|
768
|
+
background-color: @inverse-form-background;
|
769
|
+
color: @inverse-form-color;
|
770
|
+
background-clip: padding-box;
|
771
|
+
.hook-inverse-form;
|
772
|
+
|
773
|
+
&:focus {
|
774
|
+
background-color: @inverse-form-focus-background;
|
775
|
+
color: @inverse-form-focus-color;
|
776
|
+
.hook-inverse-form-focus;
|
777
|
+
}
|
778
|
+
}
|
779
|
+
|
780
|
+
//
|
781
|
+
// Placeholder
|
782
|
+
//
|
783
|
+
|
784
|
+
.uk-input:-ms-input-placeholder { color: @inverse-form-placeholder-color !important; }
|
785
|
+
.uk-input::-moz-placeholder { color: @inverse-form-placeholder-color; }
|
786
|
+
.uk-input::-webkit-input-placeholder { color: @inverse-form-placeholder-color; }
|
787
|
+
|
788
|
+
.uk-textarea:-ms-input-placeholder { color: @inverse-form-placeholder-color !important; }
|
789
|
+
.uk-textarea::-moz-placeholder { color: @inverse-form-placeholder-color; }
|
790
|
+
.uk-textarea::-webkit-input-placeholder { color: @inverse-form-placeholder-color; }
|
791
|
+
|
792
|
+
//
|
793
|
+
// Radio and checkbox
|
794
|
+
//
|
795
|
+
|
796
|
+
.uk-select:not([multiple]):not([size]) { .svg-fill(@internal-form-select-image, "#000", @inverse-form-select-icon-color); }
|
797
|
+
|
798
|
+
//
|
799
|
+
// Radio and checkbox
|
800
|
+
//
|
801
|
+
|
802
|
+
.uk-radio,
|
803
|
+
.uk-checkbox {
|
804
|
+
background-color: @inverse-form-radio-background;
|
805
|
+
.hook-inverse-form-radio;
|
806
|
+
}
|
807
|
+
|
808
|
+
// Focus
|
809
|
+
.uk-radio:focus,
|
810
|
+
.uk-checkbox:focus {
|
811
|
+
.hook-inverse-form-radio-focus;
|
812
|
+
}
|
813
|
+
|
814
|
+
// Checked
|
815
|
+
.uk-radio:checked,
|
816
|
+
.uk-checkbox:checked,
|
817
|
+
.uk-checkbox:indeterminate {
|
818
|
+
background-color: @inverse-form-radio-checked-background;
|
819
|
+
.hook-inverse-form-radio-checked;
|
820
|
+
}
|
821
|
+
|
822
|
+
// Focus
|
823
|
+
.uk-radio:checked:focus,
|
824
|
+
.uk-checkbox:checked:focus,
|
825
|
+
.uk-checkbox:indeterminate:focus {
|
826
|
+
background-color: @inverse-form-radio-checked-focus-background;
|
827
|
+
.hook-inverse-form-radio-checked-focus;
|
828
|
+
}
|
829
|
+
|
830
|
+
// Icon
|
831
|
+
.uk-radio:checked { .svg-fill(@internal-form-radio-image, "#000", @inverse-form-radio-checked-icon-color); }
|
832
|
+
.uk-checkbox:checked { .svg-fill(@internal-form-checkbox-image, "#000", @inverse-form-radio-checked-icon-color); }
|
833
|
+
.uk-checkbox:indeterminate { .svg-fill(@internal-form-checkbox-indeterminate-image, "#000", @inverse-form-radio-checked-icon-color); }
|
834
|
+
|
835
|
+
// Label
|
836
|
+
.uk-form-label {
|
837
|
+
.hook-inverse-form-label;
|
838
|
+
}
|
839
|
+
|
840
|
+
}
|
841
|
+
|
842
|
+
.hook-inverse-form() {}
|
843
|
+
.hook-inverse-form-focus() {}
|
844
|
+
.hook-inverse-form-radio() {}
|
845
|
+
.hook-inverse-form-radio-focus() {}
|
846
|
+
.hook-inverse-form-radio-checked() {}
|
847
|
+
.hook-inverse-form-radio-checked-focus() {}
|
848
|
+
.hook-inverse-form-label() {}
|