-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Options * Finish Options Update * Update Dependencies * Cleanup * Add Pin Icon Notification on Install
- Loading branch information
Showing
12 changed files
with
366 additions
and
96 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,29 @@ | ||
name: "⚠️ Report an Issue" | ||
description: "Something Not Working Right? Please let us know..." | ||
labels: ["bug"] | ||
assignees: | ||
- smashedr | ||
|
||
body: | ||
- type: textarea | ||
id: description | ||
validations: | ||
required: true | ||
attributes: | ||
label: Details | ||
description: Please describe the issue you are experiencing and how to reproduce. | ||
placeholder: Provide as many details as you can... | ||
|
||
- type: textarea | ||
id: logs | ||
validations: | ||
required: true | ||
attributes: | ||
label: Support Information | ||
description: Open the extension options, scroll to the bottom, click Copy Support Information and paste below. | ||
render: shell | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
All issues/bugs that we can verify will be fixed. Thank you for taking the time to make this report! |
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,17 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: '💡 Request a Feature' | ||
about: Request a New Feature or Enhancement in the Discussions. | ||
url: https://github.com/cssnr/asn-plus/discussions/new?category=feature-requests | ||
|
||
- name: '❔ Ask a Question' | ||
about: Ask a General Question or start a Discussions. | ||
url: https://github.com/cssnr/asn-plus/discussions/new?category=q-a | ||
|
||
- name: '💬 Join Discord' | ||
about: Chat with us about Issues, Features, Questions and More. | ||
url: https://discord.gg/wXy6m2X8wY | ||
|
||
- name: '📝 Submit Feedback' | ||
about: Send General Feedback. | ||
url: https://cssnr.github.io/feedback/?app=ASN%20Plus |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,9 +1,78 @@ | ||
/* CSS for options.html */ | ||
|
||
.card { | ||
min-width: 380px; | ||
body { | ||
min-width: 400px; | ||
} | ||
|
||
.toast { | ||
max-width: 260px; | ||
#options-wrapper { | ||
max-width: 800px; | ||
} | ||
|
||
.blur { | ||
backdrop-filter: blur(6px); | ||
} | ||
|
||
[data-bs-theme='dark'] .glass-outline { | ||
background-color: rgba(0 0 0 / 50%); | ||
border: 1px solid rgba(255 255 255 / 15%); | ||
filter: drop-shadow(15px 15px 12px #000); | ||
} | ||
|
||
[data-bs-theme='light'] .glass-outline { | ||
background-color: rgba(255 255 255 / 60%); | ||
border: 1px solid rgba(0 0 0 / 17.5%); | ||
} | ||
|
||
[data-bs-theme='dark'] .form-control, | ||
[data-bs-theme='dark'] .glass-bg { | ||
background-color: rgba(0 0 0 / 50%); | ||
} | ||
|
||
[data-bs-theme='light'] .form-control, | ||
[data-bs-theme='light'] .glass-bg { | ||
background-color: rgba(255 255 255 / 50%); | ||
} | ||
|
||
.table { | ||
--bs-table-bg: initial; | ||
} | ||
|
||
#pin-notice { | ||
position: fixed; | ||
right: 0; | ||
top: 0; | ||
cursor: pointer; | ||
user-select: none; | ||
} | ||
|
||
[data-bs-theme='dark'] #pin-notice { | ||
text-shadow: | ||
0 0 3px #000, | ||
0 0 6px #000, | ||
0 0 9px #000, | ||
0 0 12px #000; | ||
} | ||
|
||
[data-bs-theme='light'] #pin-notice { | ||
text-shadow: | ||
0 0 3px #fff, | ||
0 0 6px #fff, | ||
0 0 9px #fff, | ||
0 0 12px #fff; | ||
} | ||
|
||
.bounce { | ||
animation: bounce 4s infinite; | ||
} | ||
|
||
@keyframes bounce { | ||
0% { | ||
top: 0; | ||
} | ||
50% { | ||
top: 30px; | ||
} | ||
100% { | ||
top: 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
Oops, something went wrong.