Skip to content
Snippets Groups Projects
Commit bc741469 authored by Kathrin Osswald's avatar Kathrin Osswald
Browse files

Added rule to show description border for all users for restricted activities.

parent 82a2f033
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,7 @@ Changes ...@@ -6,6 +6,7 @@ Changes
### Unreleased ### Unreleased
* 2020-08-07 - Added rule to show description border for all users for restricted activities.
* 2020-08-07 - Added check for empty string to regular expression for time controlled info banner settings. * 2020-08-07 - Added check for empty string to regular expression for time controlled info banner settings.
* 2020-08-05 - Added settings to be able to show a banner with information on selected pages. * 2020-08-05 - Added settings to be able to show a banner with information on selected pages.
PLEASE NOTE: For all scenarios to pass, the Moodle version 3.8.4+ (Build: 2019111804) is needed. PLEASE NOTE: For all scenarios to pass, the Moodle version 3.8.4+ (Build: 2019111804) is needed.
......
...@@ -476,6 +476,19 @@ body.loginbackgroundimage #page { ...@@ -476,6 +476,19 @@ body.loginbackgroundimage #page {
padding-left: 10px; padding-left: 10px;
font-size: .9rem; font-size: .9rem;
} }
/* Add border to description text for restricted activities and show it also to students.
This is needed because the classes for teachers and students differ. */
.section .contentwithoutlink {
border-left: 2px solid $gray-light;
padding-left: 10px;
font-size: .9rem;
display: block;
margin-left: 30px;
margin-top: .5em;
p {
margin: .5em 0;
}
}
/* Place meta information in a new line. */ /* Place meta information in a new line. */
.resourcelinkdetails { .resourcelinkdetails {
display: block; display: block;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment