Fix styling
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
parent
0428254ed6
commit
da67264a23
|
@ -370,6 +370,7 @@ class AppSettingsController extends Controller {
|
||||||
if($app['id'] === $identifier) {
|
if($app['id'] === $identifier) {
|
||||||
if($newCategory) {
|
if($newCategory) {
|
||||||
$app['newCategory'] = true;
|
$app['newCategory'] = true;
|
||||||
|
$app['bundleId'] = $bundle->getIdentifier();
|
||||||
$app['categoryName'] = $bundle->getName();
|
$app['categoryName'] = $bundle->getName();
|
||||||
}
|
}
|
||||||
$newCategory = false;
|
$newCategory = false;
|
||||||
|
|
|
@ -518,6 +518,12 @@ input.userFilter {width: 200px;}
|
||||||
|
|
||||||
|
|
||||||
/* APPS */
|
/* APPS */
|
||||||
|
#apps-list > h2 {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 50px;
|
||||||
|
padding-left: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
#app-content > svg.app-filter {
|
#app-content > svg.app-filter {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -74,7 +74,7 @@ script(
|
||||||
|
|
||||||
<script id="app-template" type="text/x-handlebars">
|
<script id="app-template" type="text/x-handlebars">
|
||||||
{{#if newCategory}}
|
{{#if newCategory}}
|
||||||
<br/><h2>{{categoryName}}</h2>
|
<h2>{{categoryName}} <input class="enable" type="submit" data-bundleid="{{bundleId}}" data-active="true" value="<?php p($l->t('Enable all'));?>"/></h2>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<div class="section" id="app-{{id}}">
|
<div class="section" id="app-{{id}}">
|
||||||
{{#if preview}}
|
{{#if preview}}
|
||||||
|
|
Loading…
Reference in New Issue