tabulator-rails 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +4 -4
- data/VERSIONS.md +1 -0
- data/lib/tabulator-rails/version.rb +1 -1
- data/vendor/assets/javascripts/tabulator.js +2256 -341
- data/vendor/assets/stylesheets/tabulator.css +27 -2
- metadata +2 -2
@@ -1,4 +1,4 @@
|
|
1
|
-
/* Tabulator v3.
|
1
|
+
/* Tabulator v3.4.0 (c) Oliver Folkerd */
|
2
2
|
.tabulator {
|
3
3
|
position: relative;
|
4
4
|
border: 1px solid #999;
|
@@ -182,6 +182,14 @@
|
|
182
182
|
display: none;
|
183
183
|
}
|
184
184
|
|
185
|
+
.tabulator .tabulator-header .tabulator-frozen-rows-holder {
|
186
|
+
min-width: 200%;
|
187
|
+
}
|
188
|
+
|
189
|
+
.tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {
|
190
|
+
display: none;
|
191
|
+
}
|
192
|
+
|
185
193
|
.tabulator .tabulator-tableHolder {
|
186
194
|
position: relative;
|
187
195
|
width: 100%;
|
@@ -276,6 +284,23 @@
|
|
276
284
|
z-index: 15;
|
277
285
|
}
|
278
286
|
|
287
|
+
.tabulator .tabulator-row .tabulator-row-resize-handle {
|
288
|
+
position: absolute;
|
289
|
+
right: 0;
|
290
|
+
bottom: 0;
|
291
|
+
left: 0;
|
292
|
+
height: 5px;
|
293
|
+
}
|
294
|
+
|
295
|
+
.tabulator .tabulator-row .tabulator-row-resize-handle.prev {
|
296
|
+
top: 0;
|
297
|
+
bottom: auto;
|
298
|
+
}
|
299
|
+
|
300
|
+
.tabulator .tabulator-row .tabulator-row-resize-handle:hover {
|
301
|
+
cursor: ns-resize;
|
302
|
+
}
|
303
|
+
|
279
304
|
.tabulator .tabulator-row .tabulator-frozen {
|
280
305
|
display: inline-block;
|
281
306
|
position: absolute;
|
@@ -391,7 +416,7 @@
|
|
391
416
|
}
|
392
417
|
|
393
418
|
.tabulator .tabulator-row.tabulator-group.tabulator-group-level-5 .tabulator-arrow {
|
394
|
-
margin-left:
|
419
|
+
margin-left: 100px;
|
395
420
|
}
|
396
421
|
|
397
422
|
.tabulator .tabulator-row.tabulator-group .tabulator-arrow {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tabulator-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- tanvir hasan
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|