FIX: reset button wasn't working

This commit is contained in:
OsamaSayegh 2018-05-17 11:51:25 +03:00
parent 35036dfee2
commit 94c583ba2d
8 changed files with 8922 additions and 6511 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -29,6 +29,7 @@ header {
font-size: 2em;
}
clear: both;
overflow: auto;
}
div.logs {
@ -110,7 +111,8 @@ button.unlock {
}
#banner {
margin-bottom: 10px;
margin-bottom: 20px;
margin-top: 15px;
padding: 10px;
border-radius: 5px;
background: scale-color($tertiary, $lightness: 90%);
@ -123,6 +125,16 @@ button.unlock {
}
}
th {
border-top: none;
div.progress {
margin-top: 20px;
margin-bottom: 20px;
}
th {
border-top: none;
}
ul.nav-tabs {
width: 100%;
margin-bottom: 15px;
}

File diff suppressed because it is too large Load Diff

View File

@ -17,15 +17,15 @@
{{/if}}
<ul class="nav nav-tabs">
{{#link-to "index" tagName="li"}}
{{#link-to "index"}}Versions{{/link-to}}
{{#link-to "index" tagName="li" class="nav-item"}}
{{#link-to "index" class="nav-link"}}Versions{{/link-to}}
{{/link-to}}
{{#link-to "processes" tagName="li"}}
{{#link-to "processes"}}Processes{{/link-to}}
{{#link-to "processes" tagName="li" class="nav-item"}}
{{#link-to "processes" class="nav-link"}}Processes{{/link-to}}
{{/link-to}}
<li><a href={{returnToSiteUrl}}>Return to site</a></li>
<li><a href={{backupsUrl}}>Backups</a></li>
<li class="nav-item"><a class="nav-link" href={{returnToSiteUrl}}>Return to site</a></li>
<li class="nav-item"><a class="nav-link" href={{backupsUrl}}>Backups</a></li>
</ul>
{{outlet}}

View File

@ -1 +1 @@
<div class="progress-bar" style={{barStyle}}></div>
<div class="progress-bar progress-bar-striped" style={{barStyle}}></div>

View File

@ -25,7 +25,8 @@ module.exports = function(defaults) {
// along with the exports of each module as its value.
app.import("bower_components/bootbox/bootbox.js");
app.import("bower_components/message-bus/assets/message-bus.js");
app.import("bower_components/bootstrap/js/modal.js");
app.import("bower_components/bootstrap/js/dist/modal.js");
app.import("bower_components/bootstrap/js/dist/util.js");
return app.toTree();
};