Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSS suggested changes for Editing Checklist options screen #71

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,28 @@ ol.checklist .teachercomment {
margin: 0 0 0 20px;
}

/* Style Background Colors of Disabled Checklist Items */
ol.checklist .itemauto.itemdisabled {
text-decoration: line-through;
background-color: #bcc4c4;
color: #666;
}

ol.checklist .itemauto {
background-color: #d6e6e7;
}

/* Style Background Colors of Enabled Checklist Items */
#page-mod-checklist-edit ol.checklist .itemauto {
background-color: initial;
}


/* Add Row Color on Hover */
#page-mod-checklist-edit ol.checklist li:hover {
background: #d6e6e7;
}

ol.checklist li .itemuserdate {
background-color: #b0ffb0;
position: absolute;
Expand Down Expand Up @@ -269,6 +282,26 @@ ol.checklist label {
display: inline;
}

/* Padding Between Checkbox and Label */
#page-mod-checklist-edit li label {
margin-left: 10px!important;
}

/* Right - Align Most Activity Icons */
#page-mod-checklist-edit li img.icon {
float: right;
}

/* Reduce Width between Labels and Icons*/
#page-mod-checklist-edit ol form {
width: max-content;
}

/* Padding Under Show/Hide Button */
.checklist-extendedit .btn {
margin-bottom: 15px;
}

.checklist-extendedit .checklist-edititem {
border: 1px solid #ddd;
padding: 10px 0 5px;
Expand Down