0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Fixed gallery delete icon color bug

This commit is contained in:
Peter Zimon 2021-09-03 11:45:29 +02:00
parent 0f0c44295e
commit 0b7d1b1946
2 changed files with 13 additions and 1 deletions

View file

@ -1158,6 +1158,18 @@
} }
/* Special Koenig styles
/* --------------------------------------------------------------- */
.koenig-gallery-trash-icon {
width: 16px;
height: 16px;
}
.koenig-gallery-trash-icon path {
fill: #15171A;
}
/* Mobiledoc-kit base styles /* Mobiledoc-kit base styles
/* NOTE: adapted from https://github.com/bustle/mobiledoc-kit/blob/master/src/css/mobiledoc-kit.css /* NOTE: adapted from https://github.com/bustle/mobiledoc-kit/blob/master/src/css/mobiledoc-kit.css
/* --------------------------------------------------------------- */ /* --------------------------------------------------------------- */

View file

@ -48,7 +48,7 @@
<div class="bg-image-overlay-top child pe-none {{image.overlayClasses}}"> <div class="bg-image-overlay-top child pe-none {{image.overlayClasses}}">
<div class="flex flex-row-reverse"> <div class="flex flex-row-reverse">
<button class="bg-white-90 pl3 pr3 br3 pe-auto" {{action "deleteImage" image}}> <button class="bg-white-90 pl3 pr3 br3 pe-auto" {{action "deleteImage" image}}>
{{svg-jar "koenig/kg-trash" class="fill-darkgrey w4 h4"}} {{svg-jar "koenig/kg-trash" class="koenig-gallery-trash-icon"}}
</button> </button>
</div> </div>
</div> </div>