Skip to content

Commit

Permalink
add dist files + sourcemap
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Grsmto committed Nov 1, 2017
1 parent 06e0e61 commit fa57d9e
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 17 deletions.
92 changes: 85 additions & 7 deletions dist/simplebar.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,89 @@
/*!
*
* SimpleBar.js - v2.4.4
* Scrollbars, simpler.
* https://grsmto.github.io/simplebar/
*
* Made by Adrien Grsmto from a fork by Jonathan Nicol
* Under MIT License
* SimpleBar.js - v2.5.0
* Scrollbars, simpler.
* https://grsmto.github.io/simplebar/
*
* Made by Adrien Grsmto from a fork by Jonathan Nicol
* Under MIT License
*
*/
[data-simplebar]{position:relative;z-index:0;overflow:hidden;-webkit-overflow-scrolling:touch}[data-simplebar=init]{display:-webkit-box;display:-ms-flexbox;display:flex}.simplebar-scroll-content{overflow-x:hidden;overflow-y:scroll;min-width:100%;box-sizing:content-box}.simplebar-content{overflow-x:scroll;overflow-y:hidden;box-sizing:border-box;min-height:100%}.simplebar-track{z-index:1;position:absolute;right:0;bottom:0;width:11px}.simplebar-scrollbar{position:absolute;right:2px;border-radius:7px;min-height:10px;width:7px;opacity:0;transition:opacity .2s linear;background:#000;background-clip:padding-box}.simplebar-track:hover .simplebar-scrollbar{opacity:.5;transition:opacity 0 linear}.simplebar-track .simplebar-scrollbar.visible{opacity:.5}.simplebar-track.horizontal{left:0;width:auto;height:11px}.simplebar-track.vertical{top:0}.horizontal.simplebar-track .simplebar-scrollbar{right:auto;top:2px;height:7px;min-height:0;min-width:10px;width:auto}
[data-simplebar] {
position: relative;
z-index: 0;
overflow: hidden;
-webkit-overflow-scrolling: touch; /* Trigger native scrolling for mobile, if not supported, plugin is used. */
}

[data-simplebar="init"] {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}

.simplebar-scroll-content {
overflow-x: hidden;
overflow-y: scroll;
min-width: 100%;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}

.simplebar-content {
overflow-x: scroll;
overflow-y: hidden;
-webkit-box-sizing: border-box;
box-sizing: border-box;
min-height: 100%;
}

.simplebar-track {
z-index: 1;
position: absolute;
right: 0;
bottom: 0;
width: 11px;
}

.simplebar-scrollbar {
position: absolute;
right: 2px;
border-radius: 7px;
min-height: 10px;
width: 7px;
opacity: 0;
-webkit-transition: opacity 0.2s linear;
transition: opacity 0.2s linear;
background: black;
background-clip: padding-box;
}

.simplebar-track:hover .simplebar-scrollbar {
/* When hovered, remove all transitions from drag handle */
opacity: 0.5;
-webkit-transition: opacity 0 linear;
transition: opacity 0 linear;
}

.simplebar-track .simplebar-scrollbar.visible {
opacity: 0.5;
}

.simplebar-track.horizontal {
left: 0;
width: auto;
height: 11px;
}

.simplebar-track.vertical {
top: 0;
}

.horizontal.simplebar-track .simplebar-scrollbar {
right: auto;
top: 2px;
height: 7px;
min-height: 0;
min-width: 10px;
width: auto;
}
Loading

0 comments on commit fa57d9e

Please sign in to comment.