1
0
mirror of https://github.com/misterunknown/ifm.git synced 2025-08-10 01:56:30 +02:00

fixed moving content when opening a modal

This commit is contained in:
Marco Dickert
2017-08-30 17:47:14 +02:00
parent fe1dc78cd2
commit 1901e28064
3 changed files with 24 additions and 3 deletions

View File

@@ -1016,7 +1016,14 @@ $i18n["de"] = json_decode( $i18n["de"], true );
<?php print '</style>
<style type="text/css">';?> body {
padding-top: 70px;
overflow-y: scroll;
overflow-y: scroll !important;
}
/*
* This prevents the content from moving when opening a modal
*/
.modal-open {
padding-right: 0 !important;
}
.icon {

View File

@@ -1016,7 +1016,14 @@ $i18n["de"] = json_decode( $i18n["de"], true );
<?php print '</style>
<style type="text/css">';?> body {
padding-top: 70px;
overflow-y: scroll;
overflow-y: scroll !important;
}
/*
* This prevents the content from moving when opening a modal
*/
.modal-open {
padding-right: 0 !important;
}
.icon {

View File

@@ -1,6 +1,13 @@
body {
padding-top: 70px;
overflow-y: scroll;
overflow-y: scroll !important;
}
/*
* This prevents the content from moving when opening a modal
*/
.modal-open {
padding-right: 0 !important;
}
.icon {