Skip to content

Commit

Permalink
Add: Transparency support on global styles colors (#36840)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgefilipecosta authored and noisysocks committed Nov 29, 2021
1 parent 308eff8 commit fdc0724
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 0 deletions.
Expand Up @@ -44,6 +44,7 @@ function ColorGradientControlInner( {
gradientValue,
clearable,
showTitle = true,
enableAlpha,
} ) {
const canChooseAColor =
onColorChange && ( ! isEmpty( colors ) || ! disableCustomColors );
Expand Down Expand Up @@ -109,6 +110,7 @@ function ColorGradientControlInner( {
__experimentalHasMultipleOrigins
}
clearable={ clearable }
enableAlpha={ enableAlpha }
/>
) }
{ ( currentTab === 'gradient' || ! canChooseAColor ) && (
Expand Down
Expand Up @@ -92,6 +92,7 @@ export const PanelColorGradientSettingsInner = ( {
title,
showTitle = true,
__experimentalHasMultipleOrigins,
enableAlpha,
...props
} ) => {
if (
Expand Down Expand Up @@ -143,6 +144,7 @@ export const PanelColorGradientSettingsInner = ( {
disableCustomColors,
disableCustomGradients,
__experimentalHasMultipleOrigins,
enableAlpha,
...setting,
} }
/>
Expand Down
Expand Up @@ -104,6 +104,7 @@ function ScreenBackgroundColor( { name } ) {
disableCustomGradients={ ! areCustomGradientsEnabled }
__experimentalHasMultipleOrigins
showTitle={ false }
enableAlpha
/>
</>
);
Expand Down
Expand Up @@ -70,6 +70,7 @@ function ScreenLinkColor( { name } ) {
disableCustomColors={ ! areCustomSolidsEnabled }
__experimentalHasMultipleOrigins
showTitle={ false }
enableAlpha
/>
</>
);
Expand Down
Expand Up @@ -62,6 +62,7 @@ function ScreenTextColor( { name } ) {
disableCustomColors={ ! areCustomSolidsEnabled }
__experimentalHasMultipleOrigins
showTitle={ false }
enableAlpha
/>
</>
);
Expand Down

0 comments on commit fdc0724

Please sign in to comment.