summaryrefslogtreecommitdiff
path: root/yaksh/static
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/static')
-rw-r--r--yaksh/static/yaksh/css/custom.css22
-rw-r--r--yaksh/static/yaksh/js/add_quiz.js4
-rw-r--r--yaksh/static/yaksh/js/lesson.js9
3 files changed, 11 insertions, 24 deletions
diff --git a/yaksh/static/yaksh/css/custom.css b/yaksh/static/yaksh/css/custom.css
index 594e1f3..2f62a26 100644
--- a/yaksh/static/yaksh/css/custom.css
+++ b/yaksh/static/yaksh/css/custom.css
@@ -1,25 +1,3 @@
-.yakshfooter {
- background-color: #142624;
- padding-top: 1%;
- padding-left: 10%;
- padding-right: 10%;
- padding-bottom: 1%;
- color: white;
- bottom: 0;
- width: 100%;
- position: absolute;
- text-align: center;
-}
-
-.yakshfooter .nav-pills>li>a, .yakshfooter .nav-pills .nav-link,.yakshnav .nav-pills>li>a {
- color: white;
-}
-
-.yakshfooter .nav-pills>li>a:hover, .yakshnav .nav-pills>li>a:hover {
- color: black;
- background-color: white;
-}
-
body, .dropdown-menu {
font-size: 1.25rem;
}
diff --git a/yaksh/static/yaksh/js/add_quiz.js b/yaksh/static/yaksh/js/add_quiz.js
index 57993ef..dab5a3d 100644
--- a/yaksh/static/yaksh/js/add_quiz.js
+++ b/yaksh/static/yaksh/js/add_quiz.js
@@ -1,8 +1,8 @@
function test()
{
- document.getElementById('id_duration').setAttribute('class','mini-text');
- document.getElementById('id_pass_criteria').setAttribute('class','mini-text');
+ document.getElementById('id_duration').setAttribute('class','mini-text form-control');
+ document.getElementById('id_pass_criteria').setAttribute('class','mini-text form-control');
if (document.getElementById("id_description").value != "")
{
document.getElementById("submit").innerHTML = "Save";
diff --git a/yaksh/static/yaksh/js/lesson.js b/yaksh/static/yaksh/js/lesson.js
index 6f873b9..a86cf1b 100644
--- a/yaksh/static/yaksh/js/lesson.js
+++ b/yaksh/static/yaksh/js/lesson.js
@@ -75,4 +75,13 @@ $(document).ready(function(){
alert("Unable to copy. Press Ctrl+C or Cmd+C to copy")
}
});
+
+ $('#id_video_file').on('change',function(){
+ //get the file name
+ var files = [];
+ for (var i = 0; i < $(this)[0].files.length; i++) {
+ files.push($(this)[0].files[i].name);
+ }
+ $(this).next('.custom-file-label').html(files.join(', '));
+ });
});