diff --git a/css/styles.css b/css/styles.css index e1ca98da29497b4b697f83b6228f0203ef7bd153..f8161b644e24dd520905474bce382b74ba7275b1 100644 --- a/css/styles.css +++ b/css/styles.css @@ -7732,14 +7732,14 @@ picture { margin: 0 0 0 0.15rem; max-width: inherit; padding: 0.5rem 1rem; } - @media (min-width: 63.1875rem) { + @media (min-width: 48.06rem) { .uw-tablinks { border-bottom: 0.4rem solid #fff; - font-size: 14.22224px; + font-size: 18px; font-weight: inherit; margin: 0 0 0 0.15rem; max-width: inherit; - padding: inherit; } } + padding: 1rem 2rem; } } .uw-tablinks[aria-selected="true"] { background: #eee; border-bottom: 0.4rem solid #4e4e4e; 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/04-components/tabs/_tabs.scss b/source/_patterns/04-components/tabs/_tabs.scss index 8ac0b4343a750e3c85d45ec6e73a62cb03cd2aab..9d6bf9e05f7afea4019dba1b320ff930092fb15e 100644 --- a/source/_patterns/04-components/tabs/_tabs.scss +++ b/source/_patterns/04-components/tabs/_tabs.scss @@ -32,15 +32,14 @@ font-weight:inherit; margin:0 0 0 0.15rem; max-width: inherit; - padding:0.5rem 1rem; - @include large{ - + padding: 0.5rem 1rem; + @include medium{ border-bottom: 0.4rem solid #fff; - font-size: gesso-font-size(-1); + font-size: gesso-font-size(1); font-weight:inherit; margin:0 0 0 0.15rem; max-width: inherit; - padding:inherit; + padding: 1rem 2rem; } &[aria-selected="true"] { background: $button-background-color-hover;