0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01: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:
Coen van der Kamp 2019-06-18 14:06:01 +02:00 committed by GitHub
commit 3eb71d702e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -122,7 +122,6 @@
$size: 15px;
&:before {
content: map-get($icons, 'help');
display: inline-block;
width: $size;
height: $size;

View File

@ -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',

View File

@ -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>