Skip to content

Commit

Permalink
Merge pull request #2536 from gocodebox/dev
Browse files Browse the repository at this point in the history
Release Version 7.4.1
  • Loading branch information
eri-trabiccolo authored Oct 6, 2023
2 parents 24b3680 + 818a06d commit ce35dbe
Show file tree
Hide file tree
Showing 26 changed files with 1,115 additions and 102 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
LifterLMS Changelog
===================

v7.4.1 - 2023-10-06
-------------------

##### New Features

+ Added new admin Resources page.

##### Bug Fixes

+ Fixed possible issues when cloning a course containing a quiz built with the Advanced Quizzes addon, after disabling it.

##### Developer Notes

+ Moved attempt randomization logic into the new static method `LLMS_Quiz_Attempt::randomize_attempt_questions()`.
+ Added filter hook `llms_quiz_attempt_questions_array` to allow filtering the quiz attempt's question arrays.


v7.4.0 - 2023-10-03
-------------------

Expand Down
118 changes: 118 additions & 0 deletions assets/css/admin-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -4221,6 +4221,124 @@ body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post
display: block;
}

.wrap.llms-resources .llms-inside-wrap {
padding-top: 30px;
}
.wrap.llms-resources #poststuff #post-body.columns-2 {
margin-left: 350px;
}
.wrap.llms-resources #poststuff #post-body.columns-2 #side-sortables {
width: 330px;
}
@media only screen and (max-width: 850px) {
.wrap.llms-resources #poststuff #post-body.columns-2 #side-sortables {
width: auto;
}
}
.wrap.llms-resources #poststuff #postbox-container-1 {
float: left;
margin-left: -350px;
width: 330px;
}
.wrap.llms-resources #poststuff h2 {
padding: 12px 20px;
}
.wrap.llms-resources #poststuff .postbox {
background-color: #FFF;
border: none;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}
.wrap.llms-resources #poststuff .postbox .postbox-header {
border-bottom-color: #efefef;
}
.wrap.llms-resources #poststuff .postbox .inside {
margin: 0;
padding: 20px;
}
.wrap.llms-resources #llms_dashboard_welcome_video .llms-welcome-video p {
font-size: 15px;
line-height: 1.5;
margin: 0 0 40px 0;
}
.wrap.llms-resources #llms_dashboard_welcome_video .llms-welcome-video .llms-welcome-video-container {
height: 0;
overflow: hidden;
padding-top: 30px;
padding-bottom: 56.25%;
position: relative;
}
.wrap.llms-resources #llms_dashboard_welcome_video .llms-welcome-video .llms-welcome-video-container iframe,
.wrap.llms-resources #llms_dashboard_welcome_video .llms-welcome-video .llms-welcome-video-container object,
.wrap.llms-resources #llms_dashboard_welcome_video .llms-welcome-video .llms-welcome-video-container embed {
right: 0;
height: 100%;
position: absolute;
top: 0;
width: 100%;
}
.wrap.llms-resources #llms_dashboard_getting_started ul {
margin: 0 0 20px 0;
}
.wrap.llms-resources #llms_dashboard_getting_started ul li {
font-size: 15px;
line-height: 1.5;
margin-bottom: 15px;
}
.wrap.llms-resources #llms_dashboard_getting_started .llms-button-primary {
display: block;
margin-top: auto;
max-width: 300px;
text-align: center;
}
.wrap.llms-resources #llms_dashboard_resource_links ul {
list-style: disc;
margin: 5px 20px 0 0;
}
.wrap.llms-resources #llms_dashboard_resource_links ul li {
font-size: 15px;
line-height: 1.5;
}
.wrap.llms-resources #llms_dashboard_resource_links .llms-resource-links {
display: grid;
grid-template-columns: 1fr;
grid-gap: 60px;
}
.wrap.llms-resources #llms_dashboard_resource_links .llms-resource-links a {
display: inline-block;
}
.wrap.llms-resources #llms_dashboard_resource_links .llms-resource-links .llms-list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.wrap.llms-resources #llms_dashboard_resource_links .llms-resource-links .llms-list h3 {
margin: 0 0 10px 0;
}
.wrap.llms-resources #llms_dashboard_resource_links .llms-resource-links .llms-list h3 .dashicons {
color: #AAA;
}
.wrap.llms-resources #llms_dashboard_resource_links .llms-resource-links .llms-list ul {
margin-bottom: 20px;
}
.wrap.llms-resources #llms_dashboard_resource_links .llms-resource-links .llms-list .llms-button-primary,
.wrap.llms-resources #llms_dashboard_resource_links .llms-resource-links .llms-list .llms-button-secondary,
.wrap.llms-resources #llms_dashboard_resource_links .llms-resource-links .llms-list .llms-button-action {
display: block;
margin-top: auto;
max-width: 300px;
text-align: center;
}
@media only screen and (min-width: 782px) {
.wrap.llms-resources #llms_dashboard_resource_links .llms-resource-links {
grid-template-columns: 1fr 1fr 1fr;
}
}

.llms-remarks .llms-remarks-field {
height: 120px;
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion assets/css/admin-rtl.min.css

Large diffs are not rendered by default.

118 changes: 118 additions & 0 deletions assets/css/admin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/css/admin.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/maps/css/admin.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/maps/css/admin.min.css.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/scss/admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@

@import "admin/dashboard";
@import "admin/dashboard-widget";
@import "admin/resources";

@import "admin/quiz-attempt-review";

Expand Down
Loading

0 comments on commit ce35dbe

Please sign in to comment.