Skip to content

Commit

Permalink
0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jansiegel committed Jul 10, 2015
1 parent a576f62 commit 840bdeb
Show file tree
Hide file tree
Showing 17 changed files with 4,908 additions and 2,452 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
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. <[email protected]>
* 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. <[email protected]>
* 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 840bdeb

Please sign in to comment.