Merge "Do not suppress php notices in SpecialPageFatalTest"
[lhc/web/wiklou.git] / resources / src / mediawiki.interface.helpers.styles.less
1 /**
2 * Helper classes used across special pages
3 */
4
5 /* Content dividers */
6 /* @todo FIXME: Hard coded ". .". Is there a message for this? Should there be? */
7 .mw-changeslist-separator:empty:before {
8 content: '. .';
9 }
10
11 .comment--without-parentheses,
12 .mw-changeslist-links,
13 .mw-diff-bytes,
14 /* Needed by pages calling ChangeTags::formatSummaryRow (T212613) */
15 .mw-tag-markers,
16 .mw-uctop {
17 &:before {
18 content: '@{msg-parentheses-start}';
19 }
20
21 &:after {
22 content: '@{msg-parentheses-end}';
23 }
24 }
25
26 .mw-changeslist-links {
27 display: inline-block;
28
29 > span:not( :first-child ):before {
30 content: '@{msg-pipe-separator}';
31 }
32 }