Skip to content

Commit

Permalink
feature: split-screen.html demo now uses all available space in window
Browse files Browse the repository at this point in the history
  • Loading branch information
warpech committed Mar 26, 2013
1 parent f838628 commit 6c831eb
Show file tree
Hide file tree
Showing 9 changed files with 2,674 additions and 1,369 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## HEAD

Feature:
- split-screen.html demo now uses all available space in window

Other:
- upgrade Handsontable to 0.8.16

## 0.3.5 (Mar 24, 2012)

Bugfix:
Expand Down
41 changes: 33 additions & 8 deletions dist/angular-ui-handsontable.full.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
/**
* angular-ui-handsontable 0.3.5
*
* Date: Sun Mar 24 2013 17:47:35 GMT+0100 (Central European Standard Time)
* Date: Tue Mar 26 2013 02:37:48 GMT+0100 (Central European Standard Time)
*/

/**
* Handsontable 0.8.8
* Handsontable 0.8.16
* Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2012, Marcin Warpechowski
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Mon Mar 04 2013 00:45:03 GMT+0100 (Central European Standard Time)
* Date: Tue Mar 26 2013 02:34:10 GMT+0100 (Central European Standard Time)
*/

.handsontable {
Expand All @@ -22,6 +22,13 @@
font-size: 13px;
}

.handsontable.hidden {
display : none;
left : 0;
position :absolute;
top : 0;
}

.handsontable * {
box-sizing: content-box;
-webkit-box-sizing: content-box;
Expand All @@ -43,6 +50,10 @@
table-layout: fixed;
width: 0;
outline-width: 0;
/* reset bootstrap table style. for more info see: https://github.com/warpech/jquery-handsontable/issues/224 */
max-width : none;
max-height: none;
}
}

.handsontable col {
Expand Down Expand Up @@ -198,6 +209,15 @@ textarea.handsontableInput {
font-size: 13px;
box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.4);
resize: none;

/*below are needed to overwrite stuff added by jQuery UI Bootstrap theme*/
display: inline-block;
font-size: 13px;
line-height: inherit;
color: #000;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}

.handsontableInputHolder {
Expand Down Expand Up @@ -239,7 +259,7 @@ NumericRenderer
}

/* typeahead rules. Needed only if you are using the autocomplete feature */
.typeahead {
.handsontable .typeahead {
position: absolute;
font-family: Arial, Helvetica, sans-serif;
line-height: 1.3em;
Expand Down Expand Up @@ -270,28 +290,33 @@ NumericRenderer
border-radius: 4px;
}

.typeahead li {
.handsontable .typeahead li {
line-height: 18px;
min-height: 18px;
display: list-item;
margin: 0;
}

.typeahead a {
.handsontable .typeahead a {
display: block;
padding: 3px 15px;
clear: both;
font-weight: normal;
line-height: 18px;
min-height: 18px;
color: #333;
white-space: nowrap;
}

.typeahead li > a:hover, .typeahead .active > a, .typeahead .active > a:hover {
.handsontable .typeahead li > a:hover,
.handsontable .typeahead .active > a,
.handsontable .typeahead .active > a:hover {
color: white;
text-decoration: none;
background-color: #08C;
}

.typeahead a {
.handsontable .typeahead a {
color: #08C;
text-decoration: none;
}
Expand Down
Loading

0 comments on commit 6c831eb

Please sign in to comment.