ميدياويكي:Gadget-DisplayFooter.css
المظهر
ملاحظة: بعد النشر، أنت قد تحتاج إلى إفراغ الكاش الخاص بمتصفحك لرؤية التغييرات.
- فايرفوكس / سافاري: أمسك Shift أثناء ضغط Reload، أو اضغط على إما Ctrl-F5 أو Ctrl-R (⌘-R على ماك)
- جوجل كروم: اضغط Ctrl-Shift-R (⌘-Shift-R على ماك)
- إنترنت إكسبلورر/إيدج: أمسك Ctrl أثناء ضغط Refresh، أو اضغط Ctrl-F5
- أوبرا: اضغط Ctrl-F5.
/* The overall footer block. */
.ws-footer {
clear: both;
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: 1em;
margin-bottom: 4px;
padding: .2em .3em;
border-top: 1px solid #A0A0A0;
border-bottom: 1px solid #A0A0A0;
background-color: var(--background-color-header,#f4f0e5);
color: var(--color-base, #202122);
font-size: .9em;
}
/* When prev/next link is empty the UA tends to collapse it to zero. */
.ws-footer .ws-footer-empty {
min-width: 1em;
}
/* The previous (back) link. */
.ws-footer-back {
text-align: right;
}
.ws-footer-back::before {
content: "→";
}
.ws-footer-back.ws-footer-empty {
content: " "; /* Non-breaking space to avoid collapsing. */
}
.ws-footer-back.ws-footer-empty::before {
content: ""; /* Hide arrow when empty. */
}
/* The next (forward) link. */
.ws-footer-forward {
text-align: left;
}
.ws-footer-forward::after {
content: "←";
}
.ws-footer-forward.ws-footer-empty {
content: " "; /* Non-breaking space to avoid collapsing. */
}
.ws-footer-forward.ws-footer-empty::after {
content: ""; /* Hide arrow when empty. */
}
/* The central block. */
.ws-footer-center {
text-align: center;
}