Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
dd6d172a
Commit
dd6d172a
authored
Jun 30, 2017
by
Joshua Spayd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WIP: Add toggle timer functionality
JavaScript needs to be moved to edx-proctoring repo
parent
0365712b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
6 deletions
+60
-6
lms/static/sass/course/layout/_courseware_preview.scss
+40
-3
lms/templates/courseware/proctored-exam-status.underscore
+20
-3
No files found.
lms/static/sass/course/layout/_courseware_preview.scss
View file @
dd6d172a
...
@@ -88,9 +88,6 @@
...
@@ -88,9 +88,6 @@
}
}
.pull-right
{
.pull-right
{
color
:
$gray-l3
;
color
:
$gray-l3
;
b
{
color
:
$white
;
}
.exam-button-turn-in-exam
{
.exam-button-turn-in-exam
{
background-color
:
transparent
;
background-color
:
transparent
;
...
@@ -103,6 +100,27 @@
...
@@ -103,6 +100,27 @@
color
:
$action-primary-bg
;
color
:
$action-primary-bg
;
}
}
}
}
.exam-timer-clock
{
background-color
:
transparent
;
border
:
1px
solid
$white
;
a
,
b
{
color
:
$white
;
}
a
{
// Overrides:
border-top
:
none
;
border-right
:
none
;
border-bottom
:
none
;
border-top-right-radius
:
2px
;
border-bottom-right-radius
:
2px
;
&
:hover
{
// Overrides:
border-top
:
none
;
border-right
:
none
;
border-bottom
:
none
;
}
}
}
}
}
}
}
&
.warning
{
&
.warning
{
...
@@ -128,5 +146,24 @@
...
@@ -128,5 +146,24 @@
border
:
0
;
border
:
0
;
}
}
}
}
.exam-timer-clock
{
display
:
inline-block
;
padding
:
0
0
0
(
$baseline
/
3
);
background-color
:
$gray-l3
;
border-radius
:
3px
;
a
{
@extend
.exam-button-turn-in-exam
;
//Overrides:
padding
:
(
$baseline
/
5
)
(
$baseline
/
3
);
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
;
margin-right
:
0
;
}
b
{
padding-right
:
(
$baseline
/
5
);
}
}
}
}
}
}
lms/templates/courseware/proctored-exam-status.underscore
View file @
dd6d172a
...
@@ -19,9 +19,26 @@
...
@@ -19,9 +19,26 @@
<% } %>
<% } %>
</span>
</span>
<span class="sr timer-announce" aria-live="assertive"></span>
<span class="sr timer-announce" aria-live="assertive"></span>
<span id="time_remaining_id">
<span class="exam-timer-clock">
<b>
<span id="time_remaining_id" style="visibility: visible;">
</b>
<b>
</b>
</span>
<a id="toggle_timer" href="#" title="<%- gettext("Hide Timer") %>"><i class="fa fa-eye-slash" aria-hidden="true"></i></a>
<script type="text/javascript">
$("#toggle_timer").click(function() {
if ($("#time_remaining_id").css("visibility") === "visible") {
$("#time_remaining_id").css("visibility", "hidden");
$(this).attr("title", "<%- gettext("Show Timer") %>");
$(this).find("i").removeClass("fa-eye-slash").addClass("fa-eye");
} else {
$("#time_remaining_id").css("visibility", "visible");
$(this).attr("title", "<%- gettext("Hide Timer") %>");
$(this).find("i").removeClass("fa-eye").addClass("fa-eye-slash");
}
return false; // prevents the window from scrolling up on click
});
</script>
</span>
</span>
</div>
</div>
</div>
</div>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment