blob: a0e9f150fbdd9fabcfc6fca4b9231407e6b5dfad (
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
|
/**
* 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: '. .';
}
/* stylelint-disable-next-line selector-class-pattern */
.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}';
}
}
|