Files
bigcapital/client/src/style/components/DataTable/DataTable.scss
a.bouhuolia 42230fe64b feat(FinancialReports): add loading progress bar.
fix(preformance): Optimize preformance of virtualized list.
fix(preformance): Optimize financial reports preformance.
2021-03-16 17:27:35 +02:00

333 lines
5.9 KiB
SCSS

@import 'src/style/Base.scss';
.bigcapital-datatable {
display: block;
.dashboard__page-content & {
.table .thead {
.th {
border-bottom-color: #d2dde2;
}
}
}
.table {
text-align: left;
border-spacing: 0;
min-width: 100%;
display: block;
.thead {
overflow-y: auto;
overflow-x: hidden;
.th {
padding: 0.7rem 0.5rem;
background: #f5f5f5;
font-size: 14px;
color: #505e71;
font-weight: 500;
border-bottom: 1px solid rgb(224, 224, 224);
> div{
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
.sort-icon {
width: 0;
height: 0;
position: relative;
top: -2px;
display: inline-block;
margin-left: 5px;
&--desc {
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-bottom: 6px solid #666;
}
&--asc {
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 6px solid #666;
}
}
}
.tr {
display: flex;
flex: 1 0 auto;
&:last-child {
.td {
border-bottom: 0;
}
}
.bp3-context-menu-popover-target{
z-index: 100;
}
.tr-context{
display: flex;
flex: 1 0 auto;
}
}
.th,
.td {
box-sizing: border-box;
flex: 0 0 auto;
justify-content: flex-start;
align-items: flex-start;
display: flex;
margin: 0;
padding: 0.5rem;
.cell-inner{
flex: 1 0 0;
}
&:last-child {
border-right: 0;
}
.bp3-control {
margin-bottom: 0;
}
.resizer {
display: inline-block;
background: transparent;
width: 10px;
height: 100%;
position: absolute;
right: 0;
top: 0;
transform: translateX(50%);
z-index: 1;
touch-action: none;
&.isResizing {
// background: red;
}
.inner-resizer {
height: 100%;
width: 1px;
border-left: 1px solid #E6E6E6;
margin: 0 auto;
}
&.isResizing .inner-resizer {
background: #1183da;
}
}
.bp3-control.bp3-checkbox .bp3-control-indicator {
border: 2px solid #d7d7d7;
&,
&:hover {
height: 16px;
width: 16px;
}
}
.bp3-control.bp3-checkbox {
input:checked ~ .bp3-control-indicator,
input:indeterminate ~ .bp3-control-indicator {
border-color: #0052ff;
}
}
.skeleton{
animation: skeleton-fade-in .3s linear forwards,
skeleton-glow 1s linear infinite alternate;
animation-delay: 0s,.3s;
height: 8px;
opacity: 1;
width: 65%;
margin: 10px 0;
}
}
.th{
.skeleton{
margin: 5px 0;
}
}
.tbody {
width: 100%;
overflow: auto;
.tbody-inner {
> .loading {
padding-top: 40px;
}
}
.tr .td {
border-bottom: 1px solid #e0e0e0;
align-items: center;
color: #101219;
.placeholder {
color: #a0a0a0;
}
.text-overview{
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.bp3-form-group {
width: 100%;
}
&.is-text-overview {
.expend-padding{
display: flex;
width: 100%;
}
}
}
.tr:hover .td {
background: #f3f7fc;
}
.tr.is-context-menu-active .td {
background: #f3fafc;
}
.td.actions .#{$ns}-button {
background: #e6effb;
border: 0;
box-shadow: none;
padding: 5px 15px;
border-radius: 8px;
&:hover,
&:focus {
background-color: #cfdcee;
}
svg {
color: #425361;
}
.bp3-icon-more-h-16 {
margin-top: 2px;
}
}
.tr.no-results {
.td {
flex-direction: column;
padding: 20px;
color: #666;
align-items: center;
}
}
> .loading {
padding-top: 50px;
}
}
.tr .th,
.tr .td {
.expand-toggle {
cursor: pointer;
display: inline-block;
padding: 0 8px 0 0;
padding-left: 0;
margin: auto 0;
margin-left: 4px;
.arrow-right {
width: 0;
height: 0;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 8px solid #acacac;
display: block;
}
.arrow-down {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 8px solid #acacac;
display: block;
}
}
}
.tr-inner{
display: flex;
width: 100%;
}
}
.no-results {
color: #666;
.td {
padding-top: 20px;
padding-bottom: 20px;
width: 100%;
}
}
&.has-sticky-header {
.thead {
.tr .th {
position: sticky;
}
}
}
&.has-sticky {
.thead,
.tfoot {
position: sticky;
z-index: 1;
}
.thead {
top: 0;
}
.tfoot {
bottom: 0;
}
.tbody {
position: relative;
z-index: 0;
}
[data-sticky-td] {
position: sticky;
}
[data-sticky-last-left-td] {
// box-shadow: 2px 0px 3px #ccc;
}
[data-sticky-first-right-td] {
// box-shadow: -2px 0px 3px #ccc;
}
}
&.has-virtualized-rows {
.tbody {
overflow-y: scroll;
overflow-x: hidden;
}
}
.ReactVirtualized__Grid{
will-change: auto !important;
}
}