Fix main layout width (#5292)

* Fix main layout width

* Update CHANGELOG.md

Co-authored-by: Lucas Bartholemy <luke-@users.noreply.github.com>
This commit is contained in:
Yuriy Bakhtin 2021-09-27 12:26:30 +03:00 committed by GitHub
parent 26de985b08
commit 974d5fb7b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 13 deletions

View File

@ -5,6 +5,7 @@ HumHub Changelog
1.9.2 (Unreleased)
------------------
- Fix #5265: Fix logging filter "Error" when not entries
- Fix #5285: Layout too wide for container pages without sidebar
- Fix #5307: Fix reset of the space homepage settings
- Fix #5301: Change people default sorting

View File

@ -2,7 +2,7 @@
/**
* This file is generated by the "yii asset" command.
* DO NOT MODIFY THIS FILE DIRECTLY.
* @version 2020-05-20 11:58:00
* @version 2021-09-16 07:53:30
*/
return [
'app' => [

View File

@ -43,28 +43,21 @@ hr {
position: inherit;
}
.layout-content-container {
padding: 0 10px 0 15px;
}
.layout-nav-container {
padding: 0 0 0 15px;
}
.layout-sidebar-container {
padding: 0 15px 0 5px;
padding: 0 15px 0 0;
}
@media (max-width: 768px) {
.layout-nav-container {
padding: 0 15px;
.left-navigation {
margin-bottom: 0;
}
}
.layout-nav-container, .layout-content-container {
padding: 0 15px;
}
}
h4 {
@ -95,8 +88,7 @@ input[type=select] {
}
@media (min-width: 768px) and (max-width: 991px) {
.layout-nav-container, .layout-content-container {
color:#123456;
.layout-nav-container {
padding: 0 15px;
}

File diff suppressed because one or more lines are too long