Merge pull request #220 from Wautvda/dev-responsive
improve responsiveness of admin
This commit is contained in:
@ -12,6 +12,7 @@
|
|||||||
- Fix #169: Fix bug in ReCaptchaComponent (BuTaMuH)
|
- Fix #169: Fix bug in ReCaptchaComponent (BuTaMuH)
|
||||||
- Fix #168: Fix spelling in russian language (EvgenyOrekhov)
|
- Fix #168: Fix spelling in russian language (EvgenyOrekhov)
|
||||||
- Fix #195: UserCreateService: check if we're from web before setting flash message (maxxer)
|
- Fix #195: UserCreateService: check if we're from web before setting flash message (maxxer)
|
||||||
|
- Enh: Improvements to the admin responsive design (wautvda)
|
||||||
|
|
||||||
## 1.1.4 - February 19, 2018
|
## 1.1.4 - February 19, 2018
|
||||||
- Enh: Check enableEmailConfirmation on registration (faenir)
|
- Enh: Check enableEmailConfirmation on registration (faenir)
|
||||||
|
|||||||
@ -30,7 +30,7 @@ $module = Yii::$app->getModule('user');
|
|||||||
<?php $this->beginContent('@Da/User/resources/views/shared/admin_layout.php') ?>
|
<?php $this->beginContent('@Da/User/resources/views/shared/admin_layout.php') ?>
|
||||||
|
|
||||||
<?php Pjax::begin() ?>
|
<?php Pjax::begin() ?>
|
||||||
|
<div class="table-responsive">
|
||||||
<?= GridView::widget(
|
<?= GridView::widget(
|
||||||
[
|
[
|
||||||
'dataProvider' => $dataProvider,
|
'dataProvider' => $dataProvider,
|
||||||
@ -191,7 +191,7 @@ $module = Yii::$app->getModule('user');
|
|||||||
],
|
],
|
||||||
]
|
]
|
||||||
); ?>
|
); ?>
|
||||||
|
</div>
|
||||||
<?php Pjax::end() ?>
|
<?php Pjax::end() ?>
|
||||||
|
|
||||||
<?php $this->endContent() ?>
|
<?php $this->endContent() ?>
|
||||||
|
|||||||
@ -24,7 +24,7 @@ $this->params['breadcrumbs'][] = $this->title;
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<?php $this->beginContent('@Da/User/resources/views/shared/admin_layout.php') ?>
|
<?php $this->beginContent('@Da/User/resources/views/shared/admin_layout.php') ?>
|
||||||
|
<div class="table-responsive">
|
||||||
<?= GridView::widget(
|
<?= GridView::widget(
|
||||||
[
|
[
|
||||||
'dataProvider' => $dataProvider,
|
'dataProvider' => $dataProvider,
|
||||||
@ -65,4 +65,5 @@ $this->params['breadcrumbs'][] = $this->title;
|
|||||||
],
|
],
|
||||||
]
|
]
|
||||||
) ?>
|
) ?>
|
||||||
|
</div>
|
||||||
<?php $this->endContent() ?>
|
<?php $this->endContent() ?>
|
||||||
|
|||||||
@ -25,7 +25,7 @@ $this->params['breadcrumbs'][] = $this->title;
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<?php $this->beginContent('@Da/User/resources/views/shared/admin_layout.php') ?>
|
<?php $this->beginContent('@Da/User/resources/views/shared/admin_layout.php') ?>
|
||||||
|
<div class="table-responsive">
|
||||||
<?= GridView::widget(
|
<?= GridView::widget(
|
||||||
[
|
[
|
||||||
'dataProvider' => $dataProvider,
|
'dataProvider' => $dataProvider,
|
||||||
@ -66,5 +66,5 @@ $this->params['breadcrumbs'][] = $this->title;
|
|||||||
],
|
],
|
||||||
]
|
]
|
||||||
) ?>
|
) ?>
|
||||||
|
</div>
|
||||||
<?php $this->endContent() ?>
|
<?php $this->endContent() ?>
|
||||||
|
|||||||
@ -17,7 +17,7 @@ $this->params['breadcrumbs'][] = $this->title;
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<?php $this->beginContent('@Da/User/resources/views/shared/admin_layout.php') ?>
|
<?php $this->beginContent('@Da/User/resources/views/shared/admin_layout.php') ?>
|
||||||
|
<div class="table-responsive">
|
||||||
<?= GridView::widget(
|
<?= GridView::widget(
|
||||||
[
|
[
|
||||||
'dataProvider' => $dataProvider,
|
'dataProvider' => $dataProvider,
|
||||||
@ -72,5 +72,6 @@ $this->params['breadcrumbs'][] = $this->title;
|
|||||||
],
|
],
|
||||||
]
|
]
|
||||||
) ?>
|
) ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
<?php $this->endContent() ?>
|
<?php $this->endContent() ?>
|
||||||
|
|||||||
Reference in New Issue
Block a user