Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/*****************************************************************************
@description: Makes the user options list scrollable and numbers each line
-- Staff-only customization --
@author: User:Nekky-chan
******************************************************************************/
.lookup-user__options {
margin-left: 0;
overflow: auto;
height: 400px;
font-family: monospace;
counter-reset: listing;
font-size: 13px
}
.lookup-user__options p:before { counter-increment: listing; }
.lookup-user__options p { display: block ruby; }
.lookup-user__options p::before {
content: counter(listing) "";
display: inline-block;
width: 2.4em;
border-right: solid 1px;
margin-right: 5px
}
#mw-content-text > div > div.lookup-user__options > p { margin: 0px !important; }