Merge pull request #4 from LQDJudge/master

Merge
This commit is contained in:
Van Duc Le 2023-09-17 19:48:10 -05:00 committed by GitHub
commit e3d8852d8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 1201 additions and 1139 deletions

View file

@ -182,6 +182,7 @@
display: flex;
align-items: center;
border-radius: .5em;
color: black;
.sidebar-icon {
font-size: large;
@ -196,10 +197,12 @@
.left-sidebar-item:hover {
background-color: #e3e3e3;
cursor: pointer;
color: black;
}
.left-sidebar-item.active:hover {
background-color: $theme_color;
color: white;
}
.sidebar-icon {

View file

@ -387,9 +387,8 @@ function onWindowReady() {
});
$('a').click(function() {
$("#loading-bar").show();
$("#loading-bar").animate({ width: "100%" }, 1500, function() {
$(this).hide();
$("#loading-bar").css({ width: 0});
$("#loading-bar").animate({ width: "100%" }, 2000, function() {
$(this).hide().css({ width: 0});
});
});
}

File diff suppressed because one or more lines are too long

View file

@ -47,4 +47,9 @@
border: 1px #ccc solid;
margin-bottom: 3em;
border-radius: 5px;
}
.org-help-text {
display: block;
color: gray;
}