summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/assets/components/themes/common/plx-input.less
blob: a83dd19c4cab4029006dae4d47be4fa9b5fcc459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@import "../default/theme.less";

.plx-input {
	font-size: @font-size;
	height: @input-height;
	padding-left: 10px;
	padding-right: 10px;
	outline: 0;
	border: 1px solid @border-color-base;
	border-radius: @radius;
	vertical-align: middle;
	&:focus {
		border: 1px solid @primary-color;
	}
	&:disabled,
	&[disabled] {
		cursor: not-allowed;
		background-color: @input-bg-color-disabled;
	}
}

.plx-input-sm {
	height: @input-height-sm;
}

.plx-input-right-no-radius {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}