Skip to content

Commit

Permalink
Don't override the button text color in disabled rows. Fix #15977
Browse files Browse the repository at this point in the history
  • Loading branch information
marcos-ng committed Jan 7, 2025
1 parent 03dbbe3 commit 9c6818d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/usr/local/www/css/pfSense-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,9 @@ select.form-control:focus {
}

tr.disabled a {
opacity: .5;
}
tr.disabled a:not(".btn") {
color: rgba(0, 150, 136,.5);
}

Expand Down
3 changes: 3 additions & 0 deletions src/usr/local/www/css/pfSense.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ tr.disabled i.fa-solid, tr.disabled i.fa-regular, tr.disabled i.fa-brands {
}

tr.disabled a {
opacity: .5;
}
tr.disabled a:not(".btn") {
color: rgba(51, 122, 183, .5)
}

Expand Down

0 comments on commit 9c6818d

Please sign in to comment.