This repository was archived by the owner on Feb 2, 2025. It is now read-only.
File tree 4 files changed +33
-14
lines changed
4 files changed +33
-14
lines changed Original file line number Diff line number Diff line change 33
33
" node_modules/materialize-css/dist/css/materialize.css" ,
34
34
" node_modules/prism-themes/themes/prism-material-dark.css" ,
35
35
" src/styles.css" ,
36
- " node_modules/prismjs/plugins/toolbar/prism-toolbar.css" ,
37
- " node_modules/datatables.net-fixedcolumns-bs4/css/fixedColumns.bootstrap4.css"
36
+ " node_modules/prismjs/plugins/toolbar/prism-toolbar.css"
38
37
],
39
38
"scripts" : [
40
39
" node_modules/jquery/dist/jquery.js" ,
135
134
" node_modules/datatables.net-responsive-dt/css/responsive.dataTables.css" ,
136
135
" node_modules/datatables.net-select-dt/css/select.dataTables.css" ,
137
136
" node_modules/materialize-css/dist/css/materialize.css" ,
138
- " src/styles.css" ,
139
- " node_modules/datatables.net-fixedcolumns-bs4/css/fixedColumns.bootstrap4.css"
137
+ " src/styles.css"
140
138
],
141
139
"assets" : [
142
140
" src/assets" ,
Original file line number Diff line number Diff line change 32
32
"datatables.net-colreorder-dt" : " ^1.5.5" ,
33
33
"datatables.net-dt" : " ^1.11.3" ,
34
34
"datatables.net-fixedcolumns" : " ^4.3.0" ,
35
- "datatables.net-fixedcolumns-bs4" : " ^4.3.0" ,
36
35
"datatables.net-responsive" : " ^2.2.9" ,
37
36
"datatables.net-responsive-dt" : " ^2.2.9" ,
38
37
"datatables.net-scroller" : " ^2.0.5" ,
Original file line number Diff line number Diff line change @@ -154,3 +154,34 @@ div.code-toolbar > .toolbar button {
154
154
markdown h5 : not (markdown .faqMarkdown ) {
155
155
color : # 2196f3 ;
156
156
}
157
+
158
+
159
+ /** Fixed columns css
160
+
161
+ These classes are injected by fixed columns extensions
162
+ and can be tweaked here to match the colors of headers and body
163
+ to hide the scrolling element behind the fixed header.
164
+
165
+ */
166
+
167
+
168
+ table .dataTable thead tr > .dtfc-fixed-left ,
169
+ table .dataTable thead tr > .dtfc-fixed-right ,
170
+ table .dataTable tfoot tr > .dtfc-fixed-left ,
171
+ table .dataTable tfoot tr > .dtfc-fixed-right {
172
+ top : 0 ;
173
+ bottom : 0 ;
174
+ z-index : 3 ;
175
+ background-color : white;
176
+ }
177
+
178
+ table .dataTable tbody tr > .dtfc-fixed-left ,
179
+ table .dataTable tbody tr > .dtfc-fixed-right {
180
+ z-index : 1 ;
181
+ background-color : white;
182
+ }
183
+
184
+ div .dtfc-left-top-blocker ,
185
+ div .dtfc-right-top-blocker {
186
+ background-color : white;
187
+ }
You can’t perform that action at this time.
0 commit comments