summaryrefslogtreecommitdiff
path: root/vendor/oojs/oojs-ui/src/styles/dialogs/ProcessDialog.less
blob: 379588ae39794d1738106397fff92f67818edb66 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@import '../common';

.oo-ui-processDialog {
	&-location {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	&-title {
		display: inline;
		padding: 0;
	}

	&-actions {
		&-safe,
		&-primary,
		&-other {
			.oo-ui-actionWidget {
				white-space: nowrap;
			}
		}

		&-safe,
		&-primary {
			position: absolute;
			top: 0;
			bottom: 0;
		}

		&-safe {
			left: 0;
		}

		&-primary {
			right: 0;
		}
	}

	&-errors {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		overflow-x: hidden;
		overflow-y: auto;
	}

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