1
0
mirror of https://github.com/django/django.git synced 2024-12-22 09:05:43 +00:00

Fixed #35924 - removed CSS class references for choose/remove all controls used in FilteredSelectMultiple widget

This commit is contained in:
Anthony Joseph 2024-12-13 11:35:11 +11:00
parent 6f38697f90
commit ae5af487a1
No known key found for this signature in database
GPG Key ID: 5D2516AE3AC85D11
2 changed files with 0 additions and 20 deletions

View File

@ -237,18 +237,10 @@ fieldset .fieldBox {
background-position: 0 -168px;
}
.selector-chooseall {
background: url(../img/selector-icons.svg) right -128px no-repeat;
}
.active.selector-chooseall:focus, .active.selector-chooseall:hover {
background-position: 100% -144px;
}
.selector-clearall {
background: url(../img/selector-icons.svg) 0 -160px no-repeat;
}
.active.selector-clearall:focus, .active.selector-clearall:hover {
background-position: 0 -176px;
}

View File

@ -182,22 +182,10 @@
cursor: pointer;
}
.selector-chooseall {
padding: 0 18px 0 0;
background: url(../img/selector-icons.svg) right -160px no-repeat;
cursor: default;
}
.active.selector-chooseall:focus, .active.selector-chooseall:hover {
background-position: 100% -176px;
}
.selector-clearall {
padding: 0 0 0 18px;
background: url(../img/selector-icons.svg) 0 -128px no-repeat;
cursor: default;
}
.active.selector-clearall:focus, .active.selector-clearall:hover {
background-position: 0 -144px;
}