mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 06:08:21 +01:00
Merge pull request #3533 from baleks/issue/responsive_design_style_issues
Responsive design style issues were been fixed.
This commit is contained in:
commit
ca45da73b1
@ -27,7 +27,7 @@ use humhub\modules\admin\models\SpaceSearch;
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4" style="padding-left:0px">
|
||||
<div class="col-md-4 spacesearch-visibilities">
|
||||
<?= Html::activeDropDownList($searchModel, 'visibility', SpaceSearch::getVisibilityAttributes(), ['class' => 'form-control', 'onchange' => 'this.form.submit()']); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -42,7 +42,7 @@ use yii\widgets\ActiveForm;
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4" style="padding-left:0px">
|
||||
<div class="col-md-4 usersearch-statuses">
|
||||
<?= Html::activeDropDownList($searchModel, 'status', UserSearch::getStatusAttributes(), ['class' => 'form-control', 'onchange' => 'this.form.submit()']); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -35,7 +35,7 @@ use yii\bootstrap\Html;
|
||||
<tbody>
|
||||
<?php foreach ($model->categories() as $category): ?>
|
||||
<tr>
|
||||
<td>
|
||||
<td class="notification-type">
|
||||
<strong><?= $category->getTitle() ?></strong><br />
|
||||
<?= $category->getDescription() ?>
|
||||
</td>
|
||||
|
@ -27,6 +27,16 @@
|
||||
p {
|
||||
color: @text-color-highlight;
|
||||
}
|
||||
.usersearch-statuses,
|
||||
.spacesearch-visibilities {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
@media (min-width: 992px) {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
.statistics {
|
||||
.entry {
|
||||
|
@ -44,4 +44,10 @@ table {
|
||||
.table-middle > tbody > tr > td,
|
||||
.table-middle > tfoot > tr > td {
|
||||
vertical-align: middle !important;
|
||||
}
|
||||
|
||||
.table-responsive > .table > tbody > tr > td.notification-type {
|
||||
@media (max-width: 767px) {
|
||||
white-space: normal;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user