diff options
author | adityacp | 2020-01-24 09:40:17 +0530 |
---|---|---|
committer | adityacp | 2020-01-24 09:40:17 +0530 |
commit | ebbb1b4d3dcec668b901200de7b31253162da80c (patch) | |
tree | e142e921193927a37182d0d1a964fbe80bf52d82 /yaksh/static | |
parent | 1a485a73245e10e4f2c49e10e376eaa8f2f2ca8c (diff) | |
download | online_test-ebbb1b4d3dcec668b901200de7b31253162da80c.tar.gz online_test-ebbb1b4d3dcec668b901200de7b31253162da80c.tar.bz2 online_test-ebbb1b4d3dcec668b901200de7b31253162da80c.zip |
Change in views, forms and templates
- Add django messages for showing success, warning messages
- Add pagination in monitor and grade user
- Remove unnecessary template blocks
- Show add and view options for quizzes, lessons, modules
- Add form-control bootstrap class for multiple forms
- Fix the UI in grade user and monitor pages
- Add font awesome icons in the login page
Diffstat (limited to 'yaksh/static')
-rw-r--r-- | yaksh/static/yaksh/css/custom.css | 8 | ||||
-rw-r--r-- | yaksh/static/yaksh/js/course.js | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/yaksh/static/yaksh/css/custom.css b/yaksh/static/yaksh/css/custom.css index 2f62a26..8623bfb 100644 --- a/yaksh/static/yaksh/css/custom.css +++ b/yaksh/static/yaksh/css/custom.css @@ -15,11 +15,15 @@ body, .dropdown-menu { display: flex; } -.course-detail { +.course-detail, #result-table { table-layout: fixed; width: 100%; } -.course-detail > th, td { +.course-detail, #result-table > th, td { word-wrap: break-word; +} + +#rendered_text{ + width: 550px; }
\ No newline at end of file diff --git a/yaksh/static/yaksh/js/course.js b/yaksh/static/yaksh/js/course.js index 29d2d9a..7b3c5d9 100644 --- a/yaksh/static/yaksh/js/course.js +++ b/yaksh/static/yaksh/js/course.js @@ -125,7 +125,7 @@ $(document).ready(function(){ $('[data-toggle="tab"]').tooltip({
trigger: 'hover',
placement: 'top',
- animate: true,
+ animate: false,
container: 'body'
});
}); // end document ready
|