summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data-viewer/data-viewer.js2
-rw-r--r--manifest.json2
-rw-r--r--popup/popup.css10
-rw-r--r--theme.css6
4 files changed, 10 insertions, 10 deletions
diff --git a/data-viewer/data-viewer.js b/data-viewer/data-viewer.js
index 7f21906..afc516f 100644
--- a/data-viewer/data-viewer.js
+++ b/data-viewer/data-viewer.js
@@ -22,7 +22,7 @@ document.addEventListener("DOMContentLoaded", function () {
window.close();
});
- // Event listener for delete all data button - Fixed implementation
+ // Event listener for delete all data button
deleteAllButton.addEventListener("click", function () {
if (
confirm(
diff --git a/manifest.json b/manifest.json
index 488f5b5..b8ff9f6 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Zen Internet",
- "version": "1.6.0",
+ "version": "1.7.0",
"description": "Inject custom css from my repository in real time",
"browser_specific_settings": {
"gecko": {
diff --git a/popup/popup.css b/popup/popup.css
index d135ec7..3b71d1e 100644
--- a/popup/popup.css
+++ b/popup/popup.css
@@ -29,7 +29,7 @@ body {
padding: 16px 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: var(--shadow);
- position: relative; /* Add this for positioning the whats-new button */
+ position: relative;
}
.logo-container {
@@ -42,7 +42,7 @@ body {
width: 32px;
height: 32px;
object-fit: contain;
- filter: var(--logo-filter); /* Apply the logo filter based on theme */
+ filter: var(--logo-filter);
}
.app-title {
@@ -392,9 +392,9 @@ input:checked + .slider:before {
/* Current site highlighting */
.current-site {
- background-color: rgba(229, 152, 102, 0.1); /* Subtle orange background */
- border-left: 3px solid var(--accent-color); /* Orange accent bar */
- padding-left: 9px !important; /* Compensate for the border */
+ background-color: rgba(229, 152, 102, 0.1);
+ border-left: 3px solid var(--accent-color);
+ padding-left: 9px !important;
}
/* Mode Indicator */
diff --git a/theme.css b/theme.css
index 08d31fc..9e0a48e 100644
--- a/theme.css
+++ b/theme.css
@@ -7,8 +7,8 @@
--radius-lg: 12px;
--transition: all 0.2s ease;
--shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
- --accent-color: #f98764; /* Subtle Zen-themed orange */
- --hover-color: #fa9475; /* Lighter hover state */
+ --accent-color: #f98764;
+ --hover-color: #fa9475;
--success-color: #40c057;
--warning-color: #fab005;
--danger-color: #fa5252;
@@ -20,7 +20,7 @@
--text-secondary: #a0a0b8;
--header-bg-start: #2c3e50;
--header-bg-end: #1a2530;
- --logo-filter: none; /* No filter for logo in dark mode */
+ --logo-filter: none;
--danger-bg-color: rgba(220, 53, 69, 0.1);
--danger-border-color: rgba(220, 53, 69, 0.3);
}