Skip to content

Commit

Permalink
fix: remove '!important' from CSS variables
Browse files Browse the repository at this point in the history
It doesn't make a difference to use them here, therefore I'm removing
them; the outcome can be seen in the v3.3.0 release diff.
  • Loading branch information
vednoc committed Nov 1, 2020
1 parent 4b8ebd3 commit f64fa06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wa.user.styl
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ OM = _omsg

/// UI font.
--ui-font: ui_font, Segoe UI, Helvetica Neue, Helvetica, Lucida Grande,
Arial, Ubuntu, Cantarell, Fira Sans, sans-serif i
Arial, Ubuntu, Cantarell, Fira Sans, sans-serif

/// Rounded corners.
--r-menus: radius_m
Expand Down Expand Up @@ -906,7 +906,7 @@ OM = _omsg
val = _v + \- + _i

/// Generate CSS variables.
{ key }: val i
{ key }: val
{ key + '-rgb' }: to_rgb(val)
}
}
Expand All @@ -915,7 +915,7 @@ OM = _omsg
--white: _white
--white-rgb: to_rgb(_white)
--sh: _sh
--sh-rgb: to_rgb(_sh, 1) i
--sh-rgb: to_rgb(_sh, 1)
--t: transparent
--bshadow: 0 4px 8px 2px var(--shadow)

Expand Down

0 comments on commit f64fa06

Please sign in to comment.