மீடியாவிக்கி:Gadget-DisplayFooter.css
குறிப்பு - சேமித்த பின்னர், நீங்கள் செய்த மாற்றங்களைக் காண்பதற்கு உங்கள் உலவியின் இடைமாற்று அகற்றப்பட வேண்டும்.
- மொஸில்லா பயர்பாக்ஸ் / சபாரி: Shift+Reload, அல்லது Ctrl-F5 அல்லது Ctrl-R (⌘-R Mac ல்)
- கூகிள் குரோம் Ctrl-Shift-R அழுத்தவும். (⌘-Shift-R Mac ல்) ;
- இண்டர்நெட் எக்ஸ்ப்ளோரர்: Ctrl-Refresh அல்லது Ctrl-F5 ஐ அழுத்தவும்.
- ஒபேரா: Tools → Preferences இல் இடைமாற்றை அகற்றவும்;
/* 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;
}