CSS chnages

This commit is contained in:
Kane York 2015-07-01 12:31:55 -07:00
parent 88d7fa955a
commit b68ca164dd
2 changed files with 5 additions and 8 deletions

View File

@ -22,7 +22,7 @@
<hr> <hr>
<div class="query-edit"> <div class="query-edit {{if editName "editing"}}">
{{partial "admin/plugins-explorer-show" model=selectedItem}} {{partial "admin/plugins-explorer-show" model=selectedItem}}
</div> </div>

View File

@ -1,12 +1,6 @@
.https-warning { .https-warning {
color: $danger; color: $danger;
} }
.query-list {
margin: 10px 0;
}
.query-create {
margin: 10px 0;
}
.query-edit { .query-edit {
.name h2 { .name h2 {
@ -15,6 +9,9 @@
.desc textarea { .desc textarea {
width: 200px; width: 200px;
} }
&:not(.editing) .desc {
margin: 10px 0;
}
.sql textarea { .sql textarea {
width: calc(100% - 8px); width: calc(100% - 8px);
height: 100px; height: 100px;
@ -49,6 +46,6 @@
} }
} }
.query-list, .query-edit, .query-results, .query-params, .https-warning { .query-list, .query-create, .query-edit, .query-results, .query-params, .https-warning {
margin: 10px 0; margin: 10px 0;
} }