Files
2024-10-23 13:44:50 +02:00

219 lines
4.9 KiB
Plaintext

/*===============================================
Scroller
================================================= */
.scroller {
height: 100%;
overflow: hidden;
overflow-x: hidden;
overflow-y: hidden;
position: relative;
}
.scroller,
.scroller * {
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
}
.scroller,
.scroller-content,
.scroller-bar,
.scroller-track,
.scroller-handle {
box-sizing: border-box;
}
.scroller-content {
position: relative;
z-index: 1;
height: 100%;
overflow: auto;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
.scroller-content::-webkit-scrollbar,
.scroller-content::-webkit-scrollbar-button,
.scroller-content::-webkit-scrollbar-track,
.scroller-content::-webkit-scrollbar-track-piece,
.scroller-content::-webkit-scrollbar-thumb,
.scroller-content::-webkit-scrollbar-corner,
.scroller-content::-webkit-resizer {
background: transparent;
opacity: 0;
}
.scroller-bar {
width: 6px;
height: 100%;
position: absolute;
right: 0;
top: 0;
z-index: 2;
display: none;
opacity: 0;
-webkit-transition: opacity 0.3s ease;
transition: opacity 0.3s ease;
}
.scroller-active .scroller-bar { opacity: 1; }
.scroller-track {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
}
.scroller-handle {
z-index: 2;
cursor: pointer;
position: absolute;
top: 0;
right: 0;
width: 5px;
height: 20px;
background: #cccccc;
background: rgba(0, 0, 0, 0.2);
-webkit-transition: height 0.3s ease;
transition: height 0.3s ease;
}
.scroller-horizontal .scroller-content {
overflow: auto;
overflow-x: auto;
overflow-y: hidden;
padding: 0 0 16px 0;
}
.scroller-horizontal .scroller-bar {
width: 100%;
height: 5px;
top: auto;
bottom: 0;
border-width: 1px 0 0 0;
}
.scroller-horizontal .scroller-handle {
width: 20px;
height: 5px;
top: auto;
right: auto;
bottom: 3px;
}
.scroller-setup .scroller-content,
.scroller-active .scroller-content {
padding: 0;
}
.scroller-setup .scroller-bar,
.scroller-active .scroller-bar {
display: block;
}
/*===============================================
Scroller - Panel Style
================================================= */
.panel-scroller {
padding: 0;
height: 600px;
max-height: 600px;
overflow: hidden;
}
/* scroller content */
.panel-scroller .scroller-content {
padding: 12px;
}
/* scroller bar container */
.panel-scroller .scroller-bar {
width: 14px;
background: #f7f7f7;
border-left: 1px solid #e7e7e7;
}
/* scroller bar container handle */
.panel-scroller .scroller-handle {
right: 4px;
width: 5px;
height: 20px;
border-radius: 4px;
}
/*===============================================
Scroller Bar - Height Options
================================================= */
.scroller-xs {
height: 125px;
max-height: 125px;
}
.scroller-sm {
height: 200px;
max-height: 200px;
}
.scroller-md {
height: 300px;
max-height: 300px;
}
.scroller-lg {
height: 400px;
max-height: 400px;
}
/*===============================================
Scroller Bar Style
================================================= */
.scroller-thick .scroller-bar {
width: 12px;
}
.scroller-thick .scroller-handle {
width: 12px;
right: 0;
border-radius: 0;
}
/*===============================================
Scroller Bar - Overlay Style
================================================= */
/* scroller bar container overlay mode */
.panel-scroller.scroller-overlay {}
.panel-scroller.scroller-overlay .scroller-bar {
background: transparent;
border: 0;
}
.panel-scroller.scroller-overlay .scroller-handle {
opacity: 0;
-webkit-transition: opacity 0.3s ease;
transition: opacity 0.3s ease;
}
.panel-scroller.scroller-overlay:hover .scroller-handle {
opacity: 1;
}
.panel-scroller.scroller-overlay .scroller-content {
padding: 0;
margin-right: -17px;
}
/* scroller nopad helper */
.scroller.scroller-pn .scroller-content {
padding: 0 !important;
}
/*===============================================
Scroller Contextuals
================================================= */
.scroller-primary .scroller-handle { background: @brand-primary; }
.scroller-success .scroller-handle { background: @brand-success; }
.scroller-info .scroller-handle { background: @brand-info; }
.scroller-warning .scroller-handle { background: @brand-warning; }
.scroller-danger .scroller-handle { background: @brand-danger; }
.scroller-alert .scroller-handle { background: @brand-alert; }
.scroller-system .scroller-handle { background: @brand-system; }
.scroller-dark .scroller-handle { background: @brand-dark; }
/* inverse light contextuals */
.scroller-light .scroller-handle,
.scroller-white .scroller-handle { background: @brand-light; }
.scroller-light .scroller-bar,
.scroller-white .scroller-bar {
border-left: 0;
background: transparent;
}