blob: 8105707a17e69d7d9b99722b594e0ba2b54005bb (
plain) (
blame)
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
|
/*!
* Styling for Special:WhatLinksHere
*/
@import 'mediawiki.skin.variables.less';
.mw-special-Whatlinkshere {
.oo-ui-fieldsetLayout-group {
max-width: 50em;
.oo-ui-panelLayout-padded.oo-ui-panelLayout-framed {
border: 0;
padding: 0;
}
// Hide extra `legend`s when grouping form in sections.
.oo-ui-fieldsetLayout.oo-ui-labelElement > .oo-ui-fieldsetLayout-header {
display: none;
}
}
#mw-htmlform-whatlinkshere-ns {
display: flex;
justify-content: space-between;
align-items: end;
flex-wrap: wrap;
// To remove the left padding when its child checkbox is wrapped.
margin-left: -@spacing-100;
}
#mw-htmlform-whatlinkshere-ns > .mw-htmlform-field-HTMLSelectNamespace {
flex-grow: 1;
padding-left: @spacing-100;
}
#mw-htmlform-whatlinkshere-ns > .mw-htmlform-field-HTMLCheckField {
padding-left: @spacing-100;
}
#mw-htmlform-whatlinkshere-filter > .mw-htmlform-field-HTMLCheckField {
display: inline-block;
padding-right: @spacing-100;
}
}
|