Actions
Defect #31502
closedError syntax in application.css
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
UI
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
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 issues
Updated by Go MAEDA over 5 years ago
- Related to Defect #31496: Switch between toggle plus and minus icons for toggle multi select added
Updated by Go MAEDA over 5 years ago
- 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%;}
Updated by Marius BĂLTEANU over 5 years ago
Thanks for catching this problem, I've attached to #31496 a patch with multiple fixes.
Updated by Go MAEDA over 5 years ago
- Status changed from New to Closed
- Assignee deleted (
Marius BĂLTEANU) - Resolution set to Fixed
Fixed in r18224. Thank you.
Actions