Skip to content

Commit

Permalink
Correction of input cursor to default
Browse files Browse the repository at this point in the history
  • Loading branch information
darlanrod committed Jul 31, 2018
1 parent 31e0860 commit c4f77c3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ npm install --save input-range-scss

## Changelog

#### 1.5.1
- Correction of input cursor to default (thanks, [pichfl](https://github.com/pichfl))

#### 1.5.0
- Added :disabled state (thanks [mpavel](https://github.com/mpavel))
- Improved normalization across browsers (thanks [guidezpl](https://github.com/guidezpl) and [GufNZ](https://github.com/GufNZ))
- Removed Firefox border outline on focus (thanks [DeanPoulin](https://github.com/DeanPoulin))
- Added :disabled state (thanks, [mpavel](https://github.com/mpavel))
- Improved normalization across browsers (thanks, [guidezpl](https://github.com/guidezpl) and [GufNZ](https://github.com/GufNZ))
- Removed Firefox border outline on focus (thanks, [DeanPoulin](https://github.com/DeanPoulin))

#### 1.4.1
- Fixing example page
Expand Down
6 changes: 3 additions & 3 deletions _inputrange.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Styling Cross-Browser Compatible Range Inputs with Sass
// Github: https://github.com/darlanrod/input-range-sass
// Author: Darlan Rod https://github.com/darlanrod
// Version 1.5.0
// Version 1.5.1
// MIT License

$track-color: #eceff1 !default;
Expand Down Expand Up @@ -34,7 +34,7 @@ $ie-bottom-track-color: darken($track-color, $contrast) !default;
}

@mixin track {
cursor: pointer;
cursor: default;
height: $track-height;
transition: all .2s ease;
width: $track-width;
Expand All @@ -45,7 +45,7 @@ $ie-bottom-track-color: darken($track-color, $contrast) !default;
background: $thumb-color;
border: $thumb-border-width solid $thumb-border-color;
border-radius: $thumb-radius;
cursor: pointer;
cursor: default;
height: $thumb-height + $adjustment;
width: $thumb-width + $adjustment;
}
Expand Down
2 changes: 1 addition & 1 deletion example/_inputrange.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "input-range-scss",
"version": "1.5.0",
"version": "1.5.1",
"description": "Sass component for customizing the input range using the native properties of each browser.",
"main": "_inputrange.scss",
"style": "_inputrange.scss",
Expand Down

0 comments on commit c4f77c3

Please sign in to comment.