File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3587,3 +3587,6 @@ color: {{ setting_value('visiosoft.theme.defaultadmin::input_placeholder_color')
3587
3587
.ml-5p {
3588
3588
margin-left : 5px ;
3589
3589
}
3590
+ .table a {
3591
+ word-break : break-word;
3592
+ }
Original file line number Diff line number Diff line change @@ -80,12 +80,12 @@ $(document).on('ready', function () {
80
80
var checkTableFixed = function ( ) {
81
81
if ( $responsiveTable . outerWidth ( ) < $table . outerWidth ( ) || window . innerWidth < 992 || isAtTop ( ) ) {
82
82
$thead . css ( { position : 'relative' , top : '0px' } ) ;
83
- $thead . css ( { zIndex : '1010 ' } ) ;
83
+ $thead . css ( { zIndex : '99 ' } ) ;
84
84
$table . css ( { marginTop : '0' } ) ;
85
85
} else {
86
86
$thead . css ( { position : 'fixed' , top : topBarHeight + 'px' } ) ;
87
87
$table . css ( { marginTop : $thead . height ( ) + 'px' } ) ;
88
- $thead . css ( { zIndex : '1010 ' } ) ;
88
+ $thead . css ( { zIndex : '99 ' } ) ;
89
89
}
90
90
} ;
91
91
@@ -123,7 +123,7 @@ $(document).on('ready', function () {
123
123
var scrollTop = $ ( 'body' ) . scrollTop ( ) || $ ( 'html' ) . scrollTop ( ) ;
124
124
var windowHeight = window . innerHeight ;
125
125
var documentHeight = document . body . scrollHeight ;
126
-
126
+
127
127
return scrollTop + windowHeight - documentHeight + controlsHeight + 30 > 0 ;
128
128
} ;
129
129
You can’t perform that action at this time.
0 commit comments