This commit is contained in:
Socrates
2020-05-26 10:29:34 +02:00
commit 9ed0f2a056
1162 changed files with 162062 additions and 0 deletions

47
web/xava/style/layout.css Normal file
View File

@@ -0,0 +1,47 @@
.ox-layout-detail {
display: table;
white-space: nowrap;
}
.ox-layout-aligned-cell {
display: table-cell;
}
.ox-layout-not-aligned-cell {
display: inline-block;
}
.ox-layout-new-line {
display: table-column-group;
}
.ox-layout-descriptions-editor-handler {
display: inline-block;
}
.ox-flow-layout {
width: 100%;
display: inline-flex;
flex-wrap: wrap;
}
.ox-flow-layout > div {
min-width: 340px;
}
.ox-simple-layout.ox-flow-layout > div {
min-width: 100%;
}
.ox-flow-layout > div.ox-frame {
width: 100%;
margin-bottom: 10px;
}
.ox-flow-layout .ox-layout-new-line {
display: none;
}
.ox-flow-layout .ox-layout-aligned-cell {
display: inline-block;
}