-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable viewing of code in history page
Similar to questions page, there is a sliding window to view the last snapshot of the coding session before forfeit or submit. History table is now searchable. Profile page now properly subscribes to user$ and does not need to refresh. Known bugs: during a colab session, cannot view history page. No idea how to debug since it did not show errors or any console.log()
- Loading branch information
Showing
20 changed files
with
1,569 additions
and
1,616 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,39 @@ | ||
.sliding-panel { | ||
position: fixed; | ||
top: 0; | ||
right: -600px; /* Adjust the width as needed */ | ||
width: 600px; | ||
height: 100%; | ||
background-color: #181818 !important; | ||
color: var(--text-color); /* Use theme variable */ | ||
box-shadow: -2px 0 5px rgba(0,0,0,0.5); | ||
transition: right 0.3s ease; | ||
z-index: 1000; | ||
} | ||
|
||
.sliding-panel.open { | ||
right: 0; | ||
} | ||
|
||
.panel-header { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 1rem; | ||
background-color: #181818 !important; | ||
border-bottom: 1px solid #000000; /* Use theme variable */ | ||
} | ||
|
||
.panel-content { | ||
padding: 1rem; | ||
line-height: 1.6; /* Adjust line height for better readability */ | ||
color: #ffffff; /* Ensure text color is readable */ | ||
} | ||
|
||
.panel-content p { | ||
margin-bottom: 1rem; /* Add margin to paragraphs for spacing */ | ||
} | ||
|
||
tr:hover { | ||
background-color: rgba(0, 0, 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
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
Oops, something went wrong.