mirror of
https://github.com/humhub/humhub.git
synced 2025-03-14 20:19:47 +01:00
Fix #3314: layout container width differences
This commit is contained in:
parent
7872322876
commit
7c6562d5d1
@ -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)
|
||||
|
@ -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
Loading…
x
Reference in New Issue
Block a user