Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.text-decoration-underline .text-decoration-line-through missing from bootstrap-utilities.css #29790

Closed
kopax opened this issue Dec 2, 2019 · 2 comments

Comments

@kopax
Copy link

kopax commented Dec 2, 2019

This is the generated bootstrap-utilities.css: https://github.com/twbs/bootstrap/blob/master/dist/css/bootstrap-utilities.css#L1145

This is the one class available for text-decoration:

.text-decoration-none {
  text-decoration: none !important;
}

This is the $utilities for text-decoration: https://github.com/twbs/bootstrap/blob/master/scss/_utilities.scss#L427

It as the following configuration:

    "text-decoration": (
      property: text-decoration,
      values: none underline line-through
    ),

I expect to have the 3 following generated class (instead of just one):

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

branch: master

@MartijnCuppens
Copy link
Member

They are generated (see https://twbs-bootstrap.netlify.com/docs/4.3/dist/css/bootstrap-utilities.css)

These utilities were just recently added (#29604) and the css files weren't regenerated in the meantime.

@kopax
Copy link
Author

kopax commented Dec 2, 2019

That make perfect sens. Thanks!

@kopax kopax closed this as completed Dec 2, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants