summaryrefslogtreecommitdiff
path: root/vendor/oojs/oojs-ui/src/styles/dialogs/MessageDialog.less
blob: e50029f9fb68e94ca3281d05f55415ef0ba7a1ef (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
@import '../common';

.oo-ui-messageDialog {
	&-actions {
		&-horizontal {
			display: table;
			table-layout: fixed;
			width: 100%;

			.oo-ui-actionWidget {
				display: table-cell;
				width: 1%;
			}
		}

		&-vertical {
			display: block;

			.oo-ui-actionWidget {
				display: block;
				overflow: hidden;
				text-overflow: ellipsis;
			}
		}

		.oo-ui-actionWidget {
			position: relative;
			text-align: center;

			.oo-ui-buttonElement-button {
				display: block;
			}

			.oo-ui-labelElement-label {
				position: relative;
				top: auto;
				bottom: auto;
				display: inline;
				white-space: nowrap;
			}
		}
	}

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