mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-03-16 22:10:28 +00:00
Merge pull request #5378 from thibaudcolas/bug/icon-help-inverse-5359
Fix help-inverse icon regression introduced by icon refactorings in #5359
This commit is contained in:
commit
3eb71d702e
3 changed files with 3 additions and 1 deletions
|
|
@ -122,7 +122,6 @@
|
|||
$size: 15px;
|
||||
|
||||
&:before {
|
||||
content: map-get($icons, 'help');
|
||||
display: inline-block;
|
||||
width: $size;
|
||||
height: $size;
|
||||
|
|
|
|||
|
|
@ -30,6 +30,8 @@ $icons: (
|
|||
'grip': '\e03b',
|
||||
'group': '\e031',
|
||||
'help': '\e041',
|
||||
// help-inverse directly renders the corresponding character.
|
||||
'help-inverse': '?',
|
||||
'home': '\e035',
|
||||
// horizontalrule is not rendered as an icon font – it uses a unicode dash character rendered with a fallback font.
|
||||
'horizontalrule': '\2014',
|
||||
|
|
|
|||
|
|
@ -798,6 +798,7 @@
|
|||
<li class="icon icon-grip">grip</li>
|
||||
<li class="icon icon-group">group</li>
|
||||
<li class="icon icon-help">help</li>
|
||||
<li class="icon icon-help-inverse">help-inverse</li>
|
||||
<li class="icon icon-home">home</li>
|
||||
<li class="icon icon-horizontalrule">horizontalrule</li>
|
||||
<li class="icon icon-image">image</li>
|
||||
|
|
|
|||
Loading…
Reference in a new issue