-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1478 from adaptlearning/develop
Develop
- Loading branch information
Showing
71 changed files
with
1,819 additions
and
608 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 |
---|---|---|
@@ -1,14 +1,22 @@ | ||
{ | ||
"root": "", | ||
"dataRoot": "data", | ||
"rootUrl": "http://localhost:5000/", | ||
"sessionSecret": "your-session-secret", | ||
"outputPlugin": "adapt", | ||
"auth": "local", | ||
"isProduction": true, | ||
"serverName": "localhost", | ||
"serverPort": 3000, | ||
"serverPort": 5000, | ||
"dbType": "mongoose", | ||
"dbName": "adapt-tenant-master", | ||
"dbHost": "localhost", | ||
"dbName": "adapt-builder-core", | ||
"dbPort": 27017, | ||
"dataRoot": "data", | ||
"tenantPrefix": "adapt-builder-tenant-", | ||
"sessionSecret": "your-secret-here", | ||
"auth": "local", | ||
"useffmpeg" : false, | ||
"outputPlugin" : "adapt" | ||
} | ||
"useSmtp": false, | ||
"smtpService": "", | ||
"smtpUsername": "", | ||
"smtpPassword": "", | ||
"fromAddress": "", | ||
"masterTenantName": "adapt-tenant-master", | ||
"masterTenantID": "" | ||
} |
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 |
---|---|---|
@@ -1,19 +1,30 @@ | ||
@import '../../../less/sharedStyles.less'; | ||
@import '../../../less/variables.less'; | ||
|
||
.permissions { | ||
.form-container-style; | ||
text-align:center; | ||
&-inner { | ||
padding:30px; | ||
} | ||
top: 20px; | ||
position: relative; | ||
|
||
h1 { | ||
font-size:21px; | ||
} | ||
} | ||
> .inner { | ||
padding: 40px; | ||
|
||
.permissions-icon i { | ||
font-size:56px; | ||
color:#ff5567; | ||
} | ||
.permissions-icon i { | ||
font-size:56px; | ||
color:@alert-color; | ||
} | ||
|
||
.title { | ||
margin: 20px 0; | ||
font-size: 16px; | ||
font-weight: 600; | ||
} | ||
|
||
.permissions-title { | ||
margin-top:20px; | ||
} | ||
.body { | ||
.inner { | ||
margin-bottom: 20px; | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,19 +1,14 @@ | ||
<div class="permissions-inner"> | ||
|
||
<div class="inner"> | ||
<div class="permissions-icon"> | ||
<i class="fa fa-space-shuttle"></i> | ||
<i class="fa fa-ban"></i> | ||
</div> | ||
|
||
<div class="permissions-body"> | ||
<h1 class="permissions-body-inner"> | ||
Access Denied | ||
</h1> | ||
<div class="title"> | ||
{{t 'app.errorpagenoaccesstitle'}} | ||
</div> | ||
|
||
<div class="permissions-body"> | ||
<div class="permissions-body-inner"> | ||
Seems you don't have the correct permissions to view this page. Would you like to return to the <a href="#/dashboard">Dashboard?</div> | ||
<div class="body"> | ||
<div class="inner"> | ||
{{t 'app.errorpagenoaccess'}} | ||
</div> | ||
<a href="#/dashboard" class="btn primary">{{t 'app.dashboard'}}</a> | ||
</div> | ||
|
||
</div> |
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
43 changes: 23 additions & 20 deletions
43
frontend/src/core/assetManagement/less/assetManagementNew.less
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 |
---|---|---|
@@ -1,23 +1,26 @@ | ||
.asset-management-new-asset-inner { | ||
padding:30px; | ||
} | ||
|
||
.progress-container { | ||
width:100px; | ||
height:15px; | ||
border:1px solid black; | ||
visibility:hidden; | ||
position:relative; | ||
} | ||
@import '../../../less/sharedStyles.less'; | ||
@import '../../../less/variables.less'; | ||
|
||
.progress-bar { | ||
width:0%; | ||
background-color:lightgray; | ||
height:100%; | ||
} | ||
.asset-management-new-asset { | ||
.form-container-style; | ||
|
||
.progress-percent { | ||
color:black; | ||
position:absolute; | ||
display:inline-block; | ||
.progress-container { | ||
position:relative; | ||
visibility:hidden; | ||
width:76px; | ||
height:10px; | ||
background-color: white; | ||
border:1px solid black; | ||
overflow: hidden; | ||
border-radius: 8px; | ||
margin: 10px 0; | ||
.progress-bar { | ||
width:0%; | ||
background-color: @primary-color; | ||
height:100%; | ||
.progress-percent { | ||
display: none; | ||
} | ||
} | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
frontend/src/core/assetManagement/templates/assetManagementNewAsset.hbs
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
13 changes: 5 additions & 8 deletions
13
frontend/src/core/assetManagement/templates/assetManagementNewAssetSidebar.hbs
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 |
---|---|---|
@@ -1,13 +1,10 @@ | ||
<div class="sidebar-item-inner"> | ||
<div class="sidebar-item-inner"> | ||
<div class="separator"></div> | ||
|
||
<button type="submit" class="primary-color asset-management-new-sidebar-save-button action-primary"> | ||
<span> | ||
{{!-- <i class="fa fa-save"></i> --}}{{t 'app.save'}} | ||
</span> | ||
<span>{{t 'app.save'}}</span> | ||
</button> | ||
|
||
<button type="button" class="asset-management-new-sidebar-cancel-button action-secondary"> | ||
<span> | ||
{{!-- <i class="fa fa-close"></i> --}}{{t 'app.cancel'}} | ||
</span> | ||
<span>{{t 'app.cancel'}}</span> | ||
</button> | ||
</div> |
21 changes: 0 additions & 21 deletions
21
frontend/src/core/editor/extensions/collections/extensionCollection.js
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.