MDL-52342 theme: Reduce specificity of selector

These selectors were introduced to fix a real issue (highlighted by behat with
Chromedriver) whereby the 'Show section foo' link was partially covered by
another layer.

The fix in that issue was too broad and applied to all content > div areas,
which had some unforseen effects.

Since the original issue only affected activity instances, and sections (and
not content > div regions), I've removed this from the original patch.
This commit is contained in:
Andrew Nicols
2016-02-11 08:20:28 +08:00
parent 22fa1056d7
commit c8b4b14574
2 changed files with 4 additions and 1 deletions
@@ -342,6 +342,9 @@
.content > div, /* All the divs but the activities which are in a UL. */
.activity .activityinstance {
opacity: .5;
}
.sectionname > span,
.activity .activityinstance {
margin-left: 10px;
margin-right: 10px;
}
File diff suppressed because one or more lines are too long