We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 185f9da commit 196e654Copy full SHA for 196e654
src/css/components/_ui.scss
@@ -38,3 +38,7 @@
38
margin: 0 0 6px;
39
font-weight: 700;
40
}
41
+
42
+.cloudinary-overwrite-transformations {
43
+ padding: 6px 0;
44
+}
src/js/components/featured-image.js
@@ -12,9 +12,13 @@ let FeaturedTransformationsToggle = ( props ) => {
12
<>
13
{ props.modalClass && (
14
<ToggleControl
15
- label={ __( 'Overwrite Transformations', 'cloudinary' ) }
+ label={ __(
16
+ 'Cloudinary overwrite Global Transformations',
17
+ 'cloudinary'
18
+ ) }
19
checked={ props.overwrite_featured_transformations }
20
onChange={ ( value ) => props.setOverwrite( value ) }
21
+ className="cloudinary-overwrite-transformations"
22
/>
23
) }
24
</>
0 commit comments