Skip to content

Commit

Permalink
Merge branch 'release/v6.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
erictompkins committed Nov 5, 2024
2 parents 468df87 + 1701b7b commit ef8dca1
Show file tree
Hide file tree
Showing 121 changed files with 530 additions and 109 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 6.4.0 (November 5, 2024)

- Added `!important` to display styles. This was doen so that the display styles are always set and can’t be overwridden by more specific site styles.
- Added support for CSS selectors with psuedo-classes.

## 6.3.0 (October 3, 2024)

- Updated v6 conversion scripts.
Expand Down
18 changes: 12 additions & 6 deletions dist/display/2xl/display.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
/* =========================================================================== *\
Display utilities
!important is used to ensure that the utility classes take precedence over
any other styles that might be applied to the elements. This is one of the
rare cases where we use !important. Use the media query
versions if you only need things to be displayed a certain way at a certain
breakpoints.
\* =========================================================================== */

@media (--m-2xl) {
.flex-2xl {
display: flex;
display: flex !important;
}

.inline-flex-2xl {
display: inline-flex;
display: inline-flex !important;
}

.block-2xl {
display: block;
display: block !important;
}

.inline-2xl {
display: inline;
display: inline !important;
}

.inline-block-2xl {
display: inline-block;
display: inline-block !important;
}

.hidden-2xl {
display: none;
display: none !important;
}

.visually-hidden-2xl {
Expand Down
18 changes: 12 additions & 6 deletions dist/display/2xs/display.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
/* =========================================================================== *\
Display utilities
!important is used to ensure that the utility classes take precedence over
any other styles that might be applied to the elements. This is one of the
rare cases where we use !important. Use the media query
versions if you only need things to be displayed a certain way at a certain
breakpoints.
\* =========================================================================== */

@media (--m-2xs) {
.flex-2xs {
display: flex;
display: flex !important;
}

.inline-flex-2xs {
display: inline-flex;
display: inline-flex !important;
}

.block-2xs {
display: block;
display: block !important;
}

.inline-2xs {
display: inline;
display: inline !important;
}

.inline-block-2xs {
display: inline-block;
display: inline-block !important;
}

.hidden-2xs {
display: none;
display: none !important;
}

.visually-hidden-2xs {
Expand Down
18 changes: 12 additions & 6 deletions dist/display/3xl/display.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
/* =========================================================================== *\
Display utilities
!important is used to ensure that the utility classes take precedence over
any other styles that might be applied to the elements. This is one of the
rare cases where we use !important. Use the media query
versions if you only need things to be displayed a certain way at a certain
breakpoints.
\* =========================================================================== */

@media (--m-3xl) {
.flex-3xl {
display: flex;
display: flex !important;
}

.inline-flex-3xl {
display: inline-flex;
display: inline-flex !important;
}

.block-3xl {
display: block;
display: block !important;
}

.inline-3xl {
display: inline;
display: inline !important;
}

.inline-block-3xl {
display: inline-block;
display: inline-block !important;
}

.hidden-3xl {
display: none;
display: none !important;
}

.visually-hidden-3xl {
Expand Down
18 changes: 12 additions & 6 deletions dist/display/3xs/display.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
/* =========================================================================== *\
Display utilities
!important is used to ensure that the utility classes take precedence over
any other styles that might be applied to the elements. This is one of the
rare cases where we use !important. Use the media query
versions if you only need things to be displayed a certain way at a certain
breakpoints.
\* =========================================================================== */

@media (--m-3xs) {
.flex-3xs {
display: flex;
display: flex !important;
}

.inline-flex-3xs {
display: inline-flex;
display: inline-flex !important;
}

.block-3xs {
display: block;
display: block !important;
}

.inline-3xs {
display: inline;
display: inline !important;
}

.inline-block-3xs {
display: inline-block;
display: inline-block !important;
}

.hidden-3xs {
display: none;
display: none !important;
}

.visually-hidden-3xs {
Expand Down
18 changes: 12 additions & 6 deletions dist/display/4xl/display.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
/* =========================================================================== *\
Display utilities
!important is used to ensure that the utility classes take precedence over
any other styles that might be applied to the elements. This is one of the
rare cases where we use !important. Use the media query
versions if you only need things to be displayed a certain way at a certain
breakpoints.
\* =========================================================================== */

@media (--m-4xl) {
.flex-4xl {
display: flex;
display: flex !important;
}

.inline-flex-4xl {
display: inline-flex;
display: inline-flex !important;
}

.block-4xl {
display: block;
display: block !important;
}

.inline-4xl {
display: inline;
display: inline !important;
}

.inline-block-4xl {
display: inline-block;
display: inline-block !important;
}

.hidden-4xl {
display: none;
display: none !important;
}

.visually-hidden-4xl {
Expand Down
18 changes: 12 additions & 6 deletions dist/display/5xl/display.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
/* =========================================================================== *\
Display utilities
!important is used to ensure that the utility classes take precedence over
any other styles that might be applied to the elements. This is one of the
rare cases where we use !important. Use the media query
versions if you only need things to be displayed a certain way at a certain
breakpoints.
\* =========================================================================== */

@media (--m-5xl) {
.flex-5xl {
display: flex;
display: flex !important;
}

.inline-flex-5xl {
display: inline-flex;
display: inline-flex !important;
}

.block-5xl {
display: block;
display: block !important;
}

.inline-5xl {
display: inline;
display: inline !important;
}

.inline-block-5xl {
display: inline-block;
display: inline-block !important;
}

.hidden-5xl {
display: none;
display: none !important;
}

.visually-hidden-5xl {
Expand Down
18 changes: 12 additions & 6 deletions dist/display/display.css
Original file line number Diff line number Diff line change
@@ -1,29 +1,35 @@
/* =========================================================================== *\
Display utilities
!important is used to ensure that the utility classes take precedence over
any other styles that might be applied to the elements. This is one of the
rare cases where we use !important. Use the media query
versions if you only need things to be displayed a certain way at a certain
breakpoints.
\* =========================================================================== */

.flex {
display: flex;
display: flex !important;
}

.inline-flex {
display: inline-flex;
display: inline-flex !important;
}

.block {
display: block;
display: block !important;
}

.inline {
display: inline;
display: inline !important;
}

.inline-block {
display: inline-block;
display: inline-block !important;
}

.hidden {
display: none;
display: none !important;
}

.visually-hidden {
Expand Down
18 changes: 12 additions & 6 deletions dist/display/lg/display.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
/* =========================================================================== *\
Display utilities
!important is used to ensure that the utility classes take precedence over
any other styles that might be applied to the elements. This is one of the
rare cases where we use !important. Use the media query
versions if you only need things to be displayed a certain way at a certain
breakpoints.
\* =========================================================================== */

@media (--m-lg) {
.flex-lg {
display: flex;
display: flex !important;
}

.inline-flex-lg {
display: inline-flex;
display: inline-flex !important;
}

.block-lg {
display: block;
display: block !important;
}

.inline-lg {
display: inline;
display: inline !important;
}

.inline-block-lg {
display: inline-block;
display: inline-block !important;
}

.hidden-lg {
display: none;
display: none !important;
}

.visually-hidden-lg {
Expand Down
18 changes: 12 additions & 6 deletions dist/display/md/display.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
/* =========================================================================== *\
Display utilities
!important is used to ensure that the utility classes take precedence over
any other styles that might be applied to the elements. This is one of the
rare cases where we use !important. Use the media query
versions if you only need things to be displayed a certain way at a certain
breakpoints.
\* =========================================================================== */

@media (--m-md) {
.flex-md {
display: flex;
display: flex !important;
}

.inline-flex-md {
display: inline-flex;
display: inline-flex !important;
}

.block-md {
display: block;
display: block !important;
}

.inline-md {
display: inline;
display: inline !important;
}

.inline-block-md {
display: inline-block;
display: inline-block !important;
}

.hidden-md {
display: none;
display: none !important;
}

.visually-hidden-md {
Expand Down
Loading

0 comments on commit ef8dca1

Please sign in to comment.