Skip to content

Commit

Permalink
Merge pull request #14900 from AUTOMATIC1111/fix-css-color-extra-netw…
Browse files Browse the repository at this point in the history
…ork-control--enabled

fix extra-network-control--enabled color
  • Loading branch information
AUTOMATIC1111 committed Feb 17, 2024
2 parents bf08a5b + 13fd466 commit f293dbb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -851,13 +851,13 @@ table.popup-table .link{
#extensions tr:hover td,
#config_state_extensions tr:hover td,
#available_extensions tr:hover td {
background: rgba(0, 0, 0, 0.15)
background: rgba(0, 0, 0, 0.15);
}

.dark #extensions tr:hover td ,
.dark #config_state_extensions tr:hover td ,
.dark #available_extensions tr:hover td {
background: rgba(255, 255, 255, 0.15)
background: rgba(255, 255, 255, 0.15);
}

/* replace original footer with ours */
Expand Down Expand Up @@ -1513,12 +1513,12 @@ body.resizing .resize-handle {
background-color: var(--input-placeholder-color);
}

.dark .extra-network-control .extra-network-control--enabled {
background-color: var(--neutral-700);
.extra-network-control .extra-network-control--enabled {
background-color: rgba(0, 0, 0, 0.15);
}

.dark .extra-network-control .extra-network-control--enabled {
background-color: var(--neutral-300);
background-color: rgba(255, 255, 255, 0.15);
}

/* ==== REFRESH ICON ACTIONS ==== */
Expand Down

0 comments on commit f293dbb

Please sign in to comment.