Merge pull request #413 from xwiki-labs/driveHorizontalScrollbar
Fix horizontal scrollbar in drive
This commit is contained in:
commit
1a8460aa11
@ -107,7 +107,7 @@
|
|||||||
|
|
||||||
.cp-app-drive-container {
|
.cp-app-drive-container {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
overflow: auto;
|
overflow-x: auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: row;
|
flex-flow: row;
|
||||||
@ -121,6 +121,7 @@
|
|||||||
#cp-app-drive-tree {
|
#cp-app-drive-tree {
|
||||||
resize: none;
|
resize: none;
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
|
min-width: unset;
|
||||||
max-width: unset;
|
max-width: unset;
|
||||||
max-height: unset;
|
max-height: unset;
|
||||||
border-bottom: 1px solid @drive_mobile-tree-border-col;
|
border-bottom: 1px solid @drive_mobile-tree-border-col;
|
||||||
@ -239,7 +240,6 @@
|
|||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
.cp-app-drive-tree-categories-container {
|
.cp-app-drive-tree-categories-container {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
max-width: 500px;
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
img.cp-app-drive-icon {
|
img.cp-app-drive-icon {
|
||||||
@ -438,13 +438,13 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
// Needed to avoid the folder's path to overflows
|
// Needed to avoid the folder's path to overflows
|
||||||
// https://stackoverflow.com/questions/38223879/white-space-nowrap-breaks-flexbox-layout
|
// https://stackoverflow.com/questions/38223879/white-space-nowrap-breaks-flexbox-layout
|
||||||
min-width: 0;
|
// min-width: 0;
|
||||||
}
|
}
|
||||||
#cp-app-drive-content {
|
#cp-app-drive-content {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background: @drive_content-bg;
|
background: @drive_content-bg;
|
||||||
color: @drive_content-fg;
|
color: @drive_content-fg;
|
||||||
overflow: auto;
|
overflow-y: auto;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user