Merge "API: created a new api to flag messages as read"
[lhc/web/wiklou.git] / resources / src / mediawiki.action / mediawiki.action.view.redirectPage.css
1 /*!
2 * Display neat icons on redirect pages.
3 */
4
5 /* Hide, but keep accessible for screen-readers. */
6 .redirectTo {
7 overflow: hidden;
8 height: 0;
9 zoom: 1;
10 }
11
12 .redirectText {
13 list-style: none none;
14 display: inline;
15 /* shared.css has some very weird directionality-specific rules for 'ul' we need to override,
16 search for "Correct directionality when page dir is different from site/user dir" */
17 margin: 0 !important;
18 padding: 0 !important;
19 }
20
21 /* @noflip */
22 .mw-content-ltr .redirectText li {
23 display: inline;
24 margin: 0;
25 padding: 0;
26 padding-left: 42px;
27 /* @embed */
28 background: url(images/nextredirect-ltr.png) bottom left no-repeat;
29 }
30
31 /* @noflip */
32 .mw-content-ltr .redirectText li:first-child {
33 padding-left: 47px;
34 /* @embed */
35 background: url(images/redirect-ltr.png) bottom left no-repeat;
36 }
37
38 /* @noflip */
39 .mw-content-rtl .redirectText li {
40 display: inline;
41 margin: 0;
42 padding: 0;
43 padding-right: 42px;
44 /* @embed */
45 background: url(images/nextredirect-rtl.png) bottom right no-repeat;
46 }
47
48 /* @noflip */
49 .mw-content-rtl .redirectText li:first-child {
50 padding-right: 47px;
51 /* @embed */
52 background: url(images/redirect-rtl.png) bottom right no-repeat;
53 }