-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
43 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@solid-devtools/extension": patch | ||
--- | ||
|
||
Change panel icon style to outline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,26 @@ | ||
export const icons = { | ||
normal: { | ||
16: 'assets/icons/solid-normal-16.png', | ||
32: 'assets/icons/solid-normal-32.png', | ||
48: 'assets/icons/solid-normal-48.png', | ||
128: 'assets/icons/solid-normal-128.png', | ||
}, | ||
disabled: { | ||
16: 'assets/icons/solid-gray-16.png', | ||
32: 'assets/icons/solid-gray-32.png', | ||
48: 'assets/icons/solid-gray-48.png', | ||
128: 'assets/icons/solid-gray-128.png', | ||
}, | ||
} as const | ||
|
||
export const SOLID_BLUE_16 = 'assets/icons/solid-normal-16.png' | ||
export const SOLID_BLUE_32 = 'assets/icons/solid-normal-32.png' | ||
export const SOLID_BLUE_48 = 'assets/icons/solid-normal-48.png' | ||
export const SOLID_BLUE_128 = 'assets/icons/solid-normal-128.png' | ||
|
||
export const SOLID_GRAY_16 = 'assets/icons/solid-gray-16.png' | ||
export const SOLID_GRAY_32 = 'assets/icons/solid-gray-32.png' | ||
export const SOLID_GRAY_48 = 'assets/icons/solid-gray-48.png' | ||
export const SOLID_GRAY_128 = 'assets/icons/solid-gray-128.png' | ||
|
||
export const OUTLINE_32 = 'solid-white-32.png' | ||
|
||
export const blue: chrome.runtime.ManifestIcons = { | ||
16: SOLID_BLUE_16, | ||
32: SOLID_BLUE_32, | ||
48: SOLID_BLUE_48, | ||
128: SOLID_BLUE_128, | ||
} | ||
|
||
export const gray: chrome.runtime.ManifestIcons = { | ||
16: SOLID_GRAY_16, | ||
32: SOLID_GRAY_32, | ||
48: SOLID_GRAY_48, | ||
128: SOLID_GRAY_128, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters