mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
fix(preformance): Optimize preformance of virtualized list. fix(preformance): Optimize financial reports preformance.
179 lines
3.0 KiB
SCSS
179 lines
3.0 KiB
SCSS
@import './normalize.scss';
|
|
|
|
@import './Base.scss';
|
|
|
|
// Blueprint framework.
|
|
@import '@blueprintjs/core/src/blueprint.scss';
|
|
@import '@blueprintjs/datetime/src/blueprint-datetime.scss';
|
|
|
|
@import 'basscss';
|
|
|
|
// Objects
|
|
@import 'objects/form';
|
|
@import 'objects/typography';
|
|
@import 'objects/buttons';
|
|
@import 'objects/Bigcapital';
|
|
|
|
// Components
|
|
@import 'components/CustomScrollbar';
|
|
@import 'components/dragzone';
|
|
@import 'components/resizer';
|
|
@import 'components/CloudSpinner';
|
|
@import 'components/Alert';
|
|
@import 'components/Card';
|
|
@import 'components/Toast';
|
|
@import 'components/PageForm';
|
|
@import 'components/Tooltip';
|
|
@import 'components/Postbox';
|
|
|
|
// Pages
|
|
@import 'pages/view-form';
|
|
@import 'pages/register-organizaton';
|
|
|
|
// Views
|
|
@import 'views/filter-dropdown';
|
|
|
|
|
|
.App {
|
|
min-width: 960px;
|
|
}
|
|
|
|
// =======
|
|
|
|
body.hide-scrollbar .Pane2{
|
|
overflow: hidden;
|
|
}
|
|
|
|
.bp3-fill{
|
|
.bp3-popover-wrapper,
|
|
.bp3-popover-target {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.bp3-button {
|
|
width: 100%;
|
|
justify-content: start;
|
|
}
|
|
}
|
|
|
|
.bp3-datepicker-caption .bp3-html-select::after {
|
|
margin-right: 6px;
|
|
}
|
|
.bp3-select-popover .bp3-menu {
|
|
max-height: 300px;
|
|
max-width: 400px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.bp3-form-group .bp3-label {
|
|
.hint {
|
|
.bp3-popover-wrapper {
|
|
display: inline;
|
|
}
|
|
}
|
|
|
|
&:not(.bp3-inline) .hint .bp3-popover-target {
|
|
display: inline;
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
.bp3-popover.bp3-tooltip {
|
|
max-width: 300px;
|
|
}
|
|
|
|
.bp3-timezone-picker{
|
|
|
|
.bp3-button{
|
|
|
|
[icon="caret-down"] {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{
|
|
background-color: #0066ff;
|
|
}
|
|
|
|
.bp3-overlay-backdrop{
|
|
background-color: rgba(0,10,30, .7);
|
|
}
|
|
|
|
|
|
.ReactVirtualized__Collection {
|
|
}
|
|
|
|
.ReactVirtualized__Collection__innerScrollContainer {
|
|
}
|
|
|
|
/* Grid default theme */
|
|
|
|
.ReactVirtualized__Grid {
|
|
}
|
|
|
|
.ReactVirtualized__Grid__innerScrollContainer {
|
|
}
|
|
|
|
/* Table default theme */
|
|
|
|
.ReactVirtualized__Table {
|
|
}
|
|
|
|
.ReactVirtualized__Table__Grid {
|
|
}
|
|
|
|
.ReactVirtualized__Table__headerRow {
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.ReactVirtualized__Table__row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.ReactVirtualized__Table__headerTruncatedText {
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ReactVirtualized__Table__headerColumn,
|
|
.ReactVirtualized__Table__rowColumn {
|
|
margin-right: 10px;
|
|
min-width: 0px;
|
|
}
|
|
.ReactVirtualized__Table__rowColumn {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ReactVirtualized__Table__headerColumn:first-of-type,
|
|
.ReactVirtualized__Table__rowColumn:first-of-type {
|
|
margin-left: 10px;
|
|
}
|
|
.ReactVirtualized__Table__sortableHeaderColumn {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ReactVirtualized__Table__sortableHeaderIconContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.ReactVirtualized__Table__sortableHeaderIcon {
|
|
flex: 0 0 24px;
|
|
height: 1em;
|
|
width: 1em;
|
|
fill: currentColor;
|
|
}
|
|
|
|
/* List default theme */
|
|
|
|
.ReactVirtualized__List {
|
|
} |