diff options
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
|