diff options
author | prathamesh | 2014-08-11 14:55:58 +0530 |
---|---|---|
committer | prathamesh | 2014-08-11 14:55:58 +0530 |
commit | 5aab6280c2bc6e06577b69da3c31ea033061ed1e (patch) | |
tree | d67555958eedab12eed1dc4b02e633b060b4244e /testapp/exam/static | |
parent | 80c415879473429a8e82ac11f472387f4eda778c (diff) | |
parent | 962cee1705509bb595cda51d104ef1ef7cf0b4fd (diff) | |
download | online_test-5aab6280c2bc6e06577b69da3c31ea033061ed1e.tar.gz online_test-5aab6280c2bc6e06577b69da3c31ea033061ed1e.tar.bz2 online_test-5aab6280c2bc6e06577b69da3c31ea033061ed1e.zip |
Merge branch 'redirect_result_view'
Diffstat (limited to 'testapp/exam/static')
-rw-r--r-- | testapp/exam/static/exam/css/question_quiz.css | 12 | ||||
-rw-r--r-- | testapp/exam/static/exam/js/add_quiz.js | 4 |
2 files changed, 13 insertions, 3 deletions
diff --git a/testapp/exam/static/exam/css/question_quiz.css b/testapp/exam/static/exam/css/question_quiz.css index b702bd4..ee249d4 100644 --- a/testapp/exam/static/exam/css/question_quiz.css +++ b/testapp/exam/static/exam/css/question_quiz.css @@ -5,14 +5,20 @@ table th, table td .mini-text { - height : 9px; - width : 30px; + height : 25px; + width : 70px; } .select-type { - width : 80px; + width : 225px; } .tag-text { + height : 30px; width : 290px; } +.date-text +{ + height : 30px; + width : 100px; +} diff --git a/testapp/exam/static/exam/js/add_quiz.js b/testapp/exam/static/exam/js/add_quiz.js index d5688a8..184881c 100644 --- a/testapp/exam/static/exam/js/add_quiz.js +++ b/testapp/exam/static/exam/js/add_quiz.js @@ -1,5 +1,9 @@ function test() { + + document.getElementById('id_duration').setAttribute('class','mini-text'); + document.getElementById('id_pass_criteria').setAttribute('class','mini-text'); + document.getElementById('id_start_date').setAttribute('class','date-text'); if (document.getElementById("id_description").value != "") { document.getElementById("submit").innerHTML = "Save"; |