Socket
Socket
Sign inDemoInstall

@ontario-digital-service/ontario-design-system-global-styles

Package Overview
Dependencies
0
Maintainers
5
Versions
44
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ontario-digital-service/ontario-design-system-global-styles

Includes the Ontario Design System global styles that are used for more generic elements and layouts, as well as fonts and favicon files.


Version published
Weekly downloads
8.8K
decreased by-6.54%
Maintainers
5
Install size
1.71 MB
Created
Weekly downloads
 

Readme

Source

Ontario Design System Global Styles

Package moved to @ongov namespace

This npm package has moved to a new namespace, the @ontario-digital-service/ontario-design-system-complete-styles has moved to @ongov/ontario-design-system-complete-styles. Package names are not changing - just the namespace.

Please make sure to update your projects to the new versions of the packages under @ongov so you will continue to receive updates. Packages under @ontario-digital-service will no longer be updated.

Introduction

The Ontario Design System global styles package is required to use the Ontario Design System components.

It includes the Ontario Design System global styles that are used for more generic elements and layouts, as well as font assets and favicons.

Installation and usage

To install the Ontario Design System global styles package, run the following command:

npm install --save @ontario-digital-service/ontario-design-system-global-styles

Using the global styles package

There are two ways to consume the Ontario Design System global styles package:

1. Import everything

You can import the entire global styles package by including the following import statements.

SCSS:

@forward "@ontario-digital-service/ontario-design-system-global-styles/dist/styles/scss/theme.scss";

CSS:

@forward "@ontario-digital-service/ontario-design-system-global-styles/dist/styles/css/compiled/ontario-theme.css";

This will give you access to the complete package, and will load in all layers of the project, as defined in our architecture section.

2. Import specific styles

Alternatively, you can be more granular by explicitly importing specific styles from the package instead. Note that this can only be done if using SCSS.

For example, if you only require our global variables, you can include the following @use rule to import specific styles:

@use '@ontario-digital-service/ontario-design-system-global-styles/dist/styles/scss/1-variables/global.variables' as globalVariables;

The @use rule loads mixins, functions, and variables from other Sass stylesheets, and combines CSS from multiple stylesheets together. In your SCSS, you would then reference one of these variables by including the namespace, followed by the variable you intend to use. For example:

.platform-banner {
	width: globalVariables.$full-width;
	max-width: globalVariables.$full-width;
}

Architecture

For this package, we are using Harry Roberts' Inverted Triangle CSS (ITCSS) method of organizing code. The inverted triangle organizes code along three axes:

  • Generic to explicit
  • Low specificity to high specificity
  • Far-reaching to localized

That means that styles that appear in the beginning of the project tend to be general styles that affect larger pieces of the Design System, while styles that appear later target very specific elements in explicit ways.

In ITCSS, there is a concept of breaking down the CSS into layers, with the top layer holding the most general styles, and the bottom layer holding more specific styles. For the global styles package, we have broken the structure into the following layers:

Variables:

This layer contains all variables that will be used throughought the SCSS partials. For that reason, it needs to be the first partial to be imported into the theme style sheet.

It is worth noting that the values in our variables are using tokens from the Ontario Design Tokens Design Tokens package. Please check that package for more information.

The variables layer holds the following folders for the following variables: breakpoints, colours, font sizes, font weights, global, grid, letter spacing, line heights, spacing, typography and z-index helper variables.

Note: These files should not generate any CSS

Tools:

This layer will include globally available functions, mixins, and placeholders that we use throughout our SCSS partials. These are not specific to one component.

Note: These files should not generate any CSS

Generics:

This layer loads in font-face declarations, any CSS resets, and colours.

Elements:

This layer includes all base HTML elements (such as paragraph elements, headings, anchors, inputs, etc). These only include element-level selectors, not classes or ids.

Layout:

This layer includes styles for non-structured design patterns, such as wrappers, containers, layout systems, typography, and media. Selectors here have one class at most.

Components:

This layer includes design patterns and UI pieces necessary for components. Note that the styles for components in this section are generic. To include specific styles for components, it is better to use the Ontario Design System Component Library or Ontario Design System complete styles packages.

Overrides:

This layer includes helper classes that should override all other patterns for specific behaviours. It currently includes classes for spacing and visibility overrides.

Naming convention

The Ontario Design System global styles package uses the Block Element Modifier (BEM) methodology for naming CSS classes and variables.

BEM allows for developers to see at a glance how classes relate to one another while maintaining the modularity of blocks.

The basic BEM convention goes: .block-name__element-name--modifier-state, with double underscores denoting relationships between elements, and double hyphens indicating variants and states.

  • Blocks are independent components of the page.

    • Example: .ontario-header, .ontario-footer, .ontario-row, etc.
  • Elements are children of blocks. An element can only have one parent block, and can’t be used independently outside of that block.

    • Example: .ontario-fieldset__legend, .ontario-label__flag, etc.
  • A Modifier defines the look, state and behaviour of a block or an element. It contains only additional styles that change the original block implementation in some way. This allows you to set the appearance of a universal block only once, and add only those features that differ from the original block code into the modifier styles.

    • Example: .ontario-input--2-char-width, .ontario-fieldset__legend--heading. etc.

    Support

Contact us at design.system@ontario.ca for assistance with this package.

References

FAQs

Last updated on 09 Apr 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc