lionbars icon indicating copy to clipboard operation
lionbars copied to clipboard

A free to use, lightweight jQuery plugin that makes scrollbars look like in OSX Lion.

Results 11 lionbars issues
Sort by recently updated
recently updated
newest added

If initially the content was shorter than the height, then the scrollbars are hidden (perfect), then update with longer content and the scrollbars shows (perfect). But the opposite is just...

Hi, great project! Could you please add a license file? Otherwise it's not clear if this is open source or not. :-) Thanks!

Once the scrollbar hid itself, I didn't find how to show it again.

Because the default icons appear (issue #13) I can tell that the bar lengths are different than those that OSX display. Would be neat if you could find out how...

In order to hide the default OS X scrollbars when using lionbars, I believe you need to add this to the stylesheet: ``` css .lb-wrap::-webkit-scrollbar { visibility: hidden; } ```

Set width to 30% for some dom element. Apply lionbars to this element. Try to resize browser window. Expected result: Dom element width is resized Actual result: Dom element width...

I'm having trouble with this piece of html in the file lionbars.css. My rails application is throwing error in production. ``` html ```

Hi, I need to scroll a div to the bottom with javascript. I'm doing it calling the method I created: ``` javascript function scroll_to_bottom(elem){ $(elem).each(function( index ) { $(this).scrollTop($(this)[0].scrollHeight) });...

For examples, I have a one page application. Apply lionscrollbar to empty dom element. Then add some html to it's content. Expected result: lionbars scrollbars are shown Actual result: standard...

Change this ``` js el.wrapInner(''); wrap = $('#lb-wrap-'+id+'-'+elemId); ``` To this: ``` js wrap = el.wrapInner('').children(0); ``` Otherewise some element will be wrapped twice if you use ajax or some...