From ee489775795dbe59a6405fc0ab1c773d69deab1a Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Wed, 23 Oct 2024 15:06:57 -0700 Subject: [PATCH] Revert "Fix missing headers within tabs (#178)" This causes undefined behaviour; the exact same styles are in two different files, causing the browser to randomly select whichever one comes first. This reverts commit 42aeda8e3b39cf7f5768f27c66f55eb9dd7db88f. --- docs/.vuepress/config.js | 1 - docs/.vuepress/public/assets/stylesheet/style-override.css | 4 ---- 2 files changed, 5 deletions(-) delete mode 100644 docs/.vuepress/public/assets/stylesheet/style-override.css diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 5a2283f2f..07487c8de 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -48,7 +48,6 @@ module.exports = { [ 'link', { rel: 'mask-icon', color: '#2E3440', href: '/assets/favicon/safari-pinned-tab.svg' } ], [ 'link', { rel: 'shortcut icon', href: '/assets/favicon/favicon.ico' } ], [ 'link', { rel: 'stylesheet', href: 'https://use.fontawesome.com/releases/v5.6.1/css/all.css' } ], - [ 'link', { rel: 'stylesheet', href: '/assets/stylesheet/style-override.css' } ], [ 'meta', { name: 'msapplication-TileColor', content: '#2E3440' } ], [ 'meta', { name: 'msapplication-TileImage', content: '/assets/favicon/mstile-144x144.png' } ], [ 'meta', { name: 'msapplication-config', content: '/assets/favicon/browserconfig.xml' } ], diff --git a/docs/.vuepress/public/assets/stylesheet/style-override.css b/docs/.vuepress/public/assets/stylesheet/style-override.css deleted file mode 100644 index 95664c192..000000000 --- a/docs/.vuepress/public/assets/stylesheet/style-override.css +++ /dev/null @@ -1,4 +0,0 @@ -.tab-container .tab .header-anchor { - display: inherit; - pointer-events: none; -}