Skip to content

Commit

Permalink
Fix icon display issue in customize toolbar dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisX11 committed Oct 27, 2023
1 parent 89f5966 commit eba0c09
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions css/dialogs.css
Original file line number Diff line number Diff line change
Expand Up @@ -1515,7 +1515,10 @@ dialog#edit_bedrock_binding > .dialog_wrapper > .dialog_content {
background-color: transparent;
}
#bar_item_list li {
padding: 4px;
padding: 4px;
height: 32px;
display: flex;
gap: 8px;
}
#bar_item_list li:hover {
color: var(--color-light);
Expand All @@ -1525,7 +1528,7 @@ dialog#edit_bedrock_binding > .dialog_wrapper > .dialog_content {
height: 26px;
vertical-align: text-top;
}
#bar_item_list li:not(:hover) div.icon_wrapper.add, #bar_item_list li:hover div.icon_wrapper.normal {
#bar_item_list li:not(:hover) div.icon_wrapper.add, #bar_item_list li:hover > .icon {
display: none;
}
#bar_items_current {
Expand Down

0 comments on commit eba0c09

Please sign in to comment.