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

.oo-ui-dialog {
	&-content {
		> .oo-ui-window {
			&-head,
			&-body,
			&-foot {
				position: absolute;
				left: 0;
				right: 0;
				overflow: hidden;
				.oo-ui-box-sizing(border-box);
			}

			&-head {
				z-index: 1;
				top: 0;
			}

			&-body {
				z-index: 2;
				top: 0;
				bottom: 0;
			}

			&-foot {
				z-index: 1;
				bottom: 0;
			}
		}
	}

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