Skip to content

Commit

Permalink
Merge pull request #798 from tfeldmann/main
Browse files Browse the repository at this point in the history
Use default django css variables
  • Loading branch information
matthiask committed Aug 27, 2021
2 parents 63c88c0 + 1a9c95b commit 79301e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mptt/static/mptt/draggable-admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@

/* focus */
#result_list tbody tr:focus {
background-color: #ffffcc !important; outline: 0px; }
background-color: var(--selected-row, #ffc) !important; outline: 0px; }

@media (prefers-color-scheme: dark) {
.tree-node.children { background-image: url(disclosure-down-white.png); }
.tree-node.closed { background-image: url(disclosure-right-white.png); }
.drag-handle { background-image: url(arrow-move-white.png); }

#result_list tbody tr:focus {
background-color: #002f33 !important; outline: 0px; }
background-color: var(--selected-row, #00363A) !important; outline: 0px; }
}

#drag-line {
Expand Down

0 comments on commit 79301e1

Please sign in to comment.