npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@zzzzbov/stacking-context

v0.0.0-alpha.0

Published

The Stacking Context module manages z-indexes across a website or webapp so that the stacking order is unambiguous and easy to understand at a glance.

Downloads

1

Readme

Stacking Context Sass Module

The Stacking Context module manages z-indexes across a website or webapp so that the stacking order is unambiguous and easy to understand at a glance.

Most apps don't need z-index values greater than 10, so if your app has values like 999 or 10000, then this module can probably help.

API

Mixin stacking-context($indexes...)

A mixin to create a new stacking context. When used without parameters the mixin is equivalent to isolation: isolate.

Parameter $indexes

A list of indexes to assign to $stacking-contexts. The key will be the current selector (&). selector.parse can be used to recreate the key if necessary.

Function z($index, $context, $direction)

| Meta | Details | | ------- | -------------- | | returns | number or null |

A function to look up the numeric value from the named $index in the specified $context.

Parameter $index

| Meta | Details | | ---- | ----------- | | type | any map key |

The named index to look up in the specified stacking context.

Parameter $context

| Meta | Details | | ------- | ------------------- | | default | default | | type | any map key or list |

The key of the stacking context to use from the module's configured $stacking-contexts, or a list to use as the stacking context.

Parameter $direction

| Meta | Details | | ------- | ------------------------------------------- | | default | $direction from the module configuration. | | type | ascending or descending |

The direction items are stacked in the specified stacking context.

See $direction in module configuration for details.

Module Configuration

The Stacking Context module exposes the following variables for configuration.

$direction

| Meta | Details | | ------- | --------------------------- | | default | ascending | | type | ascending or descending |

The default direction items are stacked in the module.

When ascending is specified, items earlier in the list will be covered by items later in the list. I.E. for (a, b, c): a is covered by b which is covered by c.

When descending is specified, items earlier in the list will cover items later in the list. I.E. for (a, b, c): a covers b which covers c.

$stacking-contexts

| Meta | Details | | ------- | --------------------------------------------- | | default | empty map | | type | map with keys of any type and values of lists |

The default stacking contexts to use globally. Any keys may be used. default is used as the default $context in the z function.

Examples

Example 1: Using the default stacking context globally

@use 'path/to/stacking-context' as sc with (
  // Stacking contexts can be globally configured for the module
  $stacking-contexts: (
    default: (
      nav,
      header,
      modal
    )
  )
);

nav {
  // The default stacking context is used if no value for `$context` is specified
  z-index: sc.z(nav); // 1
}
header {
  // By default items farther down the list have a higher z-index
  z-index: sc.z(header); // 2
}
.modal {
  z-index: sc.z(modal); // 3
}

Example 2: Using a non-default stacking context globally

@use 'path/to/stacking-context' as sc with (
  $stacking-contexts: (
    default: (
      nav,
      header,
      modal,
    ),
    modal: (
      body,
      footer,
      header,
    )
  )
);

header {
  // reads the `header` index from the `default` context
  z-index: sc.z(header); // 2
}

.modal {
  // @include stacking-context is the same as `isolation: isolate` when no
  // parameters are provided.
  isolation: isolate;
  // reads the `modal` index from the `default` context
  z-index: sc.z(modal); // 3

  &__header {
    // reads the `header` index from the `modal` context
    z-index: sc.z(header, modal); // 3
  }
  &__body {
    z-index: sc.z(body, modal); // 1
  }
  &__footer {
    z-index: sc.z(footer, modal); // 2
  }
}

Example 3: Using a specific stacking context list

@use 'path/to/stacking-context' as sc;

$indexes: (popup, menu, modal);

.popup {
  z-index: sc.z(popup, $indexes); // 1
}
.menu {
  z-index: sc.z(menu, $indexes); // 2
}
.modal {
  z-index: sc.z(modal, $indexes); // 3
}

Example 4: Updating the default $direction

@use 'path/to/stacking-context' as sc with (
  $direction: descending,
  $stacking-contexts: (
    default: (
      modal,
      header,
      nav
    )
  )
);

nav {
  // when `$direction: descending` is specified, items at the top of the list
  // stack on top of items at the bottom of the list
  z-index: sc.z(nav); // 1
}
header {
  z-index: sc.z(header); // 2
}
.modal {
  z-index: sc.z(modal); // 3
}

Example 5: Using a non-default $direction

@use 'path/to/stacking-context' as sc with (
  $stacking-contexts: (
    default: (
      modal,
      header,
      nav
    )
  )
);

nav {
  z-index: z(nav, $direction: descending); // 1
}

header {
  z-index: z(header, $direction: descending); // 2;
}

.modal {
  z-index: z(modal, $direction: descending); // 3;
}

Example 6: Using the stacking-context mixin to create scoped stacking contexts

@use 'path/to/stacking-context' as sc;

.button-group {
  // keep track of the current selector context
  $ctx: &;
  @include sc.stacking-context(default, focused); // isolation: isolate;
  --border: 0.25em;
  border: var(--border) solid transparent;
  display: inline-flex;
  flex-direction: row;

  button {
    appearance: none;
    background-color: transparent;
    border: var(--border) solid #888;
    margin: calc(var(--border) * -1);
    padding: 0.25em 0.5em;
    // use the parent selector context to look up the default z-index
    z-index: sc.z(default, $ctx); // 1

    &:not(:first-child) {
      margin-left: 0;
    }

    &:hover,
    &:focus {
      background-color: rgba(0, 0, 0, 0.2);
      border-color: #000;
      outline: 1px solid transparent;
      // use the parent selector context to look up the focused z-index
      // this allows the current button to show on top of its neighbors in
      // the button group
      z-index: sc.z(focused, $ctx); // 2
    }
  }
}

Example 7: Using selector.parse to access another stacking context created by the stacking-context mixin

@use 'path/to/stacking-context' as sc;
@use 'sass:selector';

.modal {
  @include sc.stacking-context(body, footer, header); // isolation: isolate;
}
.modal-header {
  z-index: sc.z(header, selector.parse(".modal")); // 3
}
.modal-body {
  z-index: sc.z(body, selector.parse(".modal")); // 1
}
.modal-footer {
  z-index: sc.z(footer, selector.parse(".modal")); // 2
}