Merge branch 'fix/themes-2.1-transparency-pink' into 'develop'

fix trasparency problems in some cases (purple headers)

See merge request pleroma/pleroma-fe!1079
This commit is contained in:
Shpuld Shpludson 2020-03-04 06:20:28 +00:00
commit f58f294ee8
2 changed files with 3 additions and 1 deletions

View File

@ -102,6 +102,7 @@ const config = {
setPreset(value)
break
case 'customTheme':
case 'customThemeSource':
applyTheme(value)
}
}

View File

@ -352,7 +352,8 @@ export const getColors = (sourceColors, sourceOpacity) => SLOT_ORDERED.reduce(({
}
const opacitySlot = getOpacitySlot(key)
const ownOpacitySlot = value.opacity
if (opacitySlot && (outputColor.a === undefined || ownOpacitySlot)) {
const opacityOverriden = ownOpacitySlot && sourceOpacity[opacitySlot] !== undefined
if (opacitySlot && (outputColor.a === undefined || opacityOverriden)) {
const dependencySlot = deps[0]
if (dependencySlot && colors[dependencySlot] === 'transparent') {
outputColor.a = 0