- Issue created by @Anybody
- 🇩🇪Germany Anybody Porta Westfalica
In 🐛 Klaro library seems way too large? Active I saw that
klaro-no-css.js
actually IS used already, so the left question is - should there be a way to use a styled one or do we better solve all styling in Drupal? (I'd vote for the second option and would close this then, but maybe others think different?) - 🇩🇪Germany jan kellermann
We are using the JS without CSS, but loading the CSS-file separately, see klaro.libraries.yml
Here I have linked the SCSS which we use to override klaro-styles:
https://www.drupal.org/project/klaro/issues/3495342#comment-15912052 ✨ Stylings per used theme ActiveIf you want to disable loading the klaro.min.css, you can use this code:
/** * Implements hook_library_info_alter(). */ function mymodule_library_info_alter(&$libraries, $extension) { if ($extension === 'klaro') { unset($libraries['library']['css']); } }
If more people need this function, we can add this as config item.
- 🇩🇪Germany Anybody Porta Westfalica
Hi @jan kellermann thank you very much. I think we can close it then, won't make sense to add a setting to disable styling entriely?
- 🇩🇪Germany jan kellermann
@anybody: Can you please review #3495342 and check if this issue is completed?
With these variables customizing should be easy.
- 🇩🇪Germany Anybody Porta Westfalica
Thanks @jan kellermann yes I think that's really nice.
The question (regarding the original idea of this issue) is, if it would even make sense to think about removing
css: base: /libraries/klaro/dist/klaro.min.css: { minified: true }
entirely for the whole solution to become smaller. But I guess it for example contains CSS for the modal, etc. which would then have to be re-implemented.
So maybe this is just a further minor feature request under a META parent issue to one day maybe fork the Klaro lib as an independent Drupal solution?
Feel free to adopt that for future discussion or close this won't fix. I'm fine with anything :)