Compare commits
No commits in common. "137d54be77a94a3eb2b3e6e730a72d9976fe701c" and "1fd5427c0f1a990b7bb4da58cfe4d7ac271c62bd" have entirely different histories.
137d54be77
...
1fd5427c0f
|
|
@ -8,20 +8,10 @@ function wrap_parent_menu_item_buttons($output, $item, $depth, $args)
|
||||||
{
|
{
|
||||||
// #### MENU HOMEGRADE HEADER
|
// #### MENU HOMEGRADE HEADER
|
||||||
if ($args->theme_location === "secondary" && in_array('menu-item-has-children', $item->classes, true)) {
|
if ($args->theme_location === "secondary" && in_array('menu-item-has-children', $item->classes, true)) {
|
||||||
|
|
||||||
$output = '<button type="button" class="menu-item__submenu-toggle" aria-expanded="false" aria-controls="sub-menu-' . $item->ID . '">' . $item->title . '</button>';
|
$output = '<button type="button" class="menu-item__submenu-toggle" aria-expanded="false" aria-controls="sub-menu-' . $item->ID . '">' . $item->title . '</button>';
|
||||||
}
|
}
|
||||||
if ($args->theme_location === "primary" && in_array('menu-item-has-children', $item->classes, true)) {
|
|
||||||
$page_icon = get_field('page_icon', $item->object_id) ?? null;
|
|
||||||
$icon = isset($page_icon) && is_array($page_icon) && !empty($page_icon['url']) ? '<img class="page_icon" src="' . $page_icon['url'] . '" alt=""/>' : '';
|
|
||||||
$output = '<button type="button" class="menu-item__submenu-toggle" aria-expanded="false" aria-controls="sub-menu-' . $item->ID . '">' . $icon . $item->title . '</button>';
|
|
||||||
}
|
|
||||||
// write_log($item->classes);
|
|
||||||
if ($args->theme_location === "primary" && !in_array('menu-item-has-children', $item->classes, true)) {
|
|
||||||
|
|
||||||
$page_icon = get_field('page_icon', $item->object_id) ?? null;
|
|
||||||
$icon = isset($page_icon) && is_array($page_icon) && !empty($page_icon['url']) ? '<img class="page_icon" src="' . $page_icon['url'] . '" alt=""/>' : '';
|
|
||||||
$output = '<a href="' . $item->url . '">' . $icon . $item->title . '</a>';
|
|
||||||
}
|
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
add_filter('walker_nav_menu_start_el', 'wrap_parent_menu_item_buttons', 10, 4);
|
add_filter('walker_nav_menu_start_el', 'wrap_parent_menu_item_buttons', 10, 4);
|
||||||
|
|
|
||||||
|
|
@ -7,11 +7,9 @@
|
||||||
function carhop_wrap_parent_menu_item_buttons($output, $item, $depth, $args)
|
function carhop_wrap_parent_menu_item_buttons($output, $item, $depth, $args)
|
||||||
{
|
{
|
||||||
if ($args->theme_location === "primary") {
|
if ($args->theme_location === "primary") {
|
||||||
$page_icon = get_field('page_icon', $item->object_id) ?? null;
|
$page_icon = get_field('page_icon', $item->object_id);
|
||||||
// $test = get_field('page_icon', 729);
|
|
||||||
// write_log($test);
|
|
||||||
|
|
||||||
if (isset($page_icon) && is_array($page_icon) && !empty($page_icon['url'])) {
|
if (isset($page_icon)) {
|
||||||
$icon = '<img class="page_icon" src="' . $page_icon['url'] . '" alt=""/>';
|
$icon = '<img class="page_icon" src="' . $page_icon['url'] . '" alt=""/>';
|
||||||
// Insérer l'icône à l'intérieur du lien (seulement la première occurrence)
|
// Insérer l'icône à l'intérieur du lien (seulement la première occurrence)
|
||||||
$output = preg_replace('/>/', '>' . $icon, $output, 1);
|
$output = preg_replace('/>/', '>' . $icon, $output, 1);
|
||||||
|
|
|
||||||
|
|
@ -51,14 +51,6 @@ function carhop_settings_init()
|
||||||
'carhop_section_social',
|
'carhop_section_social',
|
||||||
array('label_for' => 'youtube_url')
|
array('label_for' => 'youtube_url')
|
||||||
);
|
);
|
||||||
add_settings_field(
|
|
||||||
'instagram_url',
|
|
||||||
'URL Instagram',
|
|
||||||
'carhop_field_instagram_callback',
|
|
||||||
'carhop_options',
|
|
||||||
'carhop_section_social',
|
|
||||||
array('label_for' => 'instagram_url')
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
add_action('admin_init', 'carhop_settings_init');
|
add_action('admin_init', 'carhop_settings_init');
|
||||||
|
|
||||||
|
|
@ -97,22 +89,6 @@ function carhop_field_youtube_callback($args)
|
||||||
placeholder="https://youtube.com/votrechaine">
|
placeholder="https://youtube.com/votrechaine">
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
function carhop_field_instagram_callback($args)
|
|
||||||
{
|
|
||||||
$options = get_option('carhop_options');
|
|
||||||
$value = isset($options[$args['label_for']]) ? $options[$args['label_for']] : '';
|
|
||||||
?>
|
|
||||||
<input type="url"
|
|
||||||
id="<?php echo esc_attr($args['label_for']); ?>"
|
|
||||||
name="carhop_options[<?php echo esc_attr($args['label_for']); ?>]"
|
|
||||||
value="<?php echo esc_attr($value); ?>"
|
|
||||||
class="regular-text"
|
|
||||||
placeholder="https://instagram.com/votreprofil">
|
|
||||||
<?php
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Page HTML de l'interface d'options
|
// Page HTML de l'interface d'options
|
||||||
function carhop_options_page_html()
|
function carhop_options_page_html()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,6 @@
|
||||||
@import './blocks/wp-block-table.css';
|
@import './blocks/wp-block-table.css';
|
||||||
@import './blocks/wp-block-details.css';
|
@import './blocks/wp-block-details.css';
|
||||||
@import './blocks/wp-block-image.css';
|
@import './blocks/wp-block-image.css';
|
||||||
@import './blocks/wp-block-buttons.css';
|
|
||||||
|
|
||||||
@import './blocks/variants.css';
|
@import './blocks/variants.css';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,3 @@ ol li {
|
||||||
content: counter(list-item) ' • ';
|
content: counter(list-item) ' • ';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.align-extra-wide {
|
|
||||||
max-width: var(--wp--style--global--wide-size, 1280px);
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -11,18 +11,9 @@
|
||||||
background-color: var(--content-box-background-color, transparent);
|
background-color: var(--content-box-background-color, transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.alignwide, &.aligncontained {
|
&.alignwide {
|
||||||
@apply !mx-auto;
|
@apply !mx-auto;
|
||||||
}
|
}
|
||||||
&.aligncontained {
|
|
||||||
@apply !max-w-screen-lg ;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
/* &.alignwide {
|
|
||||||
@apply max-w-screen-lg;
|
|
||||||
} */
|
|
||||||
|
|
||||||
.wp-block-group {
|
.wp-block-group {
|
||||||
}
|
}
|
||||||
|
|
@ -58,16 +49,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&__innerblocks {
|
&__innerblocks {
|
||||||
@apply mx-auto px-4 md:px-8;
|
@apply max-w-screen-lg mx-auto px-4 md:px-8;
|
||||||
>:not(.alignwide):not(.alignfull) {
|
|
||||||
@apply max-w-screen-lg mx-auto ;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
&.alignwide .content-box__innerblocks{
|
|
||||||
>:not(.alignfull) {
|
|
||||||
@apply max-w-screen-xl mx-auto ;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
h3 {
|
h3 {
|
||||||
/* @apply title-small font-bold; */
|
/* @apply title-small font-bold; */
|
||||||
|
|
|
||||||
|
|
@ -33,8 +33,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&--hierarchy-inverted {
|
&--hierarchy-inverted {
|
||||||
/* @apply text-white; */
|
@apply text-white;
|
||||||
color: var(--advised-text-color, inherit);
|
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
|
|
@ -48,9 +47,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&--hierarchy-classic {
|
&--hierarchy-classic {
|
||||||
/* @apply text-white; */
|
@apply text-white;
|
||||||
color: var(--advised-text-color, inherit);
|
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
|
|
|
||||||
|
|
@ -1,49 +0,0 @@
|
||||||
.wp-block-buttons.is-style-big-buttons {
|
|
||||||
@apply mx-auto flex flex-col justify-center mt-4 mb-12;
|
|
||||||
@apply px-4;
|
|
||||||
@screen lg {
|
|
||||||
flex-direction: row;
|
|
||||||
@apply px-0;
|
|
||||||
}
|
|
||||||
.wp-block-button {
|
|
||||||
@apply shrink w-full;
|
|
||||||
flex-shrink: 1;
|
|
||||||
flex-grow: 1;
|
|
||||||
flex-basis: 100%;
|
|
||||||
@screen lg {
|
|
||||||
@apply w-fit;
|
|
||||||
flex-grow: 0;
|
|
||||||
flex-basis: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.5);
|
|
||||||
}
|
|
||||||
.wp-block-button__link {
|
|
||||||
@apply fjalla uppercase text-left flex justify-between items-center bg-white text-primary;
|
|
||||||
@apply text-3xl;
|
|
||||||
&:after {
|
|
||||||
@apply content-[''] block w-16 h-16 bg-no-repeat;
|
|
||||||
|
|
||||||
transition: transform 0.3s ease-out;
|
|
||||||
background-image: url('../resources/img/carhop-fleche-full-green.svg');
|
|
||||||
|
|
||||||
margin-top: 0.5em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
.wp-block-button__link {
|
|
||||||
@apply bg-carhop-green-900 text-white;
|
|
||||||
}
|
|
||||||
.wp-block-button__link:after {
|
|
||||||
transform: translateX(10px);
|
|
||||||
filter: brightness(0) invert(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.wp-block-buttons {
|
|
||||||
@apply !max-w-screen-lg;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-buttons.alignwide,
|
|
||||||
.wp-block-buttons.alignfull {
|
|
||||||
@apply max-w-none;
|
|
||||||
}
|
|
||||||
|
|
@ -59,13 +59,4 @@ article > *:not(.entry-content),
|
||||||
@apply font-bold;
|
@apply font-bold;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.content-box{
|
|
||||||
&__innerblocks{
|
|
||||||
.block-editor-inner-blocks{
|
|
||||||
max-width: 960px !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,6 @@
|
||||||
|
|
||||||
li.menu-item.has-page-icon {
|
li.menu-item.has-page-icon {
|
||||||
@apply gap-4 font-normal tracking-wide;
|
@apply gap-4 font-normal tracking-wide;
|
||||||
button,
|
|
||||||
a {
|
a {
|
||||||
@apply flex flex-row lg:flex-col items-center justify-start lg:justify-end gap-4 font-normal tracking-wide;
|
@apply flex flex-row lg:flex-col items-center justify-start lg:justify-end gap-4 font-normal tracking-wide;
|
||||||
}
|
}
|
||||||
|
|
@ -121,77 +120,32 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
li.menu-item.menu-item-has-children:hover {
|
li.menu-item.menu-item-has-children:hover {
|
||||||
&:hover .page_icon {
|
|
||||||
transform: none;
|
|
||||||
}
|
|
||||||
@screen lg {
|
@screen lg {
|
||||||
.menu-item-submenu-toggle:after {
|
.menu-item-submenu-toggle:after {
|
||||||
transform: rotate(180deg);
|
transform: rotate(180deg);
|
||||||
}
|
}
|
||||||
/* .sub-menu {
|
.sub-menu {
|
||||||
display: block;
|
display: block;
|
||||||
} */
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* submenus */
|
/* submenus */
|
||||||
li .sub-menu {
|
li .sub-menu {
|
||||||
@apply bg-carhop-green-700
|
@apply bg-primary
|
||||||
p-6
|
p-6
|
||||||
px-6
|
|
||||||
|
|
||||||
mx-auto
|
mx-auto
|
||||||
lg:mx-0
|
lg:mx-0
|
||||||
static
|
static
|
||||||
w-full
|
|
||||||
grid-cols-2
|
|
||||||
lg:absolute;
|
lg:absolute;
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
display: none;
|
display: none;
|
||||||
left: 0;
|
|
||||||
top: 100%;
|
|
||||||
opacity: 0;
|
|
||||||
translate: 0 -30px;
|
|
||||||
transition:
|
|
||||||
translate 0.3s ease-out,
|
|
||||||
display 0.3s,
|
|
||||||
opacity 0.3s;
|
|
||||||
transition-behavior: allow-discrete;
|
|
||||||
|
|
||||||
&.sub-menu-open {
|
&.sub-menu-open {
|
||||||
display: grid;
|
display: block;
|
||||||
opacity: 1;
|
|
||||||
translate: 0 0;
|
|
||||||
|
|
||||||
@starting-style {
|
|
||||||
opacity: 0;
|
|
||||||
translate: 0 -30px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
@apply lg:text-left;
|
@apply py-2 lg:text-left;
|
||||||
border-bottom: 1px solid #fff;
|
|
||||||
&:nth-last-child(-n + 2),
|
|
||||||
&:last-child {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
@apply max-w-3xl w-full;
|
|
||||||
|
|
||||||
&:nth-child(odd) {
|
|
||||||
@apply ml-auto;
|
|
||||||
}
|
|
||||||
&.menu-item.has-page-icon a {
|
|
||||||
@apply flex gap-4 items-center justify-start flex-row p-6 py-8;
|
|
||||||
.page_icon {
|
|
||||||
@apply w-12 h-12;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
&:hover {
|
|
||||||
@apply bg-black/10;
|
|
||||||
a {
|
|
||||||
@apply gap-12;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
> a::after {
|
> a::after {
|
||||||
|
|
@ -277,28 +231,3 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body:has(.primary-menu-container .sub-menu-open) {
|
|
||||||
main {
|
|
||||||
@apply relative;
|
|
||||||
|
|
||||||
&:after {
|
|
||||||
@apply absolute inset-0 bg-black/50 z-10;
|
|
||||||
backdrop-filter: blur(4px);
|
|
||||||
content: '';
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
z-index: 10;
|
|
||||||
|
|
||||||
transition: all 0.3s ease-out;
|
|
||||||
@starting-style {
|
|
||||||
backdrop-filter: blur(0px);
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user