dev

Note: After publishing, you may have to bypass your browser's cache to see the changes.

/*****************************************************************************
@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; }