Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebrodeur committed Feb 9, 2025
1 parent 440519d commit 52bf331
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 8 deletions.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "quick-mover",
"name": "Quick Mover",
"version": "0.1.0",
"minAppVersion": "0.15.0",
"version": "0.1.1",
"minAppVersion": "1.8.4",
"description": "Quickly move files to predefined folders with customizable actions",
"author": "Kyle Brodeur",
"authorUrl": "https://github.com/kylebrodeur",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quick-mover",
"version": "0.1.0",
"version": "0.1.1",
"description": "Quickly move files to predefined folders",
"main": "main.js",
"scripts": {
Expand Down
42 changes: 38 additions & 4 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@
background: var(--background-modifier-hover);
}

.quick-mover-plugin .setting-item-info {
display: none !important;
}

.quick-mover-plugin .search-input-container {
width: 100% !important;
}
Expand Down Expand Up @@ -162,3 +158,41 @@
min-width: var(--size-4-8);
}
}

/* More specific selectors to prevent affecting other plugins */
body .quick-mover-plugin.plugin-settings .quick-mover-grid-header {
display: grid;
grid-template-columns: 2fr 3fr 2fr var(--size-4-8);
gap: var(--size-4-3);
padding: 0 var(--size-4-6);
margin-bottom: var(--size-4-2);
color: var(--text-muted);
font-size: 0.8em;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-top: var(--size-4-6);
}

/* Make settings items visible explicitly */
body .quick-mover-plugin.plugin-settings .setting-item {
display: flex;
color: var(--text-normal);
}

body .quick-mover-plugin.plugin-settings .setting-item-info {
color: var(--text-normal);
opacity: 1;
}

/* Ensure other plugin elements remain visible */
.vertical-tab-content-container .setting-item {
color: var(--text-normal) !important;
opacity: 1 !important;
}

.vertical-tab-content-container .setting-item-info,
.vertical-tab-content-container .setting-item-description {
color: var(--text-muted) !important;
opacity: 1 !important;
}
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"0.1.1": "1.8.4",
"0.1.0": "0.15.0"
}
}

0 comments on commit 52bf331

Please sign in to comment.