Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add: Transparency support on global styles colors #36840

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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