Skip to content

Commit

Permalink
Fix impact icont selector
Browse files Browse the repository at this point in the history
  • Loading branch information
gannetson committed Aug 26, 2022
1 parent fb9213b commit da21a2c
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,26 @@ span.help + p.help {
padding-left: 0;
}
}

.icon-picker {

}

.icon-picker li{
margin: 4px 0;
}


.icon-picker li input{
display: none;
}

.icon-picker li img{
padding: 4px;
cursor: pointer;
}


.icon-picker li input:checked+img{
background-color: #64A03C66;
}

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% for group, options, index in widget.optgroups %}
{% for option in options %}
<li>
{% include option.template_name with widget=option %}
{% include option.template_name with wrap_label=True widget=option %}
</li>
{% endfor %}
{% endfor %}
Expand Down

0 comments on commit da21a2c

Please sign in to comment.