mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-25 14:50:29 +00:00
update table container height (#7791)
Co-authored-by: zhouwenxuan <aries@Mac.local>
This commit is contained in:
@@ -61,6 +61,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.sf-metadata-result-container {
|
.sf-metadata-result-container {
|
||||||
|
height: 100%;
|
||||||
overflow-x: scroll;
|
overflow-x: scroll;
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
@@ -129,10 +130,6 @@
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sf-metadata-result-table-content .sf-metadata-result-table-row.sf-metadata-last-table-row {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sf-metadata-result-content .frozen-columns .sf-metadata-result-table-cell {
|
.sf-metadata-result-content .frozen-columns .sf-metadata-result-table-cell {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
@@ -397,6 +394,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.sf-metadata-wrapper .sf-metadata-main .sf-metadata-container {
|
.sf-metadata-wrapper .sf-metadata-main .sf-metadata-container {
|
||||||
|
display: flex;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@@ -176,7 +176,7 @@ class Record extends React.Component {
|
|||||||
|
|
||||||
getRecordStyle = () => {
|
getRecordStyle = () => {
|
||||||
const { isGroupView, height, isLastRecord } = this.props;
|
const { isGroupView, height, isLastRecord } = this.props;
|
||||||
let style = { height: isLastRecord ? height - 1 : height };
|
const style = { height };
|
||||||
if (isGroupView) {
|
if (isGroupView) {
|
||||||
const { top, left } = this.props;
|
const { top, left } = this.props;
|
||||||
style.top = top;
|
style.top = top;
|
||||||
|
Reference in New Issue
Block a user