Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
alain
Make it Open Project Site
Commits
b09b78cd
Commit
b09b78cd
authored
Mar 19, 2021
by
Benthe Kuijpers
Browse files
always multiplying images
parent
abba5d0b
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
wordpress/wp-content/themes/makeitopen/acf-json/group_603c986dd28a4.json
View file @
b09b78cd
...
...
@@ -137,7 +137,7 @@
"required"
:
0
,
"conditional_logic"
:
0
,
"wrapper"
:
{
"width"
:
"
33.3
"
,
"width"
:
"
50
"
,
"class"
:
""
,
"id"
:
""
},
...
...
@@ -161,7 +161,7 @@
"required"
:
0
,
"conditional_logic"
:
0
,
"wrapper"
:
{
"width"
:
"
33.3
"
,
"width"
:
"
50
"
,
"class"
:
""
,
"id"
:
""
},
...
...
@@ -176,30 +176,6 @@
"layout"
:
"vertical"
,
"return_format"
:
"value"
,
"save_other_choice"
:
0
},
{
"key"
:
"field_604629a9ae1d0"
,
"label"
:
"Image blend mode"
,
"name"
:
"img_blend_mode"
,
"type"
:
"radio"
,
"instructions"
:
""
,
"required"
:
0
,
"conditional_logic"
:
0
,
"wrapper"
:
{
"width"
:
"33.3"
,
"class"
:
""
,
"id"
:
""
},
"choices"
:
{
"normal"
:
"Normal"
,
"multiply"
:
"Multiply"
},
"allow_null"
:
0
,
"other_choice"
:
0
,
"default_value"
:
""
,
"layout"
:
"vertical"
,
"return_format"
:
"value"
,
"save_other_choice"
:
0
}
],
"min"
:
""
,
...
...
@@ -616,5 +592,5 @@
"hide_on_screen"
:
""
,
"active"
:
true
,
"description"
:
""
,
"modified"
:
161
582895
1
"modified"
:
161
615337
1
}
\ No newline at end of file
wordpress/wp-content/themes/makeitopen/assets/css/maps/style.css.map
View file @
b09b78cd
This diff is collapsed.
Click to expand it.
wordpress/wp-content/themes/makeitopen/assets/css/style.css
View file @
b09b78cd
This diff is collapsed.
Click to expand it.
wordpress/wp-content/themes/makeitopen/assets/scss/partials/_content-row.scss
View file @
b09b78cd
...
...
@@ -27,6 +27,7 @@
display
:
inline-block
;
width
:
100%
;
max-width
:
400px
;
mix-blend-mode
:
multiply
;
}
}
...
...
wordpress/wp-content/themes/makeitopen/template-parts/page-builder-rows/content.php
View file @
b09b78cd
...
...
@@ -2,13 +2,12 @@
$order
=
get_sub_field
(
'order'
);
$background
=
get_sub_field
(
'background'
);
$image
=
get_sub_field
(
'image'
);
$blend_mode
=
get_sub_field
(
'img_blend_mode'
);
?>
<div
class=
"content-row content-row--
<?php
echo
$order
;
?>
content-row--
<?php
echo
$background
;
?>
"
data-index=
"
<?php
echo
$row_index
;
?>
"
>
<div
class=
"container container--flex"
>
<?php
if
(
$image
)
{
?>
<div
class=
"image-wrapper"
>
<img
src=
"
<?php
echo
$image
;
?>
"
style=
"mix-blend-mode:
<?php
echo
$blend_mode
;
?>
"
>
<img
src=
"
<?php
echo
$image
;
?>
"
>
</div>
<?
}
?>
<div
class=
"text-wrapper"
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment