Skip to content

Commit

Permalink
Remove table edge shadow as this is hurting performance especially d…
Browse files Browse the repository at this point in the history
…ealing with large data.
  • Loading branch information
awsp committed May 15, 2015
1 parent 4792bb7 commit 50ca91d
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .versions
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ [email protected]
[email protected]
[email protected]_2
[email protected]
local-test:awsp:[email protected].0
local-test:awsp:[email protected].1
[email protected]
[email protected]
[email protected]
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Meteor Handsontable (@version 0.5.1)
## Meteor Handsontable (@version 0.5.2)
This package uses the latest version of Handsontable (currently @version 0.14.1) in MeteorJS.


Expand Down Expand Up @@ -53,9 +53,11 @@ $("#hot3").handsontable({
```


## ToDo
- Add Tinytest
## Release Notes
* Version 0.5.2 - Remove table edge shadow as this is hurting performance especially dealing with large data.
Until Handsontable version 0.15.x is stable, shall remove related styles.

* Version 0.5.1 - Bump Handsontable to version 0.14.1. Minor tweaks of UI.


## Github / Bug Reports
Expand Down
2 changes: 1 addition & 1 deletion awsp:handsontable.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
// Write your package code here!

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "awsp:handsontable",
"main": "package.js",
"version": "0.5.1",
"version": "0.5.2",
"homepage": "https://github.com/awsp/handsontable-meteor",
"authors": [
"awsp <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'awsp:handsontable',
version: '0.5.1',
version: '0.5.2',
summary: 'Quote from origin: Handsontable is a minimalist Excel-like data grid editor for HTML & JavaScript',
git: 'https://github.com/awsp/handsontable-meteor',
documentation: 'README.md'
Expand Down
16 changes: 10 additions & 6 deletions styles/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,24 @@
.ht_clone_left .wtHolder { overflow: hidden; }

.handsontable .handsontable.ht_clone_left table {
-webkit-box-shadow: 4px 0 3px -2px rgba(0, 0, 0, 0.13);
-moz-box-shadow: 4px 0 3px -2px rgba(0, 0, 0, 0.13);
box-shadow: 4px 0 3px -2px rgba(0, 0, 0, 0.13);
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}

.handsontable .handsontable.ht_clone_top table {
-webkit-box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.16);
-moz-box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.16);
box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.16);
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}

.ht_clone_corner.handsontable .wtSpreader .htCore {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-bottom: 1px solid #ccc;
}

.rowHeader, .colHeader {
cursor: default;
}

0 comments on commit 50ca91d

Please sign in to comment.