मीडियाविकि:Gadget-DisplayFooter.css
ध्यान दें: प्रकाशित करने के बाद बदलाव देखने के लिए आपको अपने ब्राउज़र के कैश को हटाना पड़ सकता है।
- Firefox/Safari: Reload क्लिक समय Shift दबाएँ, या फिर Ctrl-F5 या Ctrl-R दबाएँ (Mac पर ⌘-R)
- Google Chrome: Ctrl-Shift-R दबाएँ (Mac पर ⌘-Shift-R)
- Internet Explorer/Edge: Refresh पर क्लिक करते समय Ctrl दबाएँ, या Ctrl-F5 दबाएँ
- Opera: 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: .5em .1em;
background-color: #E6F2E6;
border: 1px solid #ACA;
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: left;
}
.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: right;
}
.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;
}