@enact/ui
Version:
A collection of simplified unstyled cross-platform UI components for Enact
41 lines (40 loc) • 677 B
CSS
.button {
display: inline-block;
box-sizing: border-box;
position: relative;
overflow: visible;
white-space: nowrap;
width: auto;
z-index: 0;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
}
.button .bg {
top: 0;
right: 0;
bottom: 0;
left: 0;
position: absolute;
z-index: -1;
}
.button .client {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
height: 100%;
position: relative;
}
.button .icon,
.button.hasIcon,
.button.large,
.button.minWidth,
.button.small,
.button.decoration,
.button.selected,
.button.pressed {
/* Public Class Names */
}
.button[disabled] {
cursor: default;
}