﻿.link-button {
	cursor: pointer;
	text-decoration: none;
	color: var(--web-color-link);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	display: block;
	user-select: none;
}

	.link-button:hover {
		color: var(--web-color-link-hover);
		text-decoration: underline;
	}

	.link-button:active {
		color: var(--web-color-link-active);
	}

	.link-button.disabled {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
		color: var(--web-color-text-disabled);
	}
