styling for predefined ban reasons

This commit is contained in:
Lorenzo Yario 2025-04-02 03:56:03 -05:00 committed by GitHub
parent 5259f88262
commit 0866adc89f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1234,12 +1234,35 @@ div.mix {
display: inline-block; display: inline-block;
} }
.ban-reason-table .warning-reason-table tr td:first-child { .ban-reason-table {
text-align: right; margin: 10px auto;
padding-right: 10px; border-collapse: collapse;
width: auto;
font-size: 10pt;
} }
.ban-reason-table .warning-reason-table tr:hover td { .ban-reason-table th,
cursor: pointer; .ban-reason-table td {
background-color: rgba(100%,100%,100%,0.2); border: 1px solid #98E;
padding: 4px 8px;
text-align: left;
}
.ban-reason-table th {
background-color: #98E;
color: black;
font-weight: bold;
}
.ban-reason-table tr:nth-child(even) td {
background-color: #EEF2FF;
}
.ban-reason-table tr:nth-child(odd) td {
background-color: #FFFFFF;
}
.ban-reason-table tr:hover td {
background-color: #D6DAF0;
cursor: pointer;
} }