HEX
Server: LiteSpeed
System: Linux linux31.centraldnserver.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: salamatk (1501)
PHP: 8.1.33
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/salamatk/.trash/woodmart1/inc/admin/assets/sass/modules/_pagination.scss
// ------------------------------------------------------------------------------------------------
// PAGINATION
// ------------------------------------------------------------------------------------------------

@if $general {

	.xts-pagination {
		display: flex;
		justify-content: center;
		margin: 15px 0 0 0;

		li {
			display: flex;
			margin: 0;
			line-height: 1;

			a {
				position: relative;
				display: block;
				padding: 10px;
				min-width: 30px;
				color: var(--xts-default-color);
				text-align: center;
				font-weight: 600;

				&:before {
					content: "";
					position: absolute;
					bottom: 0;
					left: calc(50% - 8px);
					width: 16px;
					height: 3px;
					border-radius: var(--xts-brd-radius);
					background-color: var(--xts-primary-color);
					opacity: 0;
					transition: all .2s ease;
				}
			}

			&:not(:last-child) {
				margin-right: 4px;
			}

			&.xts-current,
			&:hover {

				a {
					color: var(--xts-primary-color);

					&:before {
						opacity: 1;
					}
				}
			}

			&.xts-current {
				pointer-events: none;
			}
		}
	}

} // END IF