Merge "ApiSandbox: Move labels outside progress bars"
[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 /* stylelint-disable-next-line selector-class-pattern */
12 .comment--without-parentheses,
13 .mw-changeslist-links,
14 .mw-diff-bytes,
15 /* Needed by pages calling ChangeTags::formatSummaryRow (T212613) */
16 .mw-tag-markers,
17 .mw-uctop {
18 &:before {
19 content: '@{msg-parentheses-start}';
20 }
21
22 &:after {
23 content: '@{msg-parentheses-end}';
24 }
25 }
26
27 .mw-changeslist-links {
28 display: inline-block;
29
30 > span:not( :first-child ):before {
31 content: '@{msg-pipe-separator}';
32 }
33 }