diff --git a/changedetectionio/static/images/gradient-border.png b/changedetectionio/static/images/gradient-border.png
deleted file mode 100644
index 4c7705f8..00000000
Binary files a/changedetectionio/static/images/gradient-border.png and /dev/null differ
diff --git a/changedetectionio/static/styles/scss/styles.scss b/changedetectionio/static/styles/scss/styles.scss
index 55bcc4cb..1c1e8b5b 100644
--- a/changedetectionio/static/styles/scss/styles.scss
+++ b/changedetectionio/static/styles/scss/styles.scss
@@ -243,7 +243,6 @@ body::after {
body::before {
// background-image set in base.html so it works with reverse proxies etc
content: "";
- background-size: cover
}
body:after,
@@ -1083,6 +1082,9 @@ ul {
li {
list-style: none;
font-size: 0.8rem;
+ > * {
+ display: inline-block;
+ }
}
}
diff --git a/changedetectionio/static/styles/styles.css b/changedetectionio/static/styles/styles.css
index c18d8d96..b09d5599 100644
--- a/changedetectionio/static/styles/styles.css
+++ b/changedetectionio/static/styles/styles.css
@@ -574,8 +574,7 @@ body::after {
opacity: 0.91; }
body::before {
- content: "";
- background-size: cover; }
+ content: ""; }
body:after,
body:before {
@@ -1173,6 +1172,8 @@ ul {
#quick-watch-processor-type ul li {
list-style: none;
font-size: 0.8rem; }
+ #quick-watch-processor-type ul li > * {
+ display: inline-block; }
.restock-label {
padding: 3px;
diff --git a/changedetectionio/templates/base.html b/changedetectionio/templates/base.html
index c4c664cb..60ceb3bb 100644
--- a/changedetectionio/templates/base.html
+++ b/changedetectionio/templates/base.html
@@ -24,12 +24,6 @@
-
-
diff --git a/changedetectionio/tests/test_jsonpath_jq_selector.py b/changedetectionio/tests/test_jsonpath_jq_selector.py
index 5dfdfef2..1202849f 100644
--- a/changedetectionio/tests/test_jsonpath_jq_selector.py
+++ b/changedetectionio/tests/test_jsonpath_jq_selector.py
@@ -479,8 +479,9 @@ def test_correct_header_detect(client, live_server):
url_for("preview_page", uuid="first"),
follow_redirects=True
)
- assert b'"world":' in res.data
- assert res.data.count(b'{') >= 2
+
+ assert b'"hello": 123,' in res.data
+ assert b'"world": 123' in res.data
res = client.get(url_for("form_delete", uuid="all"), follow_redirects=True)
assert b'Deleted' in res.data