minor UI fixes for site customisations
This commit is contained in:
parent
e7d6b25998
commit
31bcabd5e1
|
@ -70,7 +70,10 @@ Discourse.SiteCustomization = Discourse.Model.extend({
|
|||
data: { site_customization: data },
|
||||
type: this.id ? 'PUT' : 'POST'
|
||||
}).then(function (result) {
|
||||
if (!siteCustomization.id) { siteCustomization.set('id', result.id); }
|
||||
if (!siteCustomization.id) {
|
||||
siteCustomization.set('id', result.id);
|
||||
siteCustomization.set('key', result.key);
|
||||
}
|
||||
siteCustomization.set('savingStatus', Em.String.i18n('saved'));
|
||||
siteCustomization.set('saving',false);
|
||||
siteCustomization.startTrackingChanges();
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
{{aceEditor content=header mode="html"}}
|
||||
{{/if}}
|
||||
{{#if view.stylesheetActive}}
|
||||
{{aceEditor content=stylesheet mode="css"}}
|
||||
{{aceEditor content=stylesheet mode="scss"}}
|
||||
{{/if}}
|
||||
{{/with}}
|
||||
<br>
|
||||
|
|
|
@ -218,10 +218,7 @@ table {
|
|||
float: left;
|
||||
}
|
||||
.content-list ul {
|
||||
min-height: 700px;
|
||||
}
|
||||
a {
|
||||
cursor: pointer;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.current-style {
|
||||
.delete-link {
|
||||
|
@ -240,7 +237,7 @@ table {
|
|||
}
|
||||
.ace-wrapper {
|
||||
position: relative;
|
||||
height: 600px;
|
||||
height: 400px;
|
||||
width: 100%;
|
||||
}
|
||||
.ace_editor {
|
||||
|
@ -252,6 +249,7 @@ table {
|
|||
}
|
||||
.status-actions {
|
||||
float: right;
|
||||
margin-top: 7px;
|
||||
span {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
@ -259,9 +257,6 @@ table {
|
|||
.buttons {
|
||||
float: left;
|
||||
width: 200px;
|
||||
button, a , span{
|
||||
float: left;
|
||||
}
|
||||
.saving {
|
||||
padding: 5px 0 0 0;
|
||||
margin-left: 10px;
|
||||
|
|
Loading…
Reference in New Issue