Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in or
create an account , your edits will be attributed to your username, along with other benefits.
The edit can be undone.
Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision
Your text
Line 4:
Line 4:
margin: 0.5rem;
margin: 0.5rem;
border-radius: 4px;
border-radius: 4px;
font-size: 1rem;
}
}
Line 17:
Line 16:
font-weight: bold;
font-weight: bold;
text-transform: lowercase;
text-transform: lowercase;
}
.contributors-ranking > table {
width: 100%;
}
.contributors-ranking > table > tbody {
min-width: 100%;
display: block;
}
.contributors-ranking > table > tbody > tr, .contributors-ranking > table > tbody > tr > td {
display: block;
}
}
Line 38:
Line 24:
.contributionscores {
.contributionscores {
background-image: none;
background-image: none;
background-color: transparent;
width: 100%;
}
}
Line 45:
Line 29:
display: flex;
display: flex;
flex-direction: column;
flex-direction: column;
width: 100%;
}
.contributionscores tr {
display: flex;
padding: 0.5rem 0;
border-bottom: 1px solid var(--color-primary1);
justify-content: space-between;
align-items: center;
width: 100%;
}
.contributionscores tr.header {
display: none;
}
.contributionscores tr td {
padding: 0.25rem !important;
}
/* Rank */
.contributionscores tr td:nth-child(1) {
order: 1;
background: var(--color-primary-gradient);
flex: 0 0 2.2rem;
line-height: 2.2rem;
font-size: 1.6rem;
border-radius: 4px;
color: white;
font-weight: bold;
padding: 0 !important;
text-align: center !important;
}
/* Score */
.contributionscores tr td:nth-child(2) {
order: 5;
font-weight: 500;
font-size: 1.8rem;
}
/* Pages */
.contributionscores tr td:nth-child(3) {
order: 4;
}
.contributionscores tr td:nth-child(3):before {
content: "description";
font-family: "Material Symbols Outlined";
padding-right: 0.15rem;
}
/* Edits */
.contributionscores tr td:nth-child(4) {
order: 3;
}
.contributionscores tr td:nth-child(4):before {
content: "edit";
font-family: "Material Symbols Outlined";
padding-right: 0.15rem;
}
/* User */
.contributionscores tr td:nth-child(5) {
order: 2;
flex: 1;
font-weight: bold;
overflow-wrap: anywhere;
}
}