summaryrefslogtreecommitdiff
path: root/vendor/oojs/oojs-ui/src/styles/layouts/ActionFieldLayout.less
blob: 2d4c2a6634f5c70262708791f5f2d80d8e4b0ff6 (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
@import '../common';

.oo-ui-actionFieldLayout {
	&-field {
		display: table;
		table-layout: fixed;
		width: 100%;
	}

	&-input,
	&-button {
		display: table-cell;
		vertical-align: middle;
	}

	&-input {
		padding-right: 1em;
	}

	&-button {
		width: 1%;
		white-space: nowrap;
	}

	.theme-oo-ui-actionFieldLayout();
}