Sha256: b1f564a5be91043bcb6271cf7a80860a27fb9a622982e365779bd6ef41fa2447
Contents?: true
Size: 1.05 KB
Versions: 51
Compression:
Stored size: 1.05 KB
Contents
/* ========================================================================== $BASE-PICKER ========================================================================== */ @import "_variables.less"; /** * Note: the root picker element should *NOT* be styled more than what’s here. */ .picker { // The base font stylings. font-size: @base-font-size; text-align: left; line-height: @base-line-height; color: @black; // The picker shouldn’t affect or be affected by elements around it. position: absolute; z-index: @picker-z-index; // The picker shouldn’t be selectable. .user-select( none ); } /** * The picker input element. */ .picker__input { cursor: default; } /** * When the picker is opened, the input element is “activated”. */ .picker__input.picker__input--active { border-color: @input-active-border; } /** * The holder is the only “scrollable” top-level container element. */ .picker__holder { width: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; }
Version data entries
51 entries across 51 versions & 2 rubygems