jekyll-theme-centos 2.45.0 → 2.46.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap v5.3.1 (https://getbootstrap.com/)
2
+ * Bootstrap v5.3.2 (https://getbootstrap.com/)
3
3
  * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
4
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
5
5
  */
@@ -667,7 +667,7 @@
667
667
  * Constants
668
668
  */
669
669
 
670
- const VERSION = '5.3.1';
670
+ const VERSION = '5.3.2';
671
671
 
672
672
  /**
673
673
  * Class definition
@@ -748,9 +748,9 @@
748
748
  if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {
749
749
  hrefAttribute = `#${hrefAttribute.split('#')[1]}`;
750
750
  }
751
- selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;
751
+ selector = hrefAttribute && hrefAttribute !== '#' ? parseSelector(hrefAttribute.trim()) : null;
752
752
  }
753
- return parseSelector(selector);
753
+ return selector;
754
754
  };
755
755
  const SelectorEngine = {
756
756
  find(selector, element = document.documentElement) {
@@ -4046,7 +4046,7 @@
4046
4046
  const CLASS_DROPDOWN = 'dropdown';
4047
4047
  const SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle';
4048
4048
  const SELECTOR_DROPDOWN_MENU = '.dropdown-menu';
4049
- const NOT_SELECTOR_DROPDOWN_TOGGLE = ':not(.dropdown-toggle)';
4049
+ const NOT_SELECTOR_DROPDOWN_TOGGLE = `:not(${SELECTOR_DROPDOWN_TOGGLE})`;
4050
4050
  const SELECTOR_TAB_PANEL = '.list-group, .nav, [role="tablist"]';
4051
4051
  const SELECTOR_OUTER = '.nav-item, .list-group-item';
4052
4052
  const SELECTOR_INNER = `.nav-link${NOT_SELECTOR_DROPDOWN_TOGGLE}, .list-group-item${NOT_SELECTOR_DROPDOWN_TOGGLE}, [role="tab"]${NOT_SELECTOR_DROPDOWN_TOGGLE}`;