Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
perfect-scrollbar
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Custom Issue Tracker
Custom Issue Tracker
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
angularjs
perfect-scrollbar
Commits
21aa8fda
Commit
21aa8fda
authored
Aug 03, 2018
by
bingchuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[dev] version 0.6.12
parents
Pipeline
#72
failed with stages
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
131 additions
and
0 deletions
+131
-0
bower.json
bower.json
+18
-0
perfect-scrollbar.css
css/perfect-scrollbar.css
+113
-0
perfect-scrollbar.jquery.js
js/perfect-scrollbar.jquery.js
+0
-0
No files found.
bower.json
0 → 100644
View file @
21aa8fda
{
"name"
:
"perfect-scrollbar"
,
"version"
:
"0.6.12"
,
"homepage"
:
"http://noraesae.github.io/perfect-scrollbar/"
,
"authors"
:
[
"Hyunje Alex Jun <me@noraesae.net>"
],
"description"
:
"Minimalistic but perfect custom scrollbar plugin"
,
"main"
:
[
"css/perfect-scrollbar.css"
,
"js/perfect-scrollbar.jquery.js"
],
"license"
:
"MIT"
,
"ignore"
:
[
"**/.*"
,
"bower_components"
]
}
css/perfect-scrollbar.css
0 → 100644
View file @
21aa8fda
/* perfect-scrollbar v0.6.12 */
.ps-container
{
-ms-touch-action
:
none
;
touch-action
:
none
;
overflow
:
hidden
!important
;
-ms-overflow-style
:
none
;
}
@supports
(
-ms-overflow-style
:
none
)
{
.ps-container
{
overflow
:
auto
!important
;
}
}
@media
screen
and
(
-ms-high-contrast
:
active
),
(
-ms-high-contrast
:
none
)
{
.ps-container
{
overflow
:
auto
!important
;
}
}
.ps-container.ps-active-x
>
.ps-scrollbar-x-rail
,
.ps-container.ps-active-y
>
.ps-scrollbar-y-rail
{
display
:
block
;
background-color
:
transparent
;
}
.ps-container.ps-in-scrolling
{
pointer-events
:
none
;
}
.ps-container.ps-in-scrolling.ps-x
>
.ps-scrollbar-x-rail
{
background-color
:
#eee
;
opacity
:
0.9
;
}
.ps-container.ps-in-scrolling.ps-x
>
.ps-scrollbar-x-rail
>
.ps-scrollbar-x
{
background-color
:
#999
;
}
.ps-container.ps-in-scrolling.ps-y
>
.ps-scrollbar-y-rail
{
background-color
:
#eee
;
opacity
:
0.9
;
}
.ps-container.ps-in-scrolling.ps-y
>
.ps-scrollbar-y-rail
>
.ps-scrollbar-y
{
background-color
:
#999
;
}
.ps-container
>
.ps-scrollbar-x-rail
{
display
:
none
;
position
:
absolute
;
/* please don't change 'position' */
opacity
:
0
;
-webkit-transition
:
background-color
.2s
linear
,
opacity
.2s
linear
;
-moz-transition
:
background-color
.2s
linear
,
opacity
.2s
linear
;
-o-transition
:
background-color
.2s
linear
,
opacity
.2s
linear
;
transition
:
background-color
.2s
linear
,
opacity
.2s
linear
;
bottom
:
0px
;
/* there must be 'bottom' for ps-scrollbar-x-rail */
height
:
15px
;
}
.ps-container
>
.ps-scrollbar-x-rail
>
.ps-scrollbar-x
{
position
:
absolute
;
/* please don't change 'position' */
background-color
:
#aaa
;
-webkit-border-radius
:
6px
;
-moz-border-radius
:
6px
;
border-radius
:
6px
;
-webkit-transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
-webkit-border-radius
.2s
ease-in-out
;
transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
-webkit-border-radius
.2s
ease-in-out
;
-moz-transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
border-radius
.2s
ease-in-out
,
-moz-border-radius
.2s
ease-in-out
;
-o-transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
border-radius
.2s
ease-in-out
;
transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
border-radius
.2s
ease-in-out
;
transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
border-radius
.2s
ease-in-out
,
-webkit-border-radius
.2s
ease-in-out
,
-moz-border-radius
.2s
ease-in-out
;
bottom
:
2px
;
/* there must be 'bottom' for ps-scrollbar-x */
height
:
6px
;
}
.ps-container
>
.ps-scrollbar-x-rail
:hover
>
.ps-scrollbar-x
,
.ps-container
>
.ps-scrollbar-x-rail
:active
>
.ps-scrollbar-x
{
height
:
11px
;
}
.ps-container
>
.ps-scrollbar-y-rail
{
display
:
none
;
position
:
absolute
;
/* please don't change 'position' */
opacity
:
0
;
-webkit-transition
:
background-color
.2s
linear
,
opacity
.2s
linear
;
-moz-transition
:
background-color
.2s
linear
,
opacity
.2s
linear
;
-o-transition
:
background-color
.2s
linear
,
opacity
.2s
linear
;
transition
:
background-color
.2s
linear
,
opacity
.2s
linear
;
right
:
0
;
/* there must be 'right' for ps-scrollbar-y-rail */
width
:
15px
;
}
.ps-container
>
.ps-scrollbar-y-rail
>
.ps-scrollbar-y
{
position
:
absolute
;
/* please don't change 'position' */
background-color
:
#aaa
;
-webkit-border-radius
:
6px
;
-moz-border-radius
:
6px
;
border-radius
:
6px
;
-webkit-transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
-webkit-border-radius
.2s
ease-in-out
;
transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
-webkit-border-radius
.2s
ease-in-out
;
-moz-transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
border-radius
.2s
ease-in-out
,
-moz-border-radius
.2s
ease-in-out
;
-o-transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
border-radius
.2s
ease-in-out
;
transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
border-radius
.2s
ease-in-out
;
transition
:
background-color
.2s
linear
,
height
.2s
linear
,
width
.2s
ease-in-out
,
border-radius
.2s
ease-in-out
,
-webkit-border-radius
.2s
ease-in-out
,
-moz-border-radius
.2s
ease-in-out
;
right
:
2px
;
/* there must be 'right' for ps-scrollbar-y */
width
:
6px
;
}
.ps-container
>
.ps-scrollbar-y-rail
:hover
>
.ps-scrollbar-y
,
.ps-container
>
.ps-scrollbar-y-rail
:active
>
.ps-scrollbar-y
{
width
:
11px
;
}
.ps-container
:hover
.ps-in-scrolling
{
pointer-events
:
none
;
}
.ps-container
:hover
.ps-in-scrolling.ps-x
>
.ps-scrollbar-x-rail
{
background-color
:
#eee
;
opacity
:
0.9
;
}
.ps-container
:hover
.ps-in-scrolling.ps-x
>
.ps-scrollbar-x-rail
>
.ps-scrollbar-x
{
background-color
:
#999
;
}
.ps-container
:hover
.ps-in-scrolling.ps-y
>
.ps-scrollbar-y-rail
{
background-color
:
#eee
;
opacity
:
0.9
;
}
.ps-container
:hover
.ps-in-scrolling.ps-y
>
.ps-scrollbar-y-rail
>
.ps-scrollbar-y
{
background-color
:
#999
;
}
.ps-container
:hover
>
.ps-scrollbar-x-rail
,
.ps-container
:hover
>
.ps-scrollbar-y-rail
{
opacity
:
0.6
;
}
.ps-container
:hover
>
.ps-scrollbar-x-rail
:hover
{
background-color
:
#eee
;
opacity
:
0.9
;
}
.ps-container
:hover
>
.ps-scrollbar-x-rail
:hover
>
.ps-scrollbar-x
{
background-color
:
#999
;
}
.ps-container
:hover
>
.ps-scrollbar-y-rail
:hover
{
background-color
:
#eee
;
opacity
:
0.9
;
}
.ps-container
:hover
>
.ps-scrollbar-y-rail
:hover
>
.ps-scrollbar-y
{
background-color
:
#999
;
}
js/perfect-scrollbar.jquery.js
0 → 100644
View file @
21aa8fda
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment