Skip to content

Commit 1f0a6a8

Browse files
committed
code cleanup and version update
1 parent e00792d commit 1f0a6a8

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

data-viewer/data-viewer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ document.addEventListener("DOMContentLoaded", function () {
2222
window.close();
2323
});
2424

25-
// Event listener for delete all data button - Fixed implementation
25+
// Event listener for delete all data button
2626
deleteAllButton.addEventListener("click", function () {
2727
if (
2828
confirm(

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Zen Internet",
4-
"version": "1.6.0",
4+
"version": "1.7.0",
55
"description": "Inject custom css from my repository in real time",
66
"browser_specific_settings": {
77
"gecko": {

popup/popup.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ body {
2929
padding: 16px 20px;
3030
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
3131
box-shadow: var(--shadow);
32-
position: relative; /* Add this for positioning the whats-new button */
32+
position: relative;
3333
}
3434

3535
.logo-container {
@@ -42,7 +42,7 @@ body {
4242
width: 32px;
4343
height: 32px;
4444
object-fit: contain;
45-
filter: var(--logo-filter); /* Apply the logo filter based on theme */
45+
filter: var(--logo-filter);
4646
}
4747

4848
.app-title {
@@ -392,9 +392,9 @@ input:checked + .slider:before {
392392

393393
/* Current site highlighting */
394394
.current-site {
395-
background-color: rgba(229, 152, 102, 0.1); /* Subtle orange background */
396-
border-left: 3px solid var(--accent-color); /* Orange accent bar */
397-
padding-left: 9px !important; /* Compensate for the border */
395+
background-color: rgba(229, 152, 102, 0.1);
396+
border-left: 3px solid var(--accent-color);
397+
padding-left: 9px !important;
398398
}
399399

400400
/* Mode Indicator */

theme.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
--radius-lg: 12px;
88
--transition: all 0.2s ease;
99
--shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
10-
--accent-color: #f98764; /* Subtle Zen-themed orange */
11-
--hover-color: #fa9475; /* Lighter hover state */
10+
--accent-color: #f98764;
11+
--hover-color: #fa9475;
1212
--success-color: #40c057;
1313
--warning-color: #fab005;
1414
--danger-color: #fa5252;
@@ -20,7 +20,7 @@
2020
--text-secondary: #a0a0b8;
2121
--header-bg-start: #2c3e50;
2222
--header-bg-end: #1a2530;
23-
--logo-filter: none; /* No filter for logo in dark mode */
23+
--logo-filter: none;
2424
--danger-bg-color: rgba(220, 53, 69, 0.1);
2525
--danger-border-color: rgba(220, 53, 69, 0.3);
2626
}

0 commit comments

Comments
 (0)