-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: improve button transition smoothness in Firefox
- Address laggy appearance of button transitions in Firefox - Adjust cubic-bezier and duration for smoother transition effects Changes summary: - Improved the smoothness of button transitions in Firefox by adjusting cubic-bezier and duration.
- Loading branch information
1 parent
3d5ce10
commit 6d4500f
Showing
10 changed files
with
2,200 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
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,30 @@ | ||
{ | ||
"name": "GPThemes - ChatGPT 3.5 Restyled", | ||
"description": "Instantly refresh ChatGPT's UI with a modern and enhanced look using custom CSS", | ||
"author": "Marta Bires", | ||
"homepage_url": "https://github.com/itsmartashub/GPThemes", | ||
"version": "1.2.0", | ||
"manifest_version": 3, | ||
"host_permissions": ["https://chat.openai.com/*", "http://chat.openai.com/*"], | ||
"icons": { | ||
"16": "./assets/icons/16.png", | ||
"19": "./assets/icons/19.png", | ||
"32": "./assets/icons/32.png", | ||
"38": "./assets/icons/38.png", | ||
"48": "./assets/icons/48.png", | ||
"128": "./assets/icons/128.png" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": ["https://chat.openai.com/*", "http://chat.openai.com/*"], | ||
"css": ["./css/index.css"], | ||
"run_at": "document_start" | ||
} | ||
], | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "gpthemes@itsmarta", | ||
"strict_min_version": "121.0" | ||
} | ||
} | ||
} |
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,24 @@ | ||
{ | ||
"name": "GPThemes - ChatGPT 3.5 Restyled", | ||
"description": "Instantly refresh ChatGPT's UI with a modern and enhanced look using custom CSS", | ||
"author": "Marta Bires", | ||
"homepage_url": "https://github.com/itsmartashub/GPThemes", | ||
"version": "1.2.0", | ||
"manifest_version": 3, | ||
"host_permissions": ["https://chat.openai.com/*", "http://chat.openai.com/*"], | ||
"icons": { | ||
"16": "./assets/icons/16.png", | ||
"19": "./assets/icons/19.png", | ||
"32": "./assets/icons/32.png", | ||
"38": "./assets/icons/38.png", | ||
"48": "./assets/icons/48.png", | ||
"128": "./assets/icons/128.png" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": ["https://chat.openai.com/*", "http://chat.openai.com/*"], | ||
"css": ["./css/index.css"], | ||
"run_at": "document_start" | ||
} | ||
] | ||
} |
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