Skip to content

Commit

Permalink
firewall: inherit color for themes
Browse files Browse the repository at this point in the history
  • Loading branch information
fichtner committed May 15, 2018
1 parent 89b433f commit 319a8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/www/firewall_schedule_edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ function daytoggle(id) {

if (daycell != null){
if (rgb2hex(daycell.style.backgroundColor) == "#FF0000"){ // red
daycell.style.backgroundColor = "#FFFFFF"; // white
daycell.style.backgroundColor = "inherit";
str = id + ",";
daysSelected = daysSelected.replace(str, "");
}
Expand Down

1 comment on commit 319a8bc

@fabianfrz
Copy link
Member

@fabianfrz fabianfrz commented on 319a8bc May 15, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fichtner created a real patch for this issue in #2407

Please sign in to comment.