-
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.
Merge pull request #27 from Araxeus/v1.5.8
- Loading branch information
Showing
14 changed files
with
214 additions
and
249 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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# https://github.com/dependabot/dependabot-core/issues/6528#issuecomment-2013695799 | ||
name: 'Dependabot: Update bun.lockb' | ||
on: | ||
pull_request: | ||
paths: | ||
- 'package.json' | ||
permissions: | ||
contents: write | ||
jobs: | ||
update-bun-lockb: | ||
name: 'Update bun.lockb' | ||
if: github.actor == 'dependabot[bot]' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: oven-sh/setup-bun@v2 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- run: | | ||
bun install | ||
git add bun.lockb | ||
git config --global user.name 'dependabot[bot]' | ||
git config --global user.email 'dependabot[bot]@users.noreply.github.com' | ||
git commit --amend --no-edit | ||
git push --force |
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,5 +1,3 @@ | ||
{ | ||
"recommendations": [ | ||
"rome.rome" | ||
] | ||
"recommendations": ["biomejs.biome"] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"files": { | ||
"ignore": ["./node_modules/**", "./example/**", "./package.json"] | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"quoteStyle": "single" | ||
} | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "space", | ||
"indentWidth": 4 | ||
}, | ||
"json": { | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "space", | ||
"indentWidth": 2 | ||
}, | ||
"linter": { | ||
"enabled": true | ||
} | ||
}, | ||
"css": { | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "space", | ||
"indentWidth": 2 | ||
}, | ||
"linter": { | ||
"enabled": true | ||
} | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true, | ||
"nursery": { | ||
"recommended": true | ||
}, | ||
"style": { | ||
"useNumberNamespace": "off", | ||
"noParameterAssign": "off" | ||
} | ||
} | ||
} | ||
} |
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,79 +1,78 @@ | ||
body { | ||
background-color: rgba(0, 0, 0, 0.3); | ||
background-image: linear-gradient(315deg, #200000 0%, #13253a 74%); | ||
color: whitesmoke; | ||
background-color: rgba(0, 0, 0, 0.3); | ||
background-image: linear-gradient(315deg, #200000 0%, #13253a 74%); | ||
color: whitesmoke; | ||
} | ||
|
||
#label { | ||
text-align: center; | ||
text-align: center; | ||
} | ||
|
||
#container { | ||
background: rgba(0, 0, 0, 0.7); | ||
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); | ||
backdrop-filter: blur(10px); | ||
-webkit-backdrop-filter: blur(10px); | ||
border-radius: 10px; | ||
border: 1px solid rgba(80, 0, 0, 0.4); | ||
overflow: hidden; | ||
background: rgba(0, 0, 0, 0.7); | ||
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); | ||
backdrop-filter: blur(10px); | ||
-webkit-backdrop-filter: blur(10px); | ||
border-radius: 10px; | ||
border: 1px solid rgba(80, 0, 0, 0.4); | ||
overflow: hidden; | ||
} | ||
|
||
#data, | ||
.keybindData { | ||
background: unset; | ||
color: whitesmoke; | ||
border: 1px solid rgb(54, 54, 54); | ||
background: unset; | ||
color: whitesmoke; | ||
border: 1px solid rgb(54, 54, 54); | ||
} | ||
|
||
#data:hover { | ||
border: 1px solid rgb(85, 85, 85); | ||
border: 1px solid rgb(85, 85, 85); | ||
} | ||
|
||
#data:focus { | ||
outline: unset; | ||
border: 1px solid rgb(85, 85, 85); | ||
outline: unset; | ||
border: 1px solid rgb(85, 85, 85); | ||
} | ||
|
||
#ok:hover, | ||
#ok:focus, | ||
#custom:hover, | ||
#custon:focus | ||
#cancel:hover, | ||
#custon:focus #cancel:hover, | ||
#cancel:focus { | ||
outline: rgba(60, 0, 0, 0.4) solid 2px; | ||
outline: rgba(60, 0, 0, 0.4) solid 2px; | ||
} | ||
|
||
#ok, | ||
#cancel, | ||
#custom, | ||
.clearButton { | ||
background-color: rgb(0, 0, 0); | ||
color: whitesmoke; | ||
background-color: rgb(0, 0, 0); | ||
color: whitesmoke; | ||
} | ||
|
||
/* For Counter Prompt */ | ||
.minus, | ||
.plus { | ||
background: rgb(0, 0, 0); | ||
background: rgb(0, 0, 0); | ||
} | ||
|
||
/* For Select Prompt */ | ||
option { | ||
background-color: #07070C; | ||
background-color: #07070c; | ||
} | ||
|
||
/* For Keybind Prompt */ | ||
.clearButton:focus { | ||
outline: none; | ||
outline: none; | ||
} | ||
.clearButton:hover { | ||
background-color: rgb(5, 5, 5); | ||
background-color: rgb(5, 5, 5); | ||
} | ||
.keybindData:hover { | ||
border: 1px solid rgb(56, 0, 0); | ||
border: 1px solid rgb(56, 0, 0); | ||
} | ||
|
||
.keybindData:focus { | ||
outline: 3px solid #1E0919; | ||
border: 1px solid rgb(56, 0, 0); | ||
outline: 3px solid #1e0919; | ||
border: 1px solid rgb(56, 0, 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.