Sha256: 32bb4f3a986302f3f40149efad3c6ac5e251ad57b285e9162d1527145da8561f
Contents?: true
Size: 915 Bytes
Versions: 8
Compression:
Stored size: 915 Bytes
Contents
// // Lists // $author Ad Taylor // // ========================================================================== // Action list - hoz // ========================================================================== .action-list { @include clearfix(); padding: 0; & > li { display: inline-block; margin-right: $column-gutter/4; *display: inline; *zoom: 1; &:last-child { margin-right: 0; } } .divider { border-left: 1px solid mono(2); height: $base-line-height-px/2; } } // ========================================================================== // Action list Collapse state // ========================================================================== @mixin test { $gridSize: length($grids); $lastMQ: nth( nth($grids, $gridSize), 4); @media ( $lastMQ ) { .action-list.collapse { & > li { display: block; } } } } @include test();
Version data entries
8 entries across 8 versions & 1 rubygems