Defect #31502
closed
Error syntax in application.css
Added by Enziin System over 5 years ago.
Updated over 5 years ago.
Description
In the file stylesheet: public/stylesheets/application.css
.toggle-multiselect { no-repeat 0% 40%; padding-left:16px; margin-left:0; margin-right:5px; cursor:pointer;}
It error at the "no-repeat 0% 40%;"
Missing ":"
- Related to Defect #31496: Switch between toggle plus and minus icons for toggle multi select added
- Assignee set to Marius BĂLTEANU
Thank you for reporting.
Maybe we can simply remove "no-repeat 0% 40%;
"?
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 9981efc4b..dfeb137b2 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -531,7 +531,7 @@ fieldset#filters td.values select {min-width:130px;}
.add-filter {width:35%; float:right; text-align: right; vertical-align: top;}
#issue_is_private_wrap {float:right; margin-right:1em;}
-.toggle-multiselect { no-repeat 0% 40%; padding-left:16px; margin-left:0; margin-right:5px; cursor:pointer;}
+.toggle-multiselect {padding-left:16px; margin-left:0; margin-right:5px; cursor:pointer;}
.buttons { font-size: 0.9em; margin-bottom: 1.4em; margin-top: 1em; }
div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
You can change to:
no-repeat: 0% 40%;
Thanks for catching this problem, I've attached to #31496 a patch with multiple fixes.
- Status changed from New to Closed
- Assignee deleted (
Marius BĂLTEANU)
- Resolution set to Fixed
Also available in: Atom
PDF