diff --git a/css/styles.css b/css/styles.css index 0746c4c080a37534447719597ecd802ab6d09492..fb6b81497a66cc9a0509801eea9369270a8f58b5 100644 --- a/css/styles.css +++ b/css/styles.css @@ -2475,7 +2475,6 @@ svg:not(:root) { display: block; } .uw-node__sidebar { - background: #00a1ff; display: none; } .uw-node__sidebar * { padding-right: 0.25rem; } diff --git a/js/component_scripts.min.js b/js/component_scripts.min.js index 696a4a4cc803fd1c09a9fb0fd25b75e28d6c9e7e..eb2222dbe15f336463a88a9b3abd9776b7bbb64a 100644 --- a/js/component_scripts.min.js +++ b/js/component_scripts.min.js @@ -1,3 +1,20 @@ +/** + * @file + * Ckeditor Modal. + */ + +(function ($, Drupal) { + if ($.ui && $.ui.dialog) { + orig_allowInteraction = $.ui.dialog.prototype._allowInteraction; + $.ui.dialog.prototype._allowInteraction = function (event) { + if ($(event.target).closest('.cke_dialog').length) { + return true; + } + return orig_allowInteraction.apply(this, arguments); + }; + } +})(jQuery, Drupal); + /** * @file */ @@ -329,23 +346,6 @@ else { }; })(jQuery); -/** - * @file - * Ckeditor Modal. - */ - -(function ($, Drupal) { - if ($.ui && $.ui.dialog) { - orig_allowInteraction = $.ui.dialog.prototype._allowInteraction; - $.ui.dialog.prototype._allowInteraction = function (event) { - if ($(event.target).closest('.cke_dialog').length) { - return true; - } - return orig_allowInteraction.apply(this, arguments); - }; - } -})(jQuery, Drupal); - /** * @file */ diff --git a/source/_patterns/03-layouts/node/_node.scss b/source/_patterns/03-layouts/node/_node.scss index f7847d3b6ba31c303192adfea0202608d81357ec..0b1f9a1861284b246b91dcfbd25e42d78c773d0d 100644 --- a/source/_patterns/03-layouts/node/_node.scss +++ b/source/_patterns/03-layouts/node/_node.scss @@ -5,7 +5,6 @@ $sidebar-gap: $grid-gap; display: block; } &__sidebar{ - background: $test-color-9; display:none; *{ padding-right:0.25rem;