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/base/_nanoscroll.scss
/* Nano Scroller Plugin */
html.no-overflowscrolling {
	.nano {
		height: 100%;
		position: relative;
		overflow: hidden;
		width: 100%;

		> .nano-content {
			bottom: 0;
			left: 0;
			position: absolute;
			overflow: hidden;
			right: 0;
			top: 0;

			&:focus {
				outline: none;
			}

			&::-webkit-scrollbar {
				display: none;
				visibility: hidden;
			}
		}

		&.has-scrollbar {
			> .nano-content::-webkit-scrollbar {
				display: block;
				visibility: visible;
			}
		}

		> .nano-pane {
			bottom: 0;
			position: absolute;
			opacity: .01;
			right: 0;
			top: 0;
			visibility: hidden\9; /* Target only IE7 and IE8 with this hack */
			width: 4px;
			transition: .2s;

			> .nano-slider {
				background: $color-primary;
				margin: 0;
				position: relative;
				visibility: hidden;
			}
		}

		&:hover > .nano-pane,
		.nano-pane.active,
		.nano-pane.flashed {
			opacity: 0.99;
		}

		&:hover {
			> .nano-pane {
				> .nano-slider {
					visibility: visible;
				}
			}
		}
	}

	&.custom-scroll {
		.nano {
			> .nano-content {
				overflow: scroll;
				overflow-x: hidden;
			}
		}
	}

	.sidebar-left {
		.nano {
			background: #1D2127;
			box-shadow: -5px 0 0 #2F3139 inset;
		}
	}

}

html.no-overflowscrolling.sidebar-light:not(.dark) {
	.sidebar-left {
		.nano {
			background: #FFF;
			box-shadow: -5px 0 0 #F6F6F6 inset;
		}
	}

	.sidebar-right {
		.nano {
			background: #F6F6F6;
			box-shadow: -5px 0 0 #F6F6F6 inset;
		}
	}

	.inner-menu {
		.nano {
			background: #FFF;
			box-shadow: -5px 0 0 #e2e3e6 inset;
		}
	}
}

@media only screen and (max-width: 767px) {
	html.no-overflowscrolling {
		.sidebar-left,
		.sidebar-right,
		.inner-menu {
			.nano {
				> .nano-content {
					overflow: scroll !important;
					overflow-x: hidden !important;
				}
			}
		}
	}
}

@media only screen and (min-width: 768px) {
	html.overflowscrolling.fixed {
		.sidebar-left,
		.sidebar-right,
		.inner-menu {
			.nano {
				height: 100%;
				overflow: hidden;
				-webkit-overflow-scrolling: touch;
				> .nano-pane {
					> .nano-slider {
						visibility: visible;
					}
				}
			}
		}

		&.custom-scroll {
			.sidebar-left,
			.sidebar-right,
			.inner-menu {
				.nano {
					> .nano-content {
						overflow-y: scroll;
						overflow-x: hidden;
					}
				}
			}
		}
	}

	/* Safari fix */
	html.safari.no-mobile-device.no-overflowscrolling {
		.nano {
			position: absolute !important;
		}
	}
}