helpcenter/Web/css/jquery.jscrollpane.less

100 lines
1.8 KiB
Plaintext
Raw Normal View History

2016-08-29 13:51:20 +00:00
@import "base.less";
/*
* 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 {
background: red;
height: 100%;
position: absolute;
right: 0;
top: 0;
width: 6px;
.jspCap.jspCapTop {
height: 66px;
}
.jspArrow {
height: 16px;
&:focus {
outline: none;
}
}
}
.jspHorizontalBar {
background: red;
bottom: 0;
height: 16px;
left: 0;
position: absolute;
width: 100%;
.jspCap {
float: left;
}
.jspTrack {
float: left;
height: 100%;
}
.jspDrag {
float: left;
height: 100%;
}
.jspArrow {
float: left;
height: 100%;
width: 6px;
}
}
.jspCap.jspCapTop {
background: @mobileMenuColor;
display: block;
}
.jspCap.jspCapBottom {
display: none;
}
.jspTrack {
background: @mobileMenuColor;
position: relative;
}
.jspDrag {
background: #bfc1c6;
border-radius: 6px;
cursor: pointer;
left: 0;
position: relative;
top: 0;
}
.jspArrow {
background: #50506d;
cursor: pointer;
display: block;
margin: 0;
padding: 0;
text-indent: -20000px;
}
.jspArrow.jspDisabled {
background: #80808d;
cursor: default;
}
.jspCorner {
background: @mobileMenuColor;
float: left;
height: 100%;
}
* {
html {
.jspCorner {
margin: 0 -3px 0 0;
}
}
}