Skip to content
This repository has been archived by the owner on Feb 28, 2019. It is now read-only.

Commit

Permalink
Add Beta Files
Browse files Browse the repository at this point in the history
  • Loading branch information
nathggns committed Nov 12, 2011
1 parent 910a3ee commit f1938bf
Show file tree
Hide file tree
Showing 14 changed files with 914 additions and 979 deletions.
4 changes: 4 additions & 0 deletions .project-details
@@ -0,0 +1,4 @@
{
"name": "Scrollbars",
"desc": "A jQuery Scrollbars Solution."
}
22 changes: 0 additions & 22 deletions LICENSE

This file was deleted.

47 changes: 0 additions & 47 deletions README.markdown

This file was deleted.

1 change: 0 additions & 1 deletion build/jquery.scrollbars.min.css

This file was deleted.

2 changes: 0 additions & 2 deletions build/jquery.scrollbars.min.js

This file was deleted.

1 change: 0 additions & 1 deletion build/lion.theme.min.css

This file was deleted.

3 changes: 3 additions & 0 deletions callHome.php
@@ -0,0 +1,3 @@
<?php
echo file_get_contents("http://nath.is/jQScrollbars/version.json");
?>
64 changes: 64 additions & 0 deletions jquery.scrollbars.css
@@ -0,0 +1,64 @@
/*! jQuery Scrollbars | License: https://github.com/nathggns/Scrollbars/blob/master/LICENSE */

.scrollElement.scrollRoot { overflow: hidden; }
.rootWrap {
overflow-x: auto;
overflow-y: auto;
}
.scrollElement.axisInUseX .rootWrap { overflow-x: hidden; }
.scrollElement.axisInUseY .rootWrap { overflow-y: hidden; }

.scrollElement.scrollRoot:focus {
outline: none;
}

.scrollElement.dragConX {
height: 10px;
left: 0;
width: 100%;
bottom: 0;
}

.scrollElement.dragConY {
width: 10px;
top: 0;
height: 100%;
right: 0;
}

.scrollElement.dragCon {
position: absolute;
background: rgba(0, 0, 0, 0.5);
}

.scrollElement.drag {
background: #000;
position: absolute;
top: 0;
left: 0;
}

.scrollElement.dragX {
min-width: 5%;
max-width: 95%;
height: 100%;
}

.scrollElement.dragY {
min-height: 5%;
max-height: 95%;
width: 100%;
}

.scrollElement.dragConInner {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
}

.scrollElement.contentWrap {
float: left;
position: relative;
}

0 comments on commit f1938bf

Please sign in to comment.