Socket
Socket
Sign inDemoInstall

@patternfly/pfe-sass

Package Overview
Dependencies
Maintainers
11
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@patternfly/pfe-sass

Sass variables and mixins for PatternFly Elements


Version published
Weekly downloads
325
decreased by-7.14%
Maintainers
11
Weekly downloads
 
Created
Source

PFE SASS

@Todo: Add All of the variables and mixins that are available to pfe-elements.

Containers & broadcast vars

If the container allows changes to background colors should influence the children: pfe-set-broadcasted function

Notes on using broadcast colors in components

  1. Only define CSS color property ( color: ; ) once per element
  2. Set the value equal to local variable: color: var(pfe-pfe-local--Color);
  3. In the pfe-component, do not set value of the broadcasted variables, instead set local variable values equal to the value of broadcasted, then with fallback colors
    1. Content components should never set the value of broadcasted vars, otherwise container components won't be able to pass them that information
  4. Reset local variable values as needed for color attribute overrides.

CSS Example

Let's use the pfe-cta as an example. We can start by defining local variables, namespaced for this component, and then updating the values of those variables as we go.

    // 1. set up local vars equal to theme vars & fallbacks
    :host {
      --pfe-cta--Color: var(theme--ui-link, #06c);
    }

    // 2. Use color property once, map to local var value
    :host(:not([priority]) {
      ::slotted(a) {
         //color: blue; CSS compiler will print this for IE11
         color: var(--pfe-cta--Color, blue) !important;
      }
    }

    // 3. Use broadcasted variables as needed, with theme fallback after other declarations
    :host {
      --pfe-cta--Color: var(broadcasted--ui-link, var(theme--ui-link, #06c));   
    }

    // 4. Override broadcasted last
    [color=accent] {
      --pfe-cta--Color: var(theme--surface-accent--ui-link);

On=dark is being deprecated.

Instead, custom classes already on the page should set broadcast values:

.ux-card[data-ux-theme="dark"] {
 --pfe-broadcasted--color--text: var(--pfe-theme--color--text--on-dark);
 --pfe-broadcasted--color--ui-link:  var(--pfe-theme--color--ui-link--on-dark);
 --pfe-broadcasted--color--ui-link--hover: var(--pfe-theme--color--ui-link--on-dark--hover);
 --pfe-broadcasted--color--ui-link--visited:var(--pfe-theme--color--ui-link--on-dark--visited);
 --pfe-broadcasted--color--ui-link--focus: var(--pfe-theme--color--ui-link--on-dark--focus);
}

Keywords

FAQs

Package last updated on 28 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc