Commit 4bceb5e5696bbc6ee197b0cc9d5d0f1ef5331fff
1 parent
14dca266
Exists in
master
and in
22 other branches
Removed !important from CSS
Making selector more specifc to avoid the usage of "important" (ActionItem3008)
Showing
1 changed file
with
8 additions
and
8 deletions
Show diff stats
public/stylesheets/application.css
| @@ -6589,18 +6589,18 @@ ul.article-versions li { | @@ -6589,18 +6589,18 @@ ul.article-versions li { | ||
| 6589 | font-style: italic; | 6589 | font-style: italic; |
| 6590 | } | 6590 | } |
| 6591 | 6591 | ||
| 6592 | -#result-short { | ||
| 6593 | - color: red !important; | 6592 | +#signup-form #result-short { |
| 6593 | + color: red; | ||
| 6594 | } | 6594 | } |
| 6595 | 6595 | ||
| 6596 | -#result-bad { | ||
| 6597 | - color: #825A2C !important; | 6596 | +#signup-form #result-bad { |
| 6597 | + color: #825A2C; | ||
| 6598 | } | 6598 | } |
| 6599 | 6599 | ||
| 6600 | -#result-good { | ||
| 6601 | - color: green !important; | 6600 | +#signup-form #result-good { |
| 6601 | + color: #32CD32; | ||
| 6602 | } | 6602 | } |
| 6603 | 6603 | ||
| 6604 | -#result-strong { | ||
| 6605 | - color: #32CD32 !important; | 6604 | +#signup-form #result-strong { |
| 6605 | + color: green; | ||
| 6606 | } | 6606 | } |