blob: cfabab6838c7fae22c5f1d448bc45c6a81dce811 (
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
|
/**
* Helper classes used across special pages
*/
/* Content dividers */
/* @todo FIXME: Hard coded ". .". Is there a message for this? Should there be? */
.mw-changeslist-separator:empty:before {
content: '. .';
}
.comment--without-parentheses,
.mw-changeslist-links,
.mw-diff-bytes,
/* Needed by pages calling ChangeTags::formatSummaryRow (T212613) */
.mw-tag-markers,
.mw-uctop {
&:before {
content: '@{msg-parentheses-start}';
}
&:after {
content: '@{msg-parentheses-end}';
}
}
.mw-changeslist-links {
display: inline-block;
> span:not( :first-child ):before {
content: '@{msg-pipe-separator}';
}
}
|