Skip to content

Commit 4830376

Browse files
authored
Merge pull request #46 from serdarekremcakir/serdar
error caused by very long words has been fixed
2 parents 49a5797 + 9ebc45d commit 4830376

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

resources/css/theme.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3587,3 +3587,6 @@ color: {{ setting_value('visiosoft.theme.defaultadmin::input_placeholder_color')
35873587
.ml-5p{
35883588
margin-left: 5px;
35893589
}
3590+
.table a{
3591+
word-break: break-word;
3592+
}

resources/js/theme/initialize.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ $(document).on('ready', function () {
8080
var checkTableFixed = function () {
8181
if ($responsiveTable.outerWidth() < $table.outerWidth() || window.innerWidth < 992 || isAtTop()) {
8282
$thead.css({position: 'relative', top: '0px'});
83-
$thead.css({zIndex: '1010'});
83+
$thead.css({zIndex: '99'});
8484
$table.css({marginTop: '0'});
8585
} else {
8686
$thead.css({position: 'fixed', top: topBarHeight + 'px'});
8787
$table.css({marginTop: $thead.height() + 'px'});
88-
$thead.css({zIndex: '1010'});
88+
$thead.css({zIndex: '99'});
8989
}
9090
};
9191

@@ -123,7 +123,7 @@ $(document).on('ready', function () {
123123
var scrollTop = $('body').scrollTop() || $('html').scrollTop();
124124
var windowHeight = window.innerHeight;
125125
var documentHeight = document.body.scrollHeight;
126-
126+
127127
return scrollTop + windowHeight - documentHeight + controlsHeight + 30 > 0;
128128
};
129129

0 commit comments

Comments
 (0)