diff options
| author | DESKTOP-V026VQF\Home | 2023-01-09 08:19:51 +0000 |
|---|---|---|
| committer | DESKTOP-V026VQF\Home | 2023-01-09 08:19:51 +0000 |
| commit | e4022303c0b96007a65fa64d67db70bf9135906b (patch) | |
| tree | 427b30e1c73fa58470c5ebb669e8d5224df635c6 /_site/office-license-is-not-genuine.html | |
| parent | 48cc759920f59260fe3f9a3a79ff0be277174cc9 (diff) | |
| download | massgrave.dev-e4022303c0b96007a65fa64d67db70bf9135906b.zip | |
Rmarkdown and TB link update
Diffstat (limited to '_site/office-license-is-not-genuine.html')
| -rw-r--r-- | _site/office-license-is-not-genuine.html | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/_site/office-license-is-not-genuine.html b/_site/office-license-is-not-genuine.html index 3b52996..0e265f3 100644 --- a/_site/office-license-is-not-genuine.html +++ b/_site/office-license-is-not-genuine.html @@ -13,7 +13,7 @@ <title>office-license-is-not-genuine</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
|
