Skip to content

Commit

Permalink
add !important to new text- rules
Browse files Browse the repository at this point in the history
  • Loading branch information
codysherman committed Jan 7, 2020
1 parent f96b76d commit e85667e
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 27 deletions.
16 changes: 8 additions & 8 deletions dist/frow.css
Original file line number Diff line number Diff line change
Expand Up @@ -2687,24 +2687,24 @@ textarea {
text-transform: capitalize !important; }

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

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

.text-italic {
font-style: italic; }
font-style: italic !important; }

.text-ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis; }
overflow: hidden !important;
white-space: nowrap !important;
text-overflow: ellipsis !important; }

.opacity-0 {
opacity: 0; }
opacity: 0 !important; }

.opacity-100 {
opacity: 1; }
opacity: 1 !important; }

.visible-print,
.frow.visible-print {
Expand Down
2 changes: 1 addition & 1 deletion dist/frow.min.css

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions docs/styles/frow.css
Original file line number Diff line number Diff line change
Expand Up @@ -2688,24 +2688,24 @@ textarea {
text-transform: capitalize !important; }

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

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

.text-italic {
font-style: italic; }
font-style: italic !important; }

.text-ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis; }
overflow: hidden !important;
white-space: nowrap !important;
text-overflow: ellipsis !important; }

.opacity-0 {
opacity: 0; }
opacity: 0 !important; }

.opacity-100 {
opacity: 1; }
opacity: 1 !important; }

.visible-print,
.frow.visible-print {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frow",
"version": "3.3.0",
"version": "3.3.1",
"description": "Flexbox Toolkit & Grid",
"main": "frow.sass",
"scripts": {
Expand Down
16 changes: 8 additions & 8 deletions src/_utilities.sass
Original file line number Diff line number Diff line change
Expand Up @@ -160,28 +160,28 @@
// Text decorations
// -------------------------
.text-underline
text-decoration: underline
text-decoration: underline !important

.text-line-through
text-decoration: line-through
text-decoration: line-through !important

.text-italic
font-style: italic
font-style: italic !important

// Text overflow styles
// -------------------------
.text-ellipsis
overflow: hidden
white-space: nowrap
text-overflow: ellipsis
overflow: hidden !important
white-space: nowrap !important
text-overflow: ellipsis !important

// Opacity styles
// -------------------------
.opacity-0
opacity: 0
opacity: 0 !important

.opacity-100
opacity: 1
opacity: 1 !important


// Print display rules
Expand Down

0 comments on commit e85667e

Please sign in to comment.