wordpress-menu #56

Merged
chris merged 49 commits from wordpress-menu into develop 2022-03-25 13:12:29 +01:00
4 changed files with 20 additions and 15 deletions
Showing only changes of commit 3598879c41 - Show all commits

File diff suppressed because one or more lines are too long

View File

@ -8,13 +8,11 @@
}
.hero {
@include breakpoint(small) {
aside {
nav {
.dropdown.menu > li > a {
padding: $global-menu-padding/2;
padding: $global-menu-padding/2 $global-menu-padding/2;
}
}
}
}
@include breakpoint(medium) {
aside {

6
package-lock.json generated
View File

@ -924,9 +924,9 @@
}
},
"caniuse-lite": {
"version": "1.0.30001236",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001236.tgz",
"integrity": "sha512-o0PRQSrSCGJKCPZcgMzl5fUaj5xHe8qA2m4QRvnyY4e1lITqoNkr7q/Oh1NcpGSy0Th97UZ35yoKcINPoq7YOQ==",
"version": "1.0.30001312",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001312.tgz",
"integrity": "sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==",
"dev": true
},
"caseless": {

View File

@ -47,18 +47,25 @@ $("#archive_page_title").html('<?php echo $_html ?>');
</div>
<?php endif; ?>
<!-- code to link directly to media
<div class="resource">
<a class="resource-link" href="< ?= $media->originalUrl(); ?>">
<img src="< ?= $media->thumbnailUrl("square"); ?>" />
<span class="resource-name">
< ?= $media->displayTitle(); ?>
</span>
</a>
</div>
-->
<?php if (!$embedMedia && $itemMedia): ?>
<div class="media-list" style="display: flex;">
<?php foreach ($itemMedia as $media): ?>
<div class="resource">
<?php echo $media->linkPretty(); ?>
<div class="resource">
<a class="resource-link" href="<?= $media->originalUrl(); ?>">
<img src="<?= $media->thumbnailUrl("square"); ?>" />
<span class="resource-name">
<?= $media->displayTitle(); ?>
</span>
</a>
</div>
<!-- include code to link directly to media here -->
</div>
<?php endforeach; ?>
</div>
<?php endif; ?>