HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/intake/public_html/wwwroot/css/sass/gui/_scrollable.scss
/* Scrollable */
.scrollable {
	overflow: hidden;
	position: relative;
	width: 100%;
	.scrollable-content {
		bottom: 0;
		left: 0;
		overflow: hidden;
		position: absolute;
		right: 0;
		top: 0;
		padding: 0 37px 0 0;
		overflow-x: hidden;
		overflow-y: scroll;
		outline: none;

		&::-webkit-scrollbar {
			visibility: hidden;
		}
	}
	.scrollable-pane {
		bottom: 0;
		opacity: 0.01;
		position: absolute;
		right: 5px;
		top: 0;
		transition: all 0.2s ease 0s;
		width: 4px;
	}
	.scrollable-slider {
		border-radius: 5px;
		background: none repeat scroll 0 0 #CCC;
		margin: 0;
		position: relative;
		transition: opacity 0.2s ease 0s;
		opacity: 0;
	}
	&.scrollable-padding {
		.scrollable-content {
			padding: 10px 24px 10px 10px;
		}
	}
	&:hover, &.visible-slider {
		.scrollable-slider {
			opacity: 1;
		}
	}
}