Skip to content

Commit

Permalink
Fix for California Coast & other themes (fixes #3)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjeby committed Sep 2, 2021
1 parent 19268a2 commit 8f4283e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "quick-explorer",
"name": "Quick Explorer",
"version": "0.1.0",
"version": "0.1.1",
"description": "Perform file explorer operations (and see your current file path) from the title bar, using the mouse or keyboard",
"minAppVersion": "0.12.12",
"isDesktopOnly": true
Expand Down
3 changes: 2 additions & 1 deletion src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@

// Ensure we overlay the main title text if the window's too narrow
z-index: var(--layer-cover);
background-color: var(--background-modifier-cover);
background-color: var(--background-translucent) !important;

.explorable {
font-size: 12px;
opacity: 0.75;
cursor: pointer;
padding: 0;
display: unset;

&.selected, &:hover {
background-color: var(--interactive-accent-hover);
Expand Down
5 changes: 3 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
padding-left: 10px;
padding-right: 10px;
z-index: var(--layer-cover);
background-color: var(--background-modifier-cover); }
background-color: var(--background-translucent) !important; }
#quick-explorer .explorable {
font-size: 12px;
opacity: 0.75;
cursor: pointer;
padding: 0; }
padding: 0;
display: unset; }
#quick-explorer .explorable.selected, #quick-explorer .explorable:hover {
background-color: var(--interactive-accent-hover);
color: var(--text-on-accent);
Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"0.1.0": "0.12.12",
"0.1.1": "0.12.12",
"0.0.5": "0.12.10",
"0.0.1": "0.12.3"
}

0 comments on commit 8f4283e

Please sign in to comment.