30 lines
943 B
JavaScript
30 lines
943 B
JavaScript
/**
|
|
* @file
|
|
* Behaviors Bootstrap styles themes overrides scripts.
|
|
*/
|
|
|
|
(function ($, _, Drupal, drupalSettings) {
|
|
"use strict";
|
|
|
|
Drupal.behaviors.bootstrapStylesThemesOverrides = {
|
|
attach: function (context) {
|
|
|
|
// Layout builder modal
|
|
// @todo: we need to add this class somewhere else
|
|
if($('#layout-builder-modal').length) {
|
|
$(document).ajaxComplete(function() {
|
|
$('#layout-builder-modal').parent().addClass('ui-layout-builder-modal');
|
|
});
|
|
}
|
|
|
|
// Remove custom-control class from Barrio theme.
|
|
$(".bs_tab-pane--appearance input:radio", context).once('bs-themes-overrides').each(function () {
|
|
$(this).parent().removeClass('custom-control custom-radio');
|
|
$(this).removeClass('custom-control-input');
|
|
$(this).next('label').removeClass('custom-control-label');
|
|
});
|
|
}
|
|
};
|
|
|
|
})(window.jQuery, window._, window.Drupal, window.drupalSettings);
|