//@import "../../../abstracts/abstracts";

select {
	option {
		background: $select-option-background;
	}
}

textarea {
	&:disabled {
		@include scrollbar;
	}
}

input[type="checkbox"] {
	&:disabled {
		cursor: not-allowed !important;
		&:hover {
			cursor: not-allowed !important;
		}
	}
}

#content-wrapper {
	#content {
		select {
			font-weight: 500;
		}
		textarea {
			font-weight: 500;
		}
	}
	input[type="checkbox"] {
		margin: 0;
	}
	input[type="radio"] {
		margin: 0;
	}
	.checkbox {
		label {
			min-height: 12px;
			font-size: $font-size-small;
			line-height: 20px;
		}
	}
	.radio {
		label {
			min-height: 12px;
			font-size: $font-size-small;
			line-height: 20px;
		}
	}
}

/* Bootstrap override (otherwise a select will be 1px longer) */
.input-group-append {
	margin-left: 0;
}

#content {
	textarea {
		background: $modal-disabled-color;
		border-color: $modal-border-color;
		color: $color-primary;
		font-weight: 600;
	}
	select {
		background: $modal-disabled-color;
		border-color: $modal-border-color;
		color: $color-primary;
		font-weight: 600;
	}
}
