@use '@talend/bootstrap-theme/src/theme/guidelines' as *;

// manage actions display on row hover
.row {
	.tc-list-actions button {
		opacity: 0;

		&:focus {
			opacity: 1;
		}
	}

	&:hover .tc-list-actions button {
		opacity: 1;
		transition: opacity 0.15s ease-in;
	}
}
