.history-tabs-container {
	margin-left: 10px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.history-tabs-container .history-tabs {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
}

.history-tabs-container .history-tab {
	padding: 0 10px;
	display: flex;
	align-items: center;
	height: 100%;
	cursor: pointer;
	position: relative;
	opacity: 0.5;
	transition: opacity 0.2s ease-in-out;
}

.history-tabs-container .history-tab.active {
	cursor: default;
	border: 1px solid var(--panel-default-border);
	border-bottom: 0;
	opacity: 1;
}

.history-tabs-container .history-tab.active:active {
	pointer-events: none;
}

.history-tabs-container .history-tab:hover {
	opacity: 1;
}

.history-tabs-container .close-tab {
	position: absolute;
	right: 8px;
	opacity: 0;
	pointer-events: all;
}

.history-tabs-container .history-tab:hover .close-tab {
	opacity: 1;
}

.history-tabs-container .history-tab .title {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.history-tabs-container .history-tab:hover .title {
	max-width: calc(100% - 10px);
}

.history-tabs-container .close-tab i {
	vertical-align: middle;
	font-size: 10px;
}
