Skip to content

Commit

Permalink
support files
Browse files Browse the repository at this point in the history
  • Loading branch information
leongersen committed Sep 29, 2016
1 parent 66c8523 commit c56e006
Show file tree
Hide file tree
Showing 6 changed files with 676 additions and 590 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ An extensive documentation, including **examples**, **options** and **configurat

Changelog
---------
### 9.0.0
### 9.0.0 (*2016-09-26*)
- Added: Support for **more than 2 handles**;
- Added: `format` option can be updated (#641);
- Added: `reset` method the return slider to start values (#673);
Expand Down
69 changes: 31 additions & 38 deletions distribute/nouislider.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! nouislider - 8.5.1 - 2016-04-24 16:26:42 */
/*! nouislider - 9.0.0 - 2016-09-29 21:44:02 */


/* Functional styling;
Expand Down Expand Up @@ -27,25 +27,26 @@
position: relative;
z-index: 1; /* Fix 401 */
}
.noUi-origin {
.noUi-connect {
position: absolute;
right: 0;
top: 0;
left: 0;
bottom: 0;
}
.noUi-origin {
position: absolute;
height: 0;
width: 0;
}
.noUi-handle {
position: relative;
z-index: 1;
}
.noUi-stacking .noUi-handle {
/* This class is applied to the lower origin when
its values is > 50%. */
z-index: 10;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
-webkit-transition: left 0.3s, top 0.3s;
transition: left 0.3s, top 0.3s;
-webkit-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
}
.noUi-state-drag * {
cursor: inherit !important;
Expand Down Expand Up @@ -83,27 +84,18 @@

/* Styling;
*/
.noUi-background {
.noUi-target {
background: #FAFAFA;
box-shadow: inset 0 1px 1px #f0f0f0;
border-radius: 4px;
border: 1px solid #D3D3D3;
box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connect {
background: #3FB8AF;
box-shadow: inset 0 0 3px rgba(51,51,51,0.45);
-webkit-transition: background 450ms;
transition: background 450ms;
}
.noUi-origin {
border-radius: 2px;
}
.noUi-target {
border-radius: 4px;
border: 1px solid #D3D3D3;
box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-target.noUi-connect {
box-shadow: inset 0 0 3px rgba(51,51,51,0.45), 0 3px 6px -5px #BBB;
}

/* Handles and cursors;
*/
Expand Down Expand Up @@ -157,11 +149,12 @@

/* Disabled state;
*/
[disabled].noUi-connect,

[disabled] .noUi-connect {
background: #B8B8B8;
}
[disabled].noUi-origin,
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
cursor: not-allowed;
}
Expand Down Expand Up @@ -243,8 +236,8 @@
left: 100%;
}
.noUi-value-vertical {
-webkit-transform: translate3d(0,-50%,0);
transform: translate3d(0,-50%,0);
-webkit-transform: translate3d(0,50%,0);
transform: translate3d(0,50%,0);
padding-left: 25px;
}

Expand All @@ -266,19 +259,19 @@
border: 1px solid #D9D9D9;
border-radius: 3px;
background: #fff;
color: #000;
padding: 5px;
text-align: center;
}

.noUi-horizontal .noUi-handle-lower .noUi-tooltip {
top: -32px;
}
.noUi-horizontal .noUi-handle-upper .noUi-tooltip {
bottom: -32px;
}
.noUi-vertical .noUi-handle-lower .noUi-tooltip {
left: 120%;
}
.noUi-vertical .noUi-handle-upper .noUi-tooltip {
right: 120%;
.noUi-horizontal .noUi-tooltip {
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
left: 50%;
bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
top: 50%;
right: 120%;
}
Loading

0 comments on commit c56e006

Please sign in to comment.