Skip to content

Instantly share code, notes, and snippets.

View alesvojta's full-sized avatar

Aleš Vojta alesvojta

  • Tipsport
  • Czechia
View GitHub Profile
@alesvojta
alesvojta / z-index-mixin.less
Last active January 14, 2020 12:34 — forked from gerbenvandijk/z-index-mixin.less
Z-index mixin for LESS
@z-index-order: context, modal, lightbox, nav;
.Zindex(@layer, @offset: 0) {
.loop(@layer, @counter) when (@counter > 0) {
.loop(@layer, @counter - 1);
.pickIndex(@layer, @counter);
}
.loop(@layer, length(@z-index-order));