fix invisible titles for module items locked by sequence
the css rule to display the non-link title ("locked_title") was not being applied because the default rule was more specific test plan: - create a module with multiple items - add a completion requirement to (at least) the first item - view the modules page as a student - the later module items should still have titles fixes CNVS-10078 Change-Id: I9485eb477cc74e9aaced312cdf58a551ed7b3fe0 Reviewed-on: https://gerrit.instructure.com/27992 Tested-by: Jenkins <jenkins@instructure.com> Reviewed-by: Bracken Mosbacker <bracken@instructure.com> Product-Review: Bracken Mosbacker <bracken@instructure.com> QA-Review: Matt Fairbourn <mfairbourn@instructure.com>
This commit is contained in:
parent
8dd37e2cb9
commit
2b93148869
|
@ -215,13 +215,14 @@ $context_module_bg_color: #f2f3f4
|
||||||
.incomplete_item_icon
|
.incomplete_item_icon
|
||||||
display: none
|
display: none
|
||||||
&.after_current_position
|
&.after_current_position
|
||||||
+opacity(0.5)
|
.item_name
|
||||||
.title
|
+opacity(0.5)
|
||||||
display: none
|
.title
|
||||||
.locked_title
|
display: none
|
||||||
display: inline-block
|
.locked_title
|
||||||
.completion_requirement
|
display: inline-block
|
||||||
color: #aaa
|
.completion_requirement
|
||||||
|
color: #aaa
|
||||||
.module_item_icons
|
.module_item_icons
|
||||||
vertical-align: top
|
vertical-align: top
|
||||||
padding-top: 2px
|
padding-top: 2px
|
||||||
|
|
Loading…
Reference in New Issue