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

.oo-ui-window {
	&-frame {
		.oo-ui-box-sizing(border-box);
	}

	// Content div takes focus when opened, so hide outline
	&-content:focus {
		outline: none;
	}

	&-head,
	&-foot {
		.oo-ui-unselectable();
	}

	&-body {
		margin: 0;
		padding: 0;
		background: none;
	}

	&-overlay {
		position: absolute;
		top: 0;
		/* @noflip */
		left: 0;
	}

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