uikit
Version:
UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.
165 lines (116 loc) • 4.26 kB
text/less
// Name: Visibility
// Description: Utilities to show or hide content on breakpoints, hover or touch
//
// Component: `uk-hidden-*`
// `uk-visible-*`
// `uk-invisible`
// `uk-hidden-visually`
// `uk-visible-toggle`
// `uk-hidden-hover`
// `uk-invisible-hover`
// `uk-hidden-touch`
// `uk-hidden-notouch`
//
// ========================================================================
/* ========================================================================
Component: Visibility
========================================================================== */
/*
* Hidden
* `hidden` attribute also set here to make it stronger
*/
[hidden],
.uk-hidden,
.uk-hidden-empty:empty { display: none ; }
/* Phone landscape and bigger */
@media (min-width: @breakpoint-small) {
.uk-hidden\@s { display: none ; }
}
/* Tablet landscape and bigger */
@media (min-width: @breakpoint-medium) {
.uk-hidden\@m { display: none ; }
}
/* Desktop and bigger */
@media (min-width: @breakpoint-large) {
.uk-hidden\@l { display: none ; }
}
/* Large screen and bigger */
@media (min-width: @breakpoint-xlarge) {
.uk-hidden\@xl { display: none ; }
}
/*
* Visible
*/
/* Phone portrait and smaller */
@media (max-width: @breakpoint-xsmall-max) {
.uk-visible\@s { display: none ; }
}
/* Phone landscape and smaller */
@media (max-width: @breakpoint-small-max) {
.uk-visible\@m { display: none ; }
}
/* Tablet landscape and smaller */
@media (max-width: @breakpoint-medium-max) {
.uk-visible\@l { display: none ; }
}
/* Desktop and smaller */
@media (max-width: @breakpoint-large-max) {
.uk-visible\@xl { display: none ; }
}
/* Visibility
========================================================================== */
.uk-invisible { visibility: hidden ; }
/* Based on the State of the Parent Element
========================================================================== */
/*
* Mind that `display: none`, `visibility: hidden` and `opacity: 0`
* remove the element from the accessibility tree and that
* `display: none` and `visibility: hidden` are not focusable.
*
* The target stays visible if any element within receives focus through keyboard.
*/
/*
* Remove space when hidden.
* 1. Remove from document flow.
* 2. Hide element and shrink its dimension. Current browsers and screen readers
* keep the element in the accessibility tree even with zero dimensions.
* Using `tabindex="-1"` will show the element on touch devices.
* Note: `clip-path` doesn't work with `tabindex` on touch devices.
*/
.uk-hidden-visually:not(:focus):not(:active):not(:focus-within),
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-visible):not(:has(:focus-visible)),
// Fallback for Safari 18.3 `:not(:has(...)) invalidation` bug. Remove when fixed.
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
/* 1 */
position: absolute ;
/* 2 */
width: 0 ;
height: 0 ;
padding: 0 ;
border: 0 ;
margin: 0 ;
overflow: hidden ;
}
/*
* Keep space when hidden.
* Hide element without shrinking its dimension.
* Note: `clip-path` doesn't work with hover for elements outside of the toggle box.
*/
.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) { opacity: 0 ; }
/* Based on Hover Capability of the Pointing Device
========================================================================== */
/*
* Hover
*/
/* Hide if primary pointing device doesn't support hover, e.g. touch screens. */
@media (hover: none) {
.uk-hidden-touch { display: none ; }
}
/* Hide if primary pointing device supports hover, e.g. mice. */
@media (hover) {
.uk-hidden-notouch { display: none ; }
}
// Hooks
// ========================================================================
.hook-visibility-misc();
.hook-visibility-misc() {}