1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Fixed #34917 -- Underlined Links in Django Admin.

This commit is contained in:
antoliny0919 2024-12-21 20:13:33 +09:00
parent 86661f2449
commit dbacdabe21
2 changed files with 11 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@ -11,6 +11,14 @@
min-width: 0;
}
#changelist .changelist-form-container a {
text-decoration: underline;
}
#changelist .changelist-form-container table thead a {
text-decoration: none;
}
#changelist table {
width: 100%;
}
@ -51,6 +59,9 @@
}
/* CHANGELIST TABLES */
#changelist .paginator a{
text-decoration: none;
}
#changelist table thead th {
padding: 0;