Skip to content

Commit

Permalink
style: Adjust text shadow in option page
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhua committed Dec 16, 2024
1 parent b02c848 commit 95a6d63
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions css/options.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ body {
#logo {
background-repeat: no-repeat;
font-size: x-large;
text-shadow: 0 0 20px gray;
text-shadow: 0 0 20px #aaa;
}

#version {
Expand Down Expand Up @@ -92,7 +92,7 @@ div[id^="markRpc"] {
border-top: 1px solid #ddd;
border-radius: 0 0 6px 6px;
box-shadow: inset 0 1px 0 #fff;
text-shadow: 0 0 15px black;
text-shadow: 0 0 15px #79a4d3;
transition: background-color .3s;
}

Expand Down
2 changes: 1 addition & 1 deletion js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ var Configs =
}).catch(error => {
let str = chrome.i18n.getMessage("uploadConfigFailed");
if (error.message.includes("QUOTA_BYTES_PER_ITEM")) {
/* There must be too much BT trackers in the Aria2 settings */
/* There must be too many BT trackers in the Aria2 settings */
error.message = "Exceeded Quota (8KB). Please refine the Aria2 BT trackers."
}
Configs.notifySyncResult(`${str} (${error.message})`, "alert-danger", 5000);
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "__MSG_appName__",
"short_name": "A2E",
"version": "2.5.5",
"version": "2.5.6",
"manifest_version": 3,
"minimum_chrome_version": "116.0.0",
"default_locale": "en",
Expand Down

0 comments on commit 95a6d63

Please sign in to comment.