Fix #3314: layout container width differences

This commit is contained in:
buddh4 2018-10-09 20:53:34 +02:00
parent 7872322876
commit 7c6562d5d1
3 changed files with 37 additions and 6 deletions

View File

@ -18,6 +18,7 @@ HumHub Change Log
- Fix: Comment form files not cleared
- Enh: Added `humhub\modules\file\models\isAssignedTo($record)` argument in order to check if a File is attached to a specific record
- Fix: rich-text mobile view wrong min-height calculation
- Fix #3314: layout container width differences
1.3.4 (September 25, 2018)

View File

@ -16,6 +16,18 @@ body {
}
}
@media (max-width: 920px) {
body {
padding-top: 115px;
}
}
@media (min-width:768px) and (max-width:920px) {
body {
padding-top: 120px;
}
}
a:hover {
text-decoration: none;
}
@ -41,15 +53,33 @@ hr {
position: inherit;
}
.layout-nav-container {
.layout-content-container, .layout-nav-container {
padding: 0 10px 0 15px;
}
.layout-content-container {
padding: 0 10px;
}
.layout-sidebar-container{
padding: 0 15px 0 10px;
padding: 0 15px 0 5px;
}
@media (max-width:768px){
.layout-nav-container {
.left-navigation {
margin-bottom:0px;
}
}
.layout-nav-container, .layout-content-container {
padding: 0px 15px;
}
}
@media (min-width:768px) and (max-width:920px) {
#topbar-first, #topbar-second{
.container {
padding-left:10px;
padding-right:20px;
}
}
}

File diff suppressed because one or more lines are too long