More flexbox implementations

This commit is contained in:
Dennis Eichhorn 2017-01-29 12:35:33 +01:00
parent 055c19ab2f
commit da6b156fac
2 changed files with 129 additions and 109 deletions

View File

@ -19,16 +19,22 @@
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<section class="box w-100"> <div class="row">
<div class="col-xs-12">
<section class="box wf-100">
<div class="inner"> <div class="inner">
<form id="fEditor" method="POST" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/editor?csrf={$CSRF}'); ?>"> <form id="fEditor" method="POST" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/editor?csrf={$CSRF}'); ?>">
<input name="title" type="text" class="wf-100"> <input name="title" type="text" class="wf-100">
<input type="submit" value="<?= $this->getText('Save'); ?>"> <input type="submit" value="<?= $this->getText('Save'); ?>">
</form> </form>
</div> </div>
</section> </section>
</div>
</div>
<div class="box w-100"> <div class="row">
<div class="col-xs-12">
<div class="box wf-100">
<div class="tabular"> <div class="tabular">
<ul class="tab-links"> <ul class="tab-links">
<li><label for="c-tab-1"><?= $this->getText('Start') ?></label> <li><label for="c-tab-1"><?= $this->getText('Start') ?></label>
@ -85,9 +91,13 @@ echo $this->getData('nav')->render(); ?>
</div> </div>
</div> </div>
</div> </div>
</div>
</div>
</div> </div>
<div class="box w-100"> <div class="row">
<div class="col-xs-12">
<div class="box wf-100">
<div class="tabular"> <div class="tabular">
<ul class="tab-links"> <ul class="tab-links">
<li><label for="c-tab2-1"><?= $this->getText('Text') ?></label> <li><label for="c-tab2-1"><?= $this->getText('Text') ?></label>
@ -103,9 +113,13 @@ echo $this->getData('nav')->render(); ?>
</div> </div>
</div> </div>
</div> </div>
</div>
</div>
</div> </div>
<section class="box w-100"> <div class="row">
<div class="col-xs-12">
<section class="box wf-100">
<div class="inner"> <div class="inner">
<form> <form>
<table class="layout"> <table class="layout">
@ -118,4 +132,6 @@ echo $this->getData('nav')->render(); ?>
</table> </table>
</form> </form>
</div> </div>
</section> </section>
</div>
</div>

View File

@ -25,7 +25,9 @@ $footerView->setPage(1);
$docs = $this->getData('docs'); $docs = $this->getData('docs');
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<div class="box"> <div class="row">
<div class="col-xs-12">
<div class="box wf-100">
<table class="table"> <table class="table">
<caption><?= $this->getText('Documents'); ?></caption> <caption><?= $this->getText('Documents'); ?></caption>
<thead> <thead>
@ -48,4 +50,6 @@ echo $this->getData('nav')->render(); ?>
<tr><td colspan="5" class="empty"><?= $this->getText('Empty', 0, 0); ?> <tr><td colspan="5" class="empty"><?= $this->getText('Empty', 0, 0); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div>
</div>
</div> </div>