Skip to content

Commit

Permalink
Merge pull request #231 from aopell/develop
Browse files Browse the repository at this point in the history
Version 6.7
  • Loading branch information
aopell authored Dec 3, 2020
2 parents 0fcee22 + b50b877 commit beef032
Show file tree
Hide file tree
Showing 12 changed files with 869 additions and 211 deletions.
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Schoology Plus Discord Server
url: https://discord.schoologypl.us
about: Please use our Discord server for feature requests, getting help, or just to chat with other members.
- name: Schoology Plus Documentation
url: https://schoologypl.us/docs
about: Use this help site to learn more about using What-If Grades and our Theme Editor
63 changes: 58 additions & 5 deletions css/all.css
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,16 @@ video.easter-egg {
}
}

@keyframes rotation {
from {
transform: rotate(0deg);
}

to {
transform: rotate(359deg);
}
}

.close {
color: rgba(255, 255, 255, 0.8);
float: right;
Expand Down Expand Up @@ -694,6 +704,12 @@ a._3_bfp {
content: "eta Enabled";
}

.splus-beta-container:hover .splus-beta-tag::before {
content: "⚙";
float: right;
padding-left: 5px;
}

.splus-beta-container div {
display: none;
}
Expand All @@ -714,12 +730,49 @@ a._3_bfp {
display: block !important;
}

.splus-mark-completed-check .splus-assignment-complete .infotip a[href]::after {
content: "✔" !important;
float: right !important;
.upcoming-list:not(.splus-mark-completed-check) .splus-completed-check-indicator {
display: none !important;
}

.splus-mark-completed-check .infotip {
width: 90% !important;
}

/* .splus-completed-check-indicator is a <button> */
.splus-mark-completed-check .splus-completed-check-indicator {
max-width: 10%;
display: inline-block;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
font-size: 200% !important;
background: none;
border: none;
margin: 0;
padding: 0;
cursor: pointer;
}

.splus-mark-completed-check .splus-assignment-notcomplete .splus-completed-check-indicator::after {
color: var(--muted-text) !important;
content: "▢";
}

.splus-mark-completed-check .splus-assignment-complete .splus-completed-check-indicator::after {
color: green !important;
font-size: 150% !important;
display: block !important;
content: "✔";
}

/* "loading" state to avoid vertical scrolling when transitioning from 'forced completed' to 'query state' */
/* animated spin. default center,center rotate origin appears to be slightly off, but not likely to be noticeable for <1s load times. */
.splus-mark-completed-check .course-event:not(.splus-assignment-complete):not(.splus-assignment-notcomplete) .splus-completed-check-indicator {
animation: rotation 0.8s infinite linear;
}

.splus-mark-completed-check .course-event:not(.splus-assignment-complete):not(.splus-assignment-notcomplete) .splus-completed-check-indicator::after {
color: var(--muted-text) !important;
content: "⚆";
}

.splus-mark-completed-strikethrough .splus-assignment-complete .infotip a[href] {
Expand Down
Loading

0 comments on commit beef032

Please sign in to comment.