Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 2.1
-
Component/s: Filters
-
Database:Any
-
Testing Instructions:
-
Difficulty:Easy
-
Affected Branches:MOODLE_21_STABLE
-
Fixed Branches:MOODLE_20_STABLE, MOODLE_21_STABLE
-
Pull from Repository:
-
Pull Master Branch:wip-mdl-28504
-
Pull Master Diff URL:
Description
In filter/mediaplugin/styles.css there is a semicolon outside the brace of this rule:
.mp3flowplayer_backgroundColor {color: #000000};
|
This affects the combined and minimised CSS when another file, in my case course/format/topics/styles.css, is concatenated, eg:
... margin-left:0.5em}.mp3flowplayer_backgroundColor{color:#000};.course-content
|
ul.topics{margin:0} ...
|
The effect is the ".course-content ul.topics
{margin:0}" rule gets ignored by the browser. Removing the semicolon or moving it inside the brace solves the problem (after purging the caches).