Skip to content

Commit

Permalink
fix: content module links and timed exams
Browse files Browse the repository at this point in the history
Place a text underline on links that are created in the content area.
Fix the styling of the start button on timed exams.
  • Loading branch information
sandroscosta authored and igobranco committed Jun 27, 2024
1 parent 5e1ca17 commit 8d5ae2a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -783,6 +783,20 @@ article.course>section.details>div.wrapper-course-details>div.course-info>span.i
border: 2px solid $header-bar-color !important;
}

.xmodule_display.xmodule_HtmlBlock a {
&:link,
&:visited,
&:active,
&:focus {
text-decoration: underline;
}

&:hover,
&:focus {
color: $primary-hover !important;
}
}

.view-profile .wrapper-profile {
background: none;
}
Expand All @@ -795,4 +809,16 @@ article.course>section.details>div.wrapper-course-details>div.course-info>span.i
// fix horizontal scroll on course page
.course-outline .block-tree .section {
margin-right: 0px;
}

.course-wrapper .course-content div.timed-exam button.gated-sequence,
.course-wrapper .course-content div.proctored-exam button.gated-sequence,
.course-wrapper .courseware-results-wrapper div.timed-exam button.gated-sequence,
.course-wrapper .courseware-results-wrapper div.proctored-exam button.gated-sequence {
text-align: center !important;

a {
color: white;
text-shadow: none !important;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

// Make a new primary color
$primary: #074CE1;
$primary-hover: #0640bf;
//$blue-pr: #074CE1;
// Primary blue
$blue: $primary;
Expand Down

0 comments on commit 8d5ae2a

Please sign in to comment.