Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
121 changes: 121 additions & 0 deletions css/jquery.jscrollpane.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
/*
* CSS Styles that are needed by jScrollPane for it to operate correctly.
*
* Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
* may not operate correctly without them.
*/

.jspContainer
{
overflow: hidden;
position: relative;
}

.jspPane
{
position: absolute;
}

.jspVerticalBar
{
position: absolute;
top: 0;
right: 0;
width: 8px;
height: 100%;
background: transparent;
}

.jspHorizontalBar
{
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 8px;
background: transparent;
}

.jspVerticalBar *,
.jspHorizontalBar *
{
margin: 0;
padding: 0;
}

.jspCap
{
display: none;
}

.jspHorizontalBar .jspCap
{
float: left;
}

.jspTrack
{
background: transparent;
position: relative;
}

.jspDrag
{
background: gray;
position: relative;
top: 0;
left: 0;
cursor: pointer;
border-radius: 16px;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
float: left;
height: 100%;
}

.jspArrow
{
background: #50506d;
text-indent: -20000px;
display: block;
cursor: pointer;
}

.jspArrow.jspDisabled
{
cursor: default;
background: #80808d;
}

.jspVerticalBar .jspArrow
{
height: 8px;
}

.jspHorizontalBar .jspArrow
{
width: 8px;
float: left;
height: 100%;
}

.jspVerticalBar .jspArrow:focus
{
outline: none;
}

.jspCorner
{
background: #eeeef4;
float: left;
height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
margin: 0 -3px 0 0;
}
12 changes: 10 additions & 2 deletions css/pear.css
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,15 @@ outline: medium none;
margin: 0;
padding: 0;
height: 100%;
width: 35%;
width: 100%;
}

#outerContainer{
position: absolute;
right: 0;
margin: 0;
height: 100%;
width: 100%;
}

#sidebarContainer {
Expand All @@ -215,7 +223,7 @@ outline: medium none;
position: absolute;
z-index: 101;
top: 1px;
left: -18px;
left: -26px;
}

#sidebar {
Expand Down
126 changes: 0 additions & 126 deletions js/jquery.endless-scroll.js

This file was deleted.

31 changes: 0 additions & 31 deletions js/jquery.getscrollbarwidth.js

This file was deleted.

Loading