-
Notifications
You must be signed in to change notification settings - Fork 49
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
30 changed files
with
12,241 additions
and
5,052 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Continuous Integration | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
# Make sure the actual branch is checked out when running on pull requests | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Prettify code | ||
uses: creyD/[email protected] | ||
with: | ||
prettier_version: 3.3.3 | ||
prettier_options: --write |
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 |
---|---|---|
|
@@ -6,3 +6,6 @@ | |
# PyCharm | ||
.idea/ | ||
*.iml | ||
|
||
# Node.js | ||
node_modules/ |
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 @@ | ||
npx lint-staged |
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 @@ | ||
{} |
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,38 @@ | ||
.ccf-filter { | ||
position: fixed; | ||
top: 120px; | ||
right: 30px; | ||
z-index: 9999; | ||
background: #fff; | ||
border: 1px solid #ddd; | ||
border-radius: 8px; | ||
padding: 12px; | ||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.ccf-filter button { | ||
display: block; | ||
width: 100%; | ||
margin: 4px 0; | ||
padding: 8px 16px; | ||
border: 1px solid #ddd; | ||
border-radius: 4px; | ||
background: #fff; | ||
cursor: pointer; | ||
font-size: 14px; | ||
transition: all 0.2s ease; | ||
} | ||
|
||
.ccf-filter button:hover { | ||
background: #f5f5f5; | ||
} | ||
|
||
.ccf-filter button.active { | ||
background: #4285f4; | ||
color: #fff; | ||
border-color: #4285f4; | ||
} | ||
|
||
.paper-hidden { | ||
display: none !important; | ||
} |
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,50 +1,58 @@ | ||
.ccf-rank { | ||
display: inline-block; | ||
height: 18.35px; | ||
font-size: 12px; | ||
font-weight: bold; | ||
white-space: nowrap; | ||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); | ||
color: #ffffff; | ||
border-radius: 9px; | ||
padding: 1px 8px; | ||
margin-left: 5px; | ||
margin-right: 5px; | ||
display: inline-block; | ||
height: 18.35px; | ||
font-size: 12px; | ||
font-weight: bold; | ||
white-space: nowrap; | ||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); | ||
color: #ffffff; | ||
border-radius: 9px; | ||
padding: 1px 8px; | ||
margin-left: 5px; | ||
margin-right: 5px; | ||
} | ||
|
||
.ccf-a { | ||
background-color: #dc3545; | ||
background-color: #e15f37; | ||
} | ||
|
||
.ccf-b { | ||
background-color: #ffc107; | ||
background-color: #f5bd42; | ||
} | ||
|
||
.ccf-c { | ||
background-color: #28a745; | ||
background-color: #8eba3a; | ||
} | ||
|
||
.ccf-e { | ||
background-color: #4aa3ea; | ||
} | ||
|
||
.ccf-p { | ||
background-color: #6c757d; | ||
} | ||
|
||
.ccf-none { | ||
background-color: #6c757d; | ||
background-color: #6c757d; | ||
} | ||
|
||
.ccf-tooltip { | ||
display: inline-block; | ||
position: relative; | ||
display: inline-block; | ||
position: relative; | ||
} | ||
|
||
.ccf-tooltip .ccf-tooltiptext { | ||
visibility: hidden; | ||
background-color: #007bff; | ||
border-radius: 6px; | ||
padding: 5px 5px; | ||
bottom: 100%; | ||
left: 50%; | ||
position: absolute; | ||
z-index: 980624; | ||
margin-left: -60px; | ||
visibility: hidden; | ||
background-color: #007bff; | ||
border-radius: 6px; | ||
padding: 5px 5px; | ||
bottom: 100%; | ||
left: 50%; | ||
position: absolute; | ||
z-index: 980624; | ||
margin-left: -60px; | ||
} | ||
|
||
.ccf-tooltip:hover .ccf-tooltiptext { | ||
visibility: visible; | ||
visibility: visible; | ||
} |
Oops, something went wrong.