Skip to content

Commit

Permalink
FFE-138: Modified calender.less to display the previous and next mont…
Browse files Browse the repository at this point in the history
…h buttons correctly on iPhone(6)/Safari.

FFE-138: Modified package.json due to some build issues on master on Jenkins
  • Loading branch information
Tony Daniel Bore committed Jan 25, 2017
1 parent baed0fc commit 73b9147
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 3.0.1
* Fixed issue with the previous and next month buttons on iPhone(6)/Safari causing the datepicker not to work at all.

## 3.0.0
* Added support for ffe-form version 4.x

Expand Down
4 changes: 2 additions & 2 deletions less/calendar.less
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@

&__icon-prev {
transform: rotate(90deg);
width: 100%;
width: 18px;
height: 18px;
fill: @ffe-blue-royal-light-wcag;
}

&__icon-next {
transform: rotate(-90deg);
width: 100%;
width: 18px;
height: 18px;
fill: @ffe-blue-royal-light-wcag;
}
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "ffe-datepicker",
"version": "3.0.0",
"version": "3.0.1",
"description": "FFE Datepicker",
"main": "index.js",
"scripts": {
"compile": "lessc examples/example.less examples/example.css && cp -R node_modules/ffe-core/fonts/ examples/fonts/ && echo \"$(date +%T): Updated examples\"",
"lint": "lessc --lint examples/example.less && stylelint less/*.less",
"has-published": "npm show . versions -s | grep -q ${npm_package_version}",
"start": "opn examples/example.html & watch \"npm run -s compile\" less/",
"preversion": "npm run lint",
"postpublish": "git tag ${npm_package_version} && git push --tags"
Expand Down

0 comments on commit 73b9147

Please sign in to comment.