hook_h5p_styles_alter fails to fire for Memory Game and Find the Hotspot

Created on 11 June 2023, almost 2 years ago

Problem/Motivation

We have been working on re-styling our H5P to match our site them

The custom module code is simple as shown below and it works fine for almostevery H5P content type that we have tried...

<my-module>_h5p_styles_alter(&$styles, $libraries, $mode) {
  $styles[] = (object) [
    // Path relative to drupal root
    'path' => \Drupal::service('extension.list.module')->getPath('custom_h5p_overrides') . '/css/custom-h5p-overrides.min.css','version' => '?ver=1'
  ];
}

We have successfully re-themed multiple H5P content types EXCEPT for these two:

  1. Memory Game
  2. Find the Hotspot

As far as we can see, for both these types, our overridden hook_h5p_styles_alter() simply does not fire.

It it possible for something to be 'missing' in these two content types to prevent the hook from firing?

Thanks all

🐛 Bug report
Status

Active

Version

2.0

Component

Code

Created by

🇬🇧United Kingdom SirClickALot Somerset

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @SirClickALot
  • 🇩🇪Germany vistree

    Hi, a little bit late - but can you check if the CSS is loaded if you disable the css/js aggreagtion on "performance settings" dialog? I think, I run in the same problem ...

  • 🇬🇧United Kingdom SirClickALot Somerset

    Hi,

    The problem with the Memory Game H5P turned out to be the fact that for some odd reason, it's not implemented in an <iframe> like all the others and so the CCS injected by my custom module did apply to it EVER.

    The solution for me was simple and that was to include the CCS overrides for that particular question type in my actual site instead.

    Here's what mine looks like (obviously, you won't be able to reference the variables such as $theme_color_1 etc.

    /********************
    * Memory game START *
    *********************/
    dl.h5p-status {
      display: none;
    }
    .h5p-memory-game {
      overflow: unset !important;
      ul {
        padding-left: 0 !important;
        margin-left: 0 !important;
        li {
          .h5p-memory-card {
            margin-left: 0;
          }
        }
      }
      .h5p-memory-card {
        margin-top: 0;
        margin-bottom: 0;
        .h5p-front {
          border: none;
          border-radius: 6px;
          background-color: $theme_color_1 !important;
          span {
            &:before {
              font-family: "Roboto Condensed", sans-serif;
              color: $theme_color_paper_color;
            }
          }
          &:after {
            display: none;
          }
        }
        .h5p-back {
          border: 1px solid $theme_color_4;
          border-radius: 6px;
          background-color: $theme_color_paper_color !important;
        }
      }
      .h5p-memory-reset {
        display: none;
      }
      .h5p-feedback {
        &.h5p-show {
          display: none;
        }
      }
    }
    
    /******************
    * Memory game END *
    *******************/
    

    Here it is in action for real...
    https://bit-by-bit.org/tutorials/primitive-logic-gates#toc-logic-snap

  • 🇩🇪Germany vistree

    Thanx, for me the problem is also solved.

Production build 0.71.5 2024