Skip to content
Snippets Groups Projects
Commit c6293db2 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Try a better fix for responsive and avoid scrolling on field selectors

parent 190f432c
No related branches found
No related tags found
No related merge requests found
......@@ -588,9 +588,14 @@ div.myavailability {
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
}*/
/* Style used for most tables */
.div-table-responsive {
overflow-x: auto;
/*min-height: 0.01%;*/
min-height: 0.01%;
}
/* Style used for full page tables with field selector and no content after table (priority before previous for such tables) */
div.fiche>form>div.div-table-responsive {
overflow-x: auto;
min-height: 350px;
}
......
......@@ -587,15 +587,20 @@ div.myavailability {
}
/* DOL_XXX for future usage (when left menu has been removed). If we do not use datatable */
.table-responsive {
/*.table-responsive {
width: calc(100% - 330px);
margin-bottom: 15px;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
}*/
/* Style used for most tables */
.div-table-responsive {
overflow-x: auto;
/*min-height: 0.01%;*/
min-height: 0.01%;
}
/* Style used for full page tables with field selector and no content after table (priority before previous for such tables) */
div.fiche>form>div.div-table-responsive {
overflow-x: auto;
min-height: 350px;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment