Try a better fix for responsive and avoid scrolling on field selectors
This commit is contained in:
parent
190f432c23
commit
c6293db23c
@ -588,9 +588,14 @@ div.myavailability {
|
|||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
-ms-overflow-style: -ms-autohiding-scrollbar;
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
||||||
}*/
|
}*/
|
||||||
|
/* Style used for most tables */
|
||||||
.div-table-responsive {
|
.div-table-responsive {
|
||||||
overflow-x: auto;
|
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;
|
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 */
|
/* 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);
|
width: calc(100% - 330px);
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
-ms-overflow-style: -ms-autohiding-scrollbar;
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
||||||
}
|
}*/
|
||||||
|
/* Style used for most tables */
|
||||||
.div-table-responsive {
|
.div-table-responsive {
|
||||||
overflow-x: auto;
|
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;
|
min-height: 350px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user