Skip to content

Commit

Permalink
Display: Session link as foldable shows an indicator - refs BT#19664
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Feb 17, 2022
1 parent d51c9e1 commit d9d5e5c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/Resources/public/css/base.css
Expand Up @@ -6467,13 +6467,13 @@ div#chat-remote-video video {
margin-top: 10px;
}

.collapse-toogle--right,
#about-course .about-course--btn-details {
padding-left: 0;
padding-right: 25px;
}
#about-course .about-course--btn-details {
background: url("../../main/img/icons/22/arrow-up-collapse.png") no-repeat right center;
}
.collapse-toogle--right.collapsed,
#about-course .about-course--btn-details.collapsed{
background: url("../../main/img/icons/22/arrow-down-collapse.png") no-repeat right center;
}
Expand Down
2 changes: 1 addition & 1 deletion main/template/default/user_portal/classic_session.tpl
Expand Up @@ -27,7 +27,7 @@
{% elseif row.course_list_session_style == 3 %}
{# Collapsible/Foldable panel #}
<a role="button" data-toggle="collapse" data-parent="#page-content" href="#collapse_{{ row.id }}"
aria-expanded="false">
aria-expanded="false" class="collapse-toogle--right collapsed">
{{ session_image }} {{ row.title }}
</a>
{% if row.collapsable_link %}
Expand Down
2 changes: 1 addition & 1 deletion main/template/default/user_portal/grid_session.tpl
Expand Up @@ -144,7 +144,7 @@
{# Collapsible panel #}
{# Foldable #}
<a role="button" data-toggle="collapse" data-parent="#page-content" href="#collapse_{{ row.id }}"
aria-expanded="false">
aria-expanded="false" class="collapse-toogle--right collapsed">
{{ session_image }} {{ row.title }}
</a>
{% set collapsable = 'collapse' %}
Expand Down

0 comments on commit d9d5e5c

Please sign in to comment.