elemental
Version:
React UI Framework
52 lines (42 loc) • 887 B
text/less
/**
* Display-type utilities
*/
.u-block {
display: block ;
}
.u-hidden {
display: none ;
}
/**
* Completely remove from the flow but leave available to screen readers.
*/
.u-hidden-visually {
position: absolute ;
overflow: hidden ;
width: 1px ;
height: 1px ;
padding: 0 ;
border: 0 ;
clip: rect(1px, 1px, 1px, 1px) ;
}
.u-inline {
display: inline ;
}
/**
* 1. Fix for Firefox bug: an image styled `max-width:100%` within an
* inline-block will display at its default size, and not limit its width to
* 100% of an ancestral container.
*/
.u-inline-block {
display: inline-block ;
max-width: 100%; /* 1 */
}
.u-table {
display: table ;
}
.u-table-cell {
display: table-cell ;
}
.u-table-row {
display: table-row ;
}