mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-13 06:57:09 +03:00
Don't affect inline popup
This commit is contained in:
@@ -1,7 +1,3 @@
|
|||||||
html {
|
|
||||||
color-scheme: dark;
|
|
||||||
}
|
|
||||||
|
|
||||||
#previewbar {
|
#previewbar {
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
--sb-green-bg: #077B27;
|
--sb-green-bg: #077B27;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
#sponsorBlockPopupHTML {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -32,6 +32,8 @@ html {
|
|||||||
margin: auto;
|
margin: auto;
|
||||||
width: 374px;
|
width: 374px;
|
||||||
background: var(--sb-main-bg-color);
|
background: var(--sb-main-bg-color);
|
||||||
|
|
||||||
|
color-scheme: dark;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sponsorblockPopup {
|
#sponsorblockPopup {
|
||||||
|
|||||||
@@ -1,12 +1,13 @@
|
|||||||
<head>
|
<html id="sponsorBlockPopupHTML">
|
||||||
|
<head>
|
||||||
<title>__MSG_openPopup__</title>
|
<title>__MSG_openPopup__</title>
|
||||||
<link id="sponsorBlockPopupFont" rel="stylesheet" type="text/css" href="/libs/Source+Sans+Pro.css">
|
<link id="sponsorBlockPopupFont" rel="stylesheet" type="text/css" href="/libs/Source+Sans+Pro.css">
|
||||||
<link id="sponsorBlockStyleSheet" rel="stylesheet" type="text/css" href="popup.css">
|
<link id="sponsorBlockStyleSheet" rel="stylesheet" type="text/css" href="popup.css">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body id="sponsorBlockPopupBody">
|
<body id="sponsorBlockPopupBody">
|
||||||
<div id="sponsorblockPopup" class="sponsorBlockPageBody preload">
|
<div id="sponsorblockPopup" class="sponsorBlockPageBody preload">
|
||||||
<div class="logoText bottomSpace">
|
<div class="logoText bottomSpace">
|
||||||
<img src="icons/IconSponsorBlocker256px.png" height="40px" id="sponsorBlockPopupLogo">
|
<img src="icons/IconSponsorBlocker256px.png" height="40px" id="sponsorBlockPopupLogo">
|
||||||
@@ -149,4 +150,5 @@
|
|||||||
<!-- Scripts that need to load after the html -->
|
<!-- Scripts that need to load after the html -->
|
||||||
<script src="./js/vendor.js" async></script>
|
<script src="./js/vendor.js" async></script>
|
||||||
<script src="./js/popup.js" async></script>
|
<script src="./js/popup.js" async></script>
|
||||||
</body>
|
</body>
|
||||||
|
</html>
|
||||||
@@ -1318,9 +1318,11 @@ function openInfoMenu() {
|
|||||||
let htmlData = xmlhttp.responseText;
|
let htmlData = xmlhttp.responseText;
|
||||||
// Hack to replace head data (title, favicon)
|
// Hack to replace head data (title, favicon)
|
||||||
htmlData = htmlData.replace(/<head>[\S\s]*<\/head>/gi, "");
|
htmlData = htmlData.replace(/<head>[\S\s]*<\/head>/gi, "");
|
||||||
// Hack to replace body tag with div
|
// Hack to replace body and html tag with div
|
||||||
htmlData = htmlData.replace(/<body/gi, "<div");
|
htmlData = htmlData.replace(/<body/gi, "<div");
|
||||||
htmlData = htmlData.replace(/<\/body/gi, "</div");
|
htmlData = htmlData.replace(/<\/body/gi, "</div");
|
||||||
|
htmlData = htmlData.replace(/<html/gi, "<div");
|
||||||
|
htmlData = htmlData.replace(/<\/html/gi, "</div");
|
||||||
|
|
||||||
popup.innerHTML = htmlData;
|
popup.innerHTML = htmlData;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user