Skip to content

Commit

Permalink
incoporate 0.11.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolaswise committed Aug 24, 2015
2 parents 66d5ac6 + d21a651 commit 82c4d30
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@

### Added
- Optional prefix for grid system
- No `text-indent` on third nav

### Fixed
- Don't set fixed height on `textarea` elements

## 0.11.5

### Fixed
- add icon_names for social icons to API (#328)

## 0.11.4

Expand Down
2 changes: 1 addition & 1 deletion bin/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function constructItem(content, meta) {

if (meta.page === 'Icons') {
if (content.title === 'Social Icons') {
item.icon_names = icons.social
item.icon_names = icons
}
if (content.title === 'Icon Font') {
item.icon_names = iconFont
Expand Down
2 changes: 1 addition & 1 deletion lib/js/calcite-web.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// └────────────┘
// define all public api methods (excluding patterns)
var calcite = {
version: 'v0.11.4',
version: 'v0.11.5',
click: click,
addEvent: addEvent,
removeEvent: removeEvent,
Expand Down
4 changes: 4 additions & 0 deletions lib/sass/calcite-web/components/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@
&:focus { border-color: $blue; }
}

textarea {
height: auto;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
Expand Down
1 change: 0 additions & 1 deletion lib/sass/calcite-web/patterns/_third-nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
background-color: $white;
padding: $baseline/4 0;
width: 100%;
text-indent: $baseline * .5;
}

@mixin third-nav-container () {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "calcite-web",
"version": "0.11.4",
"version": "0.11.5",
"description": "SASS & CSS Framework for Esri websites",
"private": true,
"homepage": "https://github.com/esri/calcite-web",
Expand Down

0 comments on commit 82c4d30

Please sign in to comment.