Skip to content

Commit

Permalink
Merge branch 'release/0.16.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
jansiegel committed Jul 10, 2015
2 parents 8d83c71 + 840bdeb commit b59808f
Show file tree
Hide file tree
Showing 74 changed files with 8,853 additions and 3,947 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "handsontable",
"description": "Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs",
"version": "0.15.1",
"version": "0.16.0",
"main": ["./dist/handsontable.js", "./dist/handsontable.css"],
"homepage": "http://handsontable.com/",
"repository": {
Expand Down
1 change: 1 addition & 0 deletions demo/dragdown.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ <h2>Drag-down</h2>
rowHeaders: true,
colHeaders: true,
minSpareRows: 1,
contextMenu: true,
fillHandle: true // possible values: true, false, "horizontal", "vertical"
});
hot1.loadData(data);
Expand Down
2 changes: 2 additions & 0 deletions demo/sorting.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ <h2>Column sorting</h2>
],
manualColumnMove: true,
manualColumnResize: true,
manualRowMove: true,
manualRowResize: true,
minSpareRows: 1,
contextMenu: true,
persistentState: true
Expand Down
10 changes: 5 additions & 5 deletions dist/handsontable.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* Handsontable 0.15.1
* Handsontable 0.16.0
* Handsontable is a JavaScript library for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2015 Handsoncode sp. z o.o. <hello@handsontable.com>
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Thu Jun 25 2015 14:04:28 GMT+0200 (CEST)
* Date: Fri Jul 10 2015 09:20:29 GMT+0200 (CEST)
*/

.handsontable {
Expand All @@ -20,11 +20,11 @@
position: relative;
}

.handsontable.htAutoColumnSize {
.handsontable.htAutoSize {
visibility: hidden;
left: 0;
left: -99000px;
position: absolute;
top: 0;
top: -99000px;
}

.handsontable .wtHider {
Expand Down
36 changes: 27 additions & 9 deletions dist/handsontable.full.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* Handsontable 0.15.1
* Handsontable 0.16.0
* Handsontable is a JavaScript library for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2015 Handsoncode sp. z o.o. <hello@handsontable.com>
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Thu Jun 25 2015 14:04:28 GMT+0200 (CEST)
* Date: Fri Jul 10 2015 09:20:29 GMT+0200 (CEST)
*/

.handsontable {
Expand All @@ -20,11 +20,11 @@
position: relative;
}

.handsontable.htAutoColumnSize {
.handsontable.htAutoSize {
visibility: hidden;
left: 0;
left: -99000px;
position: absolute;
top: 0;
top: -99000px;
}

.handsontable .wtHider {
Expand Down Expand Up @@ -1411,6 +1411,24 @@ http://nicolasgallagher.com/micro-clearfix-hack/
border-radius: 3px;
}

.is-inrange .pika-button {
background: #D5E9F7;
}

.is-startrange .pika-button {
color: #fff;
background: #6CB31D;
box-shadow: none;
border-radius: 3px;
}

.is-endrange .pika-button {
color: #fff;
background: #33aaff;
box-shadow: none;
border-radius: 3px;
}

.is-disabled .pika-button {
pointer-events: none;
cursor: default;
Expand All @@ -1419,10 +1437,10 @@ http://nicolasgallagher.com/micro-clearfix-hack/
}

.pika-button:hover {
color: #fff !important;
background: #ff8000 !important;
box-shadow: none !important;
border-radius: 3px !important;
color: #fff;
background: #ff8000;
box-shadow: none;
border-radius: 3px;
}

/* styling for abbr */
Expand Down
Loading

0 comments on commit b59808f

Please sign in to comment.