From 6fb0f946af989d67ebe68cf60c0c501689f6f75b Mon Sep 17 00:00:00 2001 From: kkapsner Date: Sun, 14 Jul 2019 10:53:23 +0200 Subject: [PATCH] Display of url specific settings did not work properly For #271 --- options/options.css | 2 +- options/options.js | 1 + releaseNotes.txt | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/options/options.css b/options/options.css index 559caea..ac6e7d4 100644 --- a/options/options.css +++ b/options/options.css @@ -324,6 +324,6 @@ td.hideColumn { padding-right: calc(1em + 3px); background-color: var(--background-color); } -body:not(.searching) .settings tbody:not(.selectedGroup) { +body:not(.searching) .settings tbody.sectionBody:not(.selectedGroup) { display: none; } \ No newline at end of file diff --git a/options/options.js b/options/options.js index cf65b02..5d74843 100644 --- a/options/options.js +++ b/options/options.js @@ -310,6 +310,7 @@ const addSection = function addSection(name){ const body = document.createElement("tbody"); + body.className = "sectionBody"; if (name){ const row = document.createElement("tr"); row.className = "section"; diff --git a/releaseNotes.txt b/releaseNotes.txt index 4afce63..24986ea 100644 --- a/releaseNotes.txt +++ b/releaseNotes.txt @@ -6,7 +6,7 @@ Version 0.5.13: - fixes: - - + - display of url specific settings did not work properly known issues: - if a data URL is blocked the page action button does not appear