Skip to content

Commit

Permalink
fix(labels): Fix ceil label positioning
Browse files Browse the repository at this point in the history
Was broken by d19a4dd commit

Close #448
  • Loading branch information
Valentin Hervieu committed Nov 3, 2016
1 parent 38e0010 commit 95f671e
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 23 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 5.8.2 (2016-11-03)
## Fix
- Fix ceil label positioning (#448)

# 5.8.1 (2016-10-27)
## Fix
- Enable using with Browserify (#436)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angularjs-slider",
"version": "5.8.1",
"version": "5.8.2",
"homepage": "https://github.com/angular-slider/angularjs-slider",
"authors": [
"Rafal Zajac <[email protected]>",
Expand Down
12 changes: 2 additions & 10 deletions dist/rzslider.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*! angularjs-slider - v5.8.1 -
/*! angularjs-slider - v5.8.2 -
(c) Rafal Zajac <[email protected]>, Valentin Hervieu <[email protected]>, Jussi Saarivirta <[email protected]>, Angelin Sirbu <[email protected]> -
https://github.com/angular-slider/angularjs-slider -
2016-10-27 */
2016-11-03 */
.rzslider {
position: relative;
display: inline-block;
Expand Down Expand Up @@ -141,14 +141,6 @@
color: #55637d;
}

.rzslider .rz-bubble.rz-floor {
left: 0;
}

.rzslider .rz-bubble.rz-ceil {
right: 0;
}

.rzslider .rz-ticks {
position: absolute;
top: -3px;
Expand Down
4 changes: 2 additions & 2 deletions dist/rzslider.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*! angularjs-slider - v5.8.1 -
/*! angularjs-slider - v5.8.2 -
(c) Rafal Zajac <[email protected]>, Valentin Hervieu <[email protected]>, Jussi Saarivirta <[email protected]>, Angelin Sirbu <[email protected]> -
https://github.com/angular-slider/angularjs-slider -
2016-10-27 */
2016-11-03 */
/*jslint unparam: true */
/*global angular: false, console: false, define, module */
(function(root, factory) {
Expand Down
4 changes: 2 additions & 2 deletions dist/rzslider.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 dist/rzslider.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angularjs-slider",
"version": "5.8.1",
"version": "5.8.2",
"description": "AngularJS slider directive with no external dependencies. Mobile friendly!.",
"main": "dist/rzslider.js",
"repository": {
Expand Down
6 changes: 0 additions & 6 deletions src/rzslider.less
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,6 @@
&.rz-limit {
color: @limitLabelTextColor;
}
&.rz-floor {
left: 0;
}
&.rz-ceil {
right: 0;
}
}

.rz-ticks {
Expand Down

0 comments on commit 95f671e

Please sign in to comment.