
.dataTable__item .td_name {
	& .ico {
		width: 48px;
		height: 48px;
		margin: -6px -2px -6px -4px;
		flex-grow: 0;
		flex-shrink: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		transform: scale(calc(32 / 48));
	}
	& .slot > .flex_row {
		gap: 1px;
	}
	.view {
		box-shadow: none;
	}
	.ico img {
		max-height: 48px;
		max-width: 48px;
		border-radius:6px
	}
}

.dataTable__item .td_task {
	& .data {
		overflow: hidden;
		flex-shrink: 1;
	}
}
.dataTable__item .td_task:not(:hover) .in ws-btn {
	display: none;
}

.dataTable__item .td_task .data .in {
	color: var(--base-txt-secondary);
	font: var(--font-ui-12-mini-reg);
}
.dataTable__item .td_task .data.done {
	opacity: 0.4;
	& .in {
		color: var(--base-txt-tertiary);
		text-decoration-line: line-through;
		text-decoration-color: var(--base-line-primary);
		text-decoration-thickness: calc(var(--screen-px) * 1.5);
	}
}
.dataTable__item .td_date .in {
	font: var(--font-ui-11-micro-reg);
	color: var(--base-txt-tertiary);
	justify-content: flex-end;
	font-family: var(--font-mono);
}

.dataTable__item .td_type .in {
	font: var(--font-ui-12-mini-reg);
	color: var(--base-txt-secondary);
}
