@adaptabletools/adaptable 14.0.0-canary.0 → 14.0.0-canary.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/agGrid.d.ts +23 -1
- package/agGrid.js +23 -1
- package/base.css +1408 -2113
- package/base.css.map +1 -0
- package/bundle.cjs.js +215 -186
- package/index.css +1586 -1473
- package/index.css.map +1 -0
- package/package.json +10 -10
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +20 -5
- package/src/AdaptableOptions/ActionOptions.d.ts +66 -32
- package/src/AdaptableOptions/AdaptableOptions.d.ts +6 -2
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +10 -104
- package/src/AdaptableOptions/AlertOptions.d.ts +10 -1
- package/src/AdaptableOptions/ChartingOptions.d.ts +27 -0
- package/src/{Api/ConditionalStyleApi.js → AdaptableOptions/ChartingOptions.js} +0 -0
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
- package/src/AdaptableOptions/EntitlementOptions.d.ts +14 -1
- package/src/AdaptableOptions/ExportOptions.d.ts +3 -3
- package/src/AdaptableOptions/ExpressionOptions.d.ts +204 -0
- package/src/{Api/InternalApi.js → AdaptableOptions/ExpressionOptions.js} +0 -0
- package/src/AdaptableOptions/FilterOptions.d.ts +8 -1
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +21 -6
- package/src/AdaptableOptions/FinsemblePluginOptions.d.ts +32 -0
- package/src/{Strategy/Interface/IConditionalStyleModule.js → AdaptableOptions/FinsemblePluginOptions.js} +0 -0
- package/src/AdaptableOptions/GeneralOptions.d.ts +46 -5
- package/src/AdaptableOptions/LayoutOptions.d.ts +20 -2
- package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +6 -4
- package/src/AdaptableOptions/NotificationsOptions.d.ts +2 -1
- package/src/AdaptableOptions/PredicateOptions.d.ts +32 -0
- package/src/AdaptableOptions/PredicateOptions.js +2 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +4 -4
- package/src/Api/ActionApi.d.ts +14 -3
- package/src/Api/AdaptableApi.d.ts +21 -12
- package/src/Api/AlertApi.d.ts +139 -83
- package/src/Api/BulkUpdateApi.d.ts +9 -2
- package/src/Api/CalculatedColumnApi.d.ts +26 -21
- package/src/Api/CalendarApi.d.ts +29 -0
- package/src/Api/CalendarApi.js +2 -0
- package/src/Api/CellSummaryApi.d.ts +15 -8
- package/src/Api/ChartingApi.d.ts +45 -1
- package/src/Api/ColumnApi.d.ts +166 -110
- package/src/Api/ConfigApi.d.ts +19 -29
- package/src/Api/CustomSortApi.d.ts +36 -7
- package/src/Api/DashboardApi.d.ts +13 -6
- package/src/Api/DataChangeHistoryApi.d.ts +8 -1
- package/src/Api/DataSetApi.d.ts +13 -3
- package/src/Api/EntitlementApi.d.ts +31 -0
- package/src/Api/EntitlementApi.js +2 -0
- package/src/Api/EventApi.d.ts +15 -24
- package/src/Api/ExportApi.d.ts +35 -18
- package/src/Api/FilterApi.d.ts +75 -67
- package/src/Api/FinanceApi.d.ts +22 -9
- package/src/Api/FinsembleApi.d.ts +10 -0
- package/src/Api/FinsembleApi.js +2 -0
- package/src/Api/FlashingCellApi.d.ts +28 -12
- package/src/Api/FormatColumnApi.d.ts +96 -102
- package/src/Api/FreeTextColumnApi.d.ts +53 -21
- package/src/Api/GridApi.d.ts +59 -23
- package/src/Api/IPushPullApi.d.ts +1 -1
- package/src/Api/Implementation/ActionApiImpl.d.ts +9 -3
- package/src/Api/Implementation/ActionApiImpl.js +23 -11
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +10 -5
- package/src/Api/Implementation/AdaptableApiImpl.js +12 -5
- package/src/Api/Implementation/AlertApiImpl.d.ts +59 -26
- package/src/Api/Implementation/AlertApiImpl.js +187 -171
- package/src/Api/Implementation/ApiBase.d.ts +50 -3
- package/src/Api/Implementation/ApiBase.js +144 -5
- package/src/Api/Implementation/ApplicationApiImpl.d.ts +1 -1
- package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +1 -0
- package/src/Api/Implementation/BulkUpdateApiImpl.js +4 -1
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +7 -2
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +28 -37
- package/src/Api/Implementation/CalendarApiImpl.d.ts +9 -0
- package/src/Api/Implementation/CalendarApiImpl.js +59 -0
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/CellSummaryApiImpl.js +6 -1
- package/src/Api/Implementation/ChartingApiImpl.d.ts +11 -3
- package/src/Api/Implementation/ChartingApiImpl.js +41 -6
- package/src/Api/Implementation/ColumnApiImpl.d.ts +28 -8
- package/src/Api/Implementation/ColumnApiImpl.js +204 -194
- package/src/Api/Implementation/ConfigApiImpl.d.ts +3 -4
- package/src/Api/Implementation/ConfigApiImpl.js +4 -12
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +16 -1
- package/src/Api/Implementation/CustomSortApiImpl.js +33 -7
- package/src/Api/Implementation/DashboardApiImpl.d.ts +6 -1
- package/src/Api/Implementation/DashboardApiImpl.js +13 -15
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +5 -0
- package/src/Api/Implementation/DataSetApiImpl.d.ts +6 -0
- package/src/Api/Implementation/DataSetApiImpl.js +17 -8
- package/src/Api/Implementation/EntitlementApiImpl.d.ts +11 -0
- package/src/Api/Implementation/EntitlementApiImpl.js +25 -0
- package/src/Api/Implementation/ExportApiImpl.d.ts +12 -4
- package/src/Api/Implementation/ExportApiImpl.js +43 -77
- package/src/Api/Implementation/FilterApiImpl.d.ts +11 -4
- package/src/Api/Implementation/FilterApiImpl.js +62 -166
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +9 -1
- package/src/Api/Implementation/FlashingCellApiImpl.js +29 -26
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +49 -26
- package/src/Api/Implementation/FormatColumnApiImpl.js +84 -259
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +13 -5
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +42 -27
- package/src/Api/Implementation/GridApiImpl.d.ts +17 -2
- package/src/Api/Implementation/GridApiImpl.js +122 -62
- package/src/Api/Implementation/LayoutApiImpl.d.ts +15 -7
- package/src/Api/Implementation/LayoutApiImpl.js +44 -112
- package/src/Api/Implementation/OptionsApiImpl.d.ts +36 -0
- package/src/Api/Implementation/OptionsApiImpl.js +100 -0
- package/src/Api/Implementation/PluginsApiImpl.d.ts +3 -1
- package/src/Api/Implementation/PluginsApiImpl.js +6 -0
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +2 -1
- package/src/Api/Implementation/PlusMinusApiImpl.js +5 -0
- package/src/Api/Implementation/PredicateApiImpl.d.ts +13 -2
- package/src/Api/Implementation/PredicateApiImpl.js +41 -23
- package/src/Api/Implementation/QueryApiImpl.d.ts +7 -2
- package/src/Api/Implementation/QueryApiImpl.js +25 -52
- package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +6 -3
- package/src/Api/Implementation/QueryLanguageApiImpl.js +14 -18
- package/src/Api/Implementation/QuickSearchApiImpl.d.ts +1 -0
- package/src/Api/Implementation/QuickSearchApiImpl.js +5 -0
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +27 -0
- package/src/Api/Implementation/ScheduleApiImpl.js +86 -17
- package/src/Api/Implementation/ScopeApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ScopeApiImpl.js +9 -7
- package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +2 -0
- package/src/Api/Implementation/SettingsPanelApiImpl.js +9 -0
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +8 -1
- package/src/Api/Implementation/ShortcutApiImpl.js +25 -4
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +1 -0
- package/src/Api/Implementation/SmartEditApiImpl.js +5 -0
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +30 -0
- package/src/Api/Implementation/StyledColumnApiImpl.js +96 -0
- package/src/Api/Implementation/SystemStatusApiImpl.d.ts +6 -1
- package/src/Api/Implementation/SystemStatusApiImpl.js +20 -14
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +6 -5
- package/src/Api/Implementation/TeamSharingApiImpl.js +15 -25
- package/src/Api/Implementation/ThemeApiImpl.d.ts +5 -1
- package/src/Api/Implementation/ThemeApiImpl.js +23 -4
- package/src/Api/Implementation/ToolPanelApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ToolPanelApiImpl.js +8 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +2 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.js +13 -4
- package/src/Api/Internal/ActionInternalApi.d.ts +23 -0
- package/src/Api/Internal/ActionInternalApi.js +198 -0
- package/src/Api/{Implementation/InternalApiImpl.d.ts → Internal/AdaptableInternalApi.d.ts} +21 -57
- package/src/Api/Internal/AdaptableInternalApi.js +461 -0
- package/src/Api/Internal/AlertInternalApi.d.ts +148 -0
- package/src/Api/Internal/AlertInternalApi.js +484 -0
- package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +24 -0
- package/src/Api/Internal/CalculatedColumnInternalApi.js +57 -0
- package/src/Api/Internal/ColumnInternalApi.d.ts +33 -0
- package/src/Api/Internal/ColumnInternalApi.js +67 -0
- package/src/Api/Internal/CustomSortInternalApi.d.ts +6 -0
- package/src/Api/Internal/CustomSortInternalApi.js +11 -0
- package/src/Api/Internal/DashboardInternalApi.d.ts +8 -0
- package/src/Api/Internal/DashboardInternalApi.js +26 -0
- package/src/Api/Internal/DataSetInternalApi.d.ts +9 -0
- package/src/Api/Internal/DataSetInternalApi.js +20 -0
- package/src/Api/Internal/ExportInternalApi.d.ts +11 -0
- package/src/Api/Internal/ExportInternalApi.js +73 -0
- package/src/Api/Internal/FilterInternalApi.d.ts +58 -0
- package/src/Api/Internal/FilterInternalApi.js +194 -0
- package/src/Api/Internal/FlashingCellInternalApi.d.ts +12 -0
- package/src/Api/Internal/FlashingCellInternalApi.js +56 -0
- package/src/Api/Internal/FormatColumnInternalApi.d.ts +109 -0
- package/src/Api/Internal/FormatColumnInternalApi.js +225 -0
- package/src/Api/Internal/FreeTextColumnInternalApi.d.ts +15 -0
- package/src/Api/Internal/FreeTextColumnInternalApi.js +44 -0
- package/src/Api/Internal/GridInternalApi.d.ts +82 -0
- package/src/Api/Internal/GridInternalApi.js +252 -0
- package/src/Api/Internal/LayoutInternalApi.d.ts +48 -0
- package/src/Api/Internal/LayoutInternalApi.js +163 -0
- package/src/Api/Internal/PredicateInternalApi.d.ts +37 -0
- package/src/Api/Internal/PredicateInternalApi.js +140 -0
- package/src/Api/Internal/QueryInternalApi.d.ts +17 -0
- package/src/Api/Internal/QueryInternalApi.js +57 -0
- package/src/Api/Internal/QueryLanguageInternalApi.d.ts +11 -0
- package/src/Api/Internal/QueryLanguageInternalApi.js +34 -0
- package/src/Api/Internal/StyledColumnInternalApi.d.ts +59 -0
- package/src/Api/Internal/StyledColumnInternalApi.js +249 -0
- package/src/Api/Internal/SystemStatusInternalApi.d.ts +11 -0
- package/src/Api/Internal/SystemStatusInternalApi.js +27 -0
- package/src/Api/Internal/TeamSharingInternalApi.d.ts +20 -0
- package/src/Api/Internal/TeamSharingInternalApi.js +66 -0
- package/src/Api/LayoutApi.d.ts +36 -41
- package/src/Api/OptionsApi.d.ts +131 -0
- package/src/Api/OptionsApi.js +2 -0
- package/src/Api/PluginsApi.d.ts +5 -0
- package/src/Api/PlusMinusApi.d.ts +9 -2
- package/src/Api/PredicateApi.d.ts +41 -10
- package/src/Api/QueryApi.d.ts +23 -18
- package/src/Api/QueryLanguageApi.d.ts +3 -7
- package/src/Api/QuickSearchApi.d.ts +5 -1
- package/src/Api/ScheduleApi.d.ts +97 -16
- package/src/Api/ScopeApi.d.ts +1 -1
- package/src/Api/SettingsPanelApi.d.ts +12 -1
- package/src/Api/ShortcutApi.d.ts +28 -7
- package/src/Api/SmartEditApi.d.ts +8 -1
- package/src/Api/StyledColumnApi.d.ts +100 -0
- package/src/Api/StyledColumnApi.js +2 -0
- package/src/Api/SystemStatusApi.d.ts +12 -6
- package/src/Api/TeamSharingApi.d.ts +4 -17
- package/src/Api/ThemeApi.d.ts +25 -6
- package/src/Api/ToolPanelApi.d.ts +10 -1
- package/src/Api/UserInterfaceApi.d.ts +13 -2
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
- package/src/PredefinedConfig/AlertState.d.ts +20 -5
- package/src/PredefinedConfig/ChartingState.d.ts +13 -4
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.js +4 -0
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +0 -5
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +10 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +22 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +8 -2
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +64 -45
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +6 -6
- package/src/PredefinedConfig/Common/ColumnFilter.d.ts +2 -2
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +3 -7
- package/src/PredefinedConfig/Common/Types.d.ts +7 -7
- package/src/PredefinedConfig/Common/Types.js +4 -0
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +10 -19
- package/src/PredefinedConfig/FlashingCellState.d.ts +9 -2
- package/src/PredefinedConfig/FormatColumnState.d.ts +28 -92
- package/src/PredefinedConfig/GridState.d.ts +1 -1
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +7 -2
- package/src/PredefinedConfig/StyledColumnState.d.ts +139 -0
- package/src/PredefinedConfig/StyledColumnState.js +2 -0
- package/src/PredefinedConfig/SystemState.d.ts +21 -0
- package/src/Redux/ActionsReducers/ChartingRedux.d.ts +28 -5
- package/src/Redux/ActionsReducers/ChartingRedux.js +45 -5
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +43 -1
- package/src/Redux/ActionsReducers/FreeTextColumnRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +3 -3
- package/src/Redux/ActionsReducers/GridRedux.d.ts +18 -0
- package/src/Redux/ActionsReducers/GridRedux.js +65 -2
- package/src/Redux/ActionsReducers/PluginsRedux.d.ts +4 -4
- package/src/Redux/ActionsReducers/PluginsRedux.js +5 -5
- package/src/Redux/ActionsReducers/PopupRedux.js +10 -2
- package/src/Redux/ActionsReducers/QuickSearchRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/QuickSearchRedux.js +1 -1
- package/src/Redux/ActionsReducers/StyledColumnRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/StyledColumnRedux.js +92 -0
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +20 -0
- package/src/Redux/ActionsReducers/SystemRedux.js +67 -5
- package/src/Redux/DeadRedux.d.ts +6 -0
- package/src/Redux/DeadRedux.js +19 -1
- package/src/Redux/Store/AdaptableStore.js +45 -34
- package/src/Strategy/AdaptableModuleBase.js +6 -6
- package/src/Strategy/AlertModule.d.ts +1 -6
- package/src/Strategy/AlertModule.js +38 -93
- package/src/Strategy/BulkUpdateModule.js +3 -3
- package/src/Strategy/CalculatedColumnModule.js +6 -6
- package/src/Strategy/ChartingModule.d.ts +7 -1
- package/src/Strategy/ChartingModule.js +97 -0
- package/src/Strategy/CustomSortModule.js +4 -4
- package/src/Strategy/DashboardModule.js +2 -2
- package/src/Strategy/DataChangeHistoryModule.d.ts +1 -0
- package/src/Strategy/DataChangeHistoryModule.js +12 -0
- package/src/Strategy/DataSetModule.js +1 -1
- package/src/Strategy/ExportModule.js +4 -4
- package/src/Strategy/FilterModule.js +10 -13
- package/src/Strategy/FlashingCellModule.d.ts +2 -0
- package/src/Strategy/FlashingCellModule.js +27 -7
- package/src/Strategy/FormatColumnModule.d.ts +4 -10
- package/src/Strategy/FormatColumnModule.js +70 -185
- package/src/Strategy/FreeTextColumnModule.js +3 -3
- package/src/Strategy/Interface/IModule.d.ts +12 -10
- package/src/Strategy/LayoutModule.d.ts +3 -0
- package/src/Strategy/LayoutModule.js +138 -25
- package/src/Strategy/PlusMinusModule.js +2 -2
- package/src/Strategy/QueryModule.js +3 -3
- package/src/Strategy/ScheduleModule.js +10 -12
- package/src/Strategy/ShortcutModule.js +5 -5
- package/src/Strategy/SmartEditModule.js +3 -3
- package/src/Strategy/StyledColumnModule.d.ts +24 -0
- package/src/Strategy/StyledColumnModule.js +179 -0
- package/src/Strategy/TeamSharingModule.js +3 -3
- package/src/Strategy/ThemeModule.js +1 -1
- package/src/Strategy/Utilities/Alert/getAlertBehaviourViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/CustomSort/getCustomSortColumnViewItems.js +1 -1
- package/src/Strategy/Utilities/Export/getExportColumnsViewItems.d.ts +1 -1
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.d.ts +1 -1
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +3 -4
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.js +1 -16
- package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +1 -1
- package/src/Strategy/Utilities/Layout/getLayoutSortViewItems.js +1 -1
- package/src/Strategy/Utilities/getRuleViewItems.d.ts +1 -1
- package/src/Strategy/Utilities/getRuleViewItems.js +4 -3
- package/src/Strategy/Utilities/getScopeViewItems.js +2 -2
- package/src/Strategy/Utilities/updateSingleToMultiplePredicates.d.ts +5 -0
- package/src/Strategy/Utilities/updateSingleToMultiplePredicates.js +12 -0
- package/src/Utilities/Constants/ModuleConstants.d.ts +3 -0
- package/src/Utilities/Constants/ModuleConstants.js +4 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +32 -25
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +19 -15
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -2
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +11 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -4
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +22 -11
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +76 -79
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +3 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +9 -5
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +2 -4
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +15 -4
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +2 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +136 -29
- package/src/Utilities/Extensions/ObjectExtensions.d.ts +10 -0
- package/src/Utilities/Extensions/ObjectExtensions.js +20 -0
- package/src/Utilities/Extensions/StringExtensions.d.ts +2 -0
- package/src/Utilities/Extensions/StringExtensions.js +21 -1
- package/src/Utilities/Extensions/TypeExtensions.d.ts +2 -0
- package/src/Utilities/Extensions/TypeExtensions.js +5 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +6 -2
- package/src/Utilities/Helpers/FormatHelper.d.ts +1 -1
- package/src/Utilities/Helpers/FormatHelper.js +20 -11
- package/src/Utilities/ObjectFactory.d.ts +10 -6
- package/src/Utilities/ObjectFactory.js +30 -26
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +2 -2
- package/src/Utilities/Services/ChartingService.d.ts +10 -0
- package/src/Utilities/Services/ChartingService.js +100 -0
- package/src/Utilities/Services/DataService.js +1 -1
- package/src/Utilities/Services/EntitlementService.js +4 -1
- package/src/Utilities/Services/Interface/IChartingService.d.ts +5 -0
- package/src/Utilities/Services/Interface/IChartingService.js +2 -0
- package/src/Utilities/Services/Interface/IEntitlementService.d.ts +2 -1
- package/src/Utilities/Services/Interface/IMetamodelService.d.ts +1 -0
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +14 -4
- package/src/Utilities/Services/Interface/IRowEditService.d.ts +0 -5
- package/src/Utilities/Services/{LicenseService.d.ts → LicenseService/index.d.ts} +3 -3
- package/src/Utilities/Services/LicenseService/index.js +1 -0
- package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.d.ts +1 -0
- package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.js +15 -0
- package/src/Utilities/Services/MetamodelService.js +6 -4
- package/src/Utilities/Services/ModuleService.js +4 -2
- package/src/Utilities/Services/QueryLanguageService.d.ts +3 -3
- package/src/Utilities/Services/QueryLanguageService.js +91 -42
- package/src/Utilities/Services/ReportService.js +9 -9
- package/src/Utilities/Services/RowEditService.d.ts +0 -19
- package/src/Utilities/Services/RowEditService.js +5 -162
- package/src/Utilities/Services/TeamSharingService.js +3 -3
- package/src/Utilities/Services/ValidationService.js +9 -7
- package/src/Utilities/license/LicenseDetails.d.ts +1 -1
- package/src/Utilities/license/decode.d.ts +1 -0
- package/src/Utilities/license/decode.js +1 -1
- package/src/Utilities/logDeprecation.d.ts +3 -0
- package/src/Utilities/logDeprecation.js +30 -0
- package/src/View/AdaptablePopover/index.d.ts +4 -2
- package/src/View/AdaptablePopover/index.js +6 -2
- package/src/View/AdaptableView.d.ts +3 -3
- package/src/View/AdaptableViewFactory.js +2 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.d.ts +3 -5
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.js +103 -92
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +2 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +2 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/Components/FormBox.d.ts +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +4 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +8 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +7 -34
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.d.ts +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +7 -7
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +2 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +4 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.js +2 -1
- package/src/View/AdaptableWizardView/index.d.ts +1 -1
- package/src/View/Alert/AlertEntityRow.js +1 -1
- package/src/View/Alert/AlertStatusSubPanel.js +1 -1
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +17 -16
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +25 -2
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +23 -14
- package/src/View/Alert/Wizard/AlertWizard.js +3 -3
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +7 -5
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +5 -5
- package/src/View/Alert/Wizard/isValidAlertRules.js +5 -4
- package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
- package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +3 -3
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +4 -3
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +1 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +34 -12
- package/src/View/Components/AdaptableObjectRow/index.js +1 -6
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonEdit.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonInfo.d.ts +1 -3
- package/src/View/Components/Buttons/ButtonInfo.js +3 -5
- package/src/View/Components/Charting/ChartingStatusBarPopover.d.ts +2 -0
- package/src/View/Components/Charting/ChartingStatusBarPopover.js +23 -0
- package/src/View/Components/Charting/ChartingViewPanel.d.ts +3 -0
- package/src/View/Components/Charting/ChartingViewPanel.js +95 -0
- package/src/View/Components/Charting/ChartingWizard/ChartingWizard.d.ts +6 -0
- package/src/View/Components/Charting/ChartingWizard/ChartingWizard.js +37 -0
- package/src/View/Components/Charting/ChartingWizard/PreviewChartSection.d.ts +6 -0
- package/src/View/Components/Charting/ChartingWizard/PreviewChartSection.js +34 -0
- package/src/View/Components/Charting/ChartingWizard/SettingsSection.d.ts +8 -0
- package/src/View/Components/Charting/ChartingWizard/SettingsSection.js +53 -0
- package/src/View/Components/Charting/DeleteChartButton.d.ts +7 -0
- package/src/View/Components/Charting/DeleteChartButton.js +12 -0
- package/src/View/Components/Charting/EditChartButton.d.ts +8 -0
- package/src/View/Components/Charting/EditChartButton.js +21 -0
- package/src/View/Components/Charting/ShowChartButton.d.ts +5 -0
- package/src/View/Components/Charting/ShowChartButton.js +38 -0
- package/src/View/Components/Charting/useChartState.d.ts +9 -0
- package/src/View/Components/Charting/useChartState.js +71 -0
- package/src/View/Components/EntityRulesEditor/PredicatesEditor.d.ts +16 -0
- package/src/View/Components/EntityRulesEditor/PredicatesEditor.js +86 -0
- package/src/View/Components/EntityRulesEditor/Utilities.d.ts +6 -0
- package/src/View/Components/EntityRulesEditor/Utilities.js +21 -0
- package/src/View/Components/EntityRulesEditor/index.d.ts +5 -9
- package/src/View/Components/EntityRulesEditor/index.js +44 -124
- package/src/View/Components/ExpressionWizard.js +2 -2
- package/src/View/Components/ExternalRenderer.js +3 -1
- package/src/View/Components/FilterForm/FilterForm.js +13 -18
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +2 -2
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +15 -21
- package/src/View/Components/NewScopeComponent.js +3 -3
- package/src/View/Components/Panels/PanelWithButton.js +1 -5
- package/src/View/Components/Panels/PanelWithImage.js +1 -5
- package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.d.ts +1 -2
- package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.js +6 -7
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -2
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +3 -2
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +3 -16
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +12 -14
- package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/TopBar.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
- package/src/View/Components/Popups/AdaptablePopupConfirmation.d.ts +2 -12
- package/src/View/Components/Popups/AdaptablePopupConfirmation.js +46 -39
- package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +5 -5
- package/src/View/Components/Popups/AdaptableToaster.js +2 -0
- package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -0
- package/src/View/Components/Popups/WindowPopups/windowFactory.js +4 -1
- package/src/View/Components/PredicateEditor/PredicateEditor.d.ts +10 -0
- package/src/View/Components/PredicateEditor/PredicateEditor.js +44 -0
- package/src/View/Components/RangesComponent.d.ts +11 -3
- package/src/View/Components/RangesComponent.js +121 -64
- package/src/View/Components/ScopeComponent.js +9 -9
- package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -0
- package/src/View/Components/Selectors/ColumnSelector.js +2 -1
- package/src/View/Components/Selectors/ColumnValueSelector.js +3 -3
- package/src/View/Components/StyleComponent.d.ts +1 -0
- package/src/View/Components/StyleComponent.js +60 -37
- package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +3 -9
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +26 -11
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +0 -1
- package/src/View/CustomSort/CustomSortSummary.js +1 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +2 -2
- package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.js +1 -1
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +1 -1
- package/src/View/Dashboard/Dashboard.js +4 -3
- package/src/View/Dashboard/DashboardPopup.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +10 -1
- package/src/View/DataSet/DataSetSelector.js +2 -2
- package/src/View/DataSet/DataSetStatusPanelPopover.js +1 -1
- package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
- package/src/View/DataSet/DataSetViewPanel.js +1 -1
- package/src/View/Export/ExportSelector.js +2 -2
- package/src/View/Export/ExportViewPanel.d.ts +1 -1
- package/src/View/Export/ExportViewPanel.js +5 -5
- package/src/View/Export/ReportExportDropdown.js +2 -2
- package/src/View/Export/Wizard/ReportNameWizardSection.js +11 -12
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
- package/src/View/Filter/FilterSummary.d.ts +1 -1
- package/src/View/Filter/FilterSummary.js +1 -1
- package/src/View/Filter/FilterViewPanel.d.ts +1 -1
- package/src/View/Filter/FilterViewPanel.js +1 -1
- package/src/View/FlashingCell/FlashingCellStyle.js +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +6 -6
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +8 -6
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +4 -3
- package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
- package/src/View/FormatColumn/MoveFormatColumn.d.ts +7 -0
- package/src/View/FormatColumn/MoveFormatColumn.js +27 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +35 -29
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +8 -0
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +28 -0
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +23 -3
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +2 -28
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +3 -3
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +7 -302
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +18 -26
- package/src/View/FormatColumn/Wizard/constants.d.ts +1 -0
- package/src/View/FormatColumn/Wizard/constants.js +4 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +7 -7
- package/src/View/GridInfo/ColumnInfoComponent.js +27 -19
- package/src/View/GridInfo/GridInfoPopup.js +16 -15
- package/src/View/Layout/LayoutRadioSelector.js +2 -2
- package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +1 -1
- package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
- package/src/View/Layout/LayoutViewPanel.js +1 -1
- package/src/View/Layout/PivotDetailsPopoup.d.ts +3 -0
- package/src/View/Layout/PivotDetailsPopoup.js +65 -0
- package/src/View/Layout/SaveLayoutButton.js +1 -1
- package/src/View/Layout/Wizard/Components/ColumnLabels.js +1 -1
- package/src/View/Layout/Wizard/LayoutWizard.js +9 -4
- package/src/View/Layout/Wizard/sections/AggregationsSection.js +5 -5
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +12 -11
- package/src/View/Layout/Wizard/sections/FilterSection.d.ts +1 -0
- package/src/View/Layout/Wizard/sections/FilterSection.js +52 -3
- package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +2 -2
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +2 -2
- package/src/View/Layout/Wizard/sections/SettingsSection.d.ts +2 -2
- package/src/View/Layout/Wizard/sections/SettingsSection.js +2 -2
- package/src/View/Layout/Wizard/sections/SortSection.js +2 -5
- package/src/View/License/LicenseWatermark.d.ts +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +5 -5
- package/src/View/Query/ExpandedQueryPopup.js +1 -1
- package/src/View/Query/QueryViewPanel.d.ts +1 -1
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +1 -1
- package/src/View/QuickSearch/QuickSearchPopup.js +2 -2
- package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +5 -5
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +5 -5
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +5 -5
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -2
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +2 -2
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +3 -3
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +1 -1
- package/src/View/SmartEdit/SmartEditPopup.js +3 -3
- package/src/View/SmartEdit/SmartEditViewPanel.js +1 -1
- package/src/View/SpecialColumnSettingsWizardStep.js +10 -10
- package/src/View/StateManagement/StateManagementPopup.js +4 -4
- package/src/View/StateManagement/components/ClearButton.d.ts +1 -1
- package/src/View/StateManagement/components/LoadButton.d.ts +1 -1
- package/src/View/StatusBar/StatusBarPanel.d.ts +4 -4
- package/src/View/StatusBar/StatusBarPanel.js +1 -1
- package/src/View/StatusBar/StatusBarPopup.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.d.ts +6 -0
- package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +285 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.d.ts +7 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +106 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.d.ts +9 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +75 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.d.ts +8 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +38 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.d.ts +5 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.js +26 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.d.ts +5 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.js +23 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.d.ts +8 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.js +25 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.d.ts +9 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +263 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/index.d.ts +1 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/index.js +4 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.d.ts +7 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +68 -0
- package/src/View/SystemStatus/SystemStatusEntityRow.js +4 -6
- package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
- package/src/View/TeamSharing/SharedEntityDependencies.js +1 -1
- package/src/View/TeamSharing/SharedEntityObjectView.js +1 -1
- package/src/View/TeamSharing/TeamSharingApplyButton.js +1 -1
- package/src/View/Theme/ThemePopup.js +1 -1
- package/src/View/Theme/ThemeStatusPanelPopover.js +1 -1
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +4 -4
- package/src/View/Wizard/OnePageAdaptableWizard.js +3 -4
- package/src/View/Wizard/OnePageWizards.d.ts +3 -3
- package/src/View/Wizard/OnePageWizards.js +2 -2
- package/src/agGrid/ActionColumnRenderer.d.ts +3 -0
- package/src/agGrid/ActionColumnRenderer.js +98 -64
- package/src/agGrid/Adaptable.d.ts +43 -14
- package/src/agGrid/Adaptable.js +555 -409
- package/src/agGrid/CheckboxRenderer.js +1 -1
- package/src/agGrid/FilterWrapper.js +62 -19
- package/src/agGrid/FloatingFilterWrapper.d.ts +2 -2
- package/src/agGrid/FloatingFilterWrapper.js +70 -32
- package/src/agGrid/PercentBarRenderer.d.ts +2 -2
- package/src/agGrid/PercentBarRenderer.js +16 -15
- package/src/agGrid/agGridHelper.d.ts +2 -2
- package/src/agGrid/agGridHelper.js +31 -20
- package/src/agGrid/agGridMenuHelper.js +3 -3
- package/src/agGrid/createAgStatusPanelComponent.d.ts +2 -1
- package/src/agGrid/createAgStatusPanelComponent.js +20 -3
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +5 -1
- package/src/agGrid/editors/AdaptableDateEditor/index.js +87 -20
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +1 -1
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +3 -3
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +81 -30
- package/src/agGrid/weightedAverage.js +19 -11
- package/src/bundle-dependencies/bundles/react-toastify/index.js +1 -1
- package/src/components/CheckBox/index.d.ts +1 -1
- package/src/components/CheckBox/index.js +7 -2
- package/src/components/ColorPicker/ColorPicker.d.ts +11 -0
- package/src/{View → components/ColorPicker}/ColorPicker.js +19 -6
- package/src/components/ColorPicker/index.d.ts +1 -0
- package/src/components/ColorPicker/index.js +4 -0
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Datepicker/index.js +1 -1
- package/src/components/Dialog/index.d.ts +4 -2
- package/src/components/Dialog/index.js +2 -2
- package/src/components/DragAndDropContext/TabList.js +1 -1
- package/src/components/DragAndDropContext/UnusedPanel.js +3 -2
- package/src/components/DropdownButton/index.d.ts +21 -4
- package/src/components/DropdownButton/index.js +7 -8
- package/src/components/EllipsisContainer/index.js +1 -1
- package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/BaseEditorInput.js +102 -36
- package/src/components/ExpressionEditor/EditorInput.js +1 -1
- package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +1 -1
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +5 -1
- package/src/components/ExpressionEditor/index.js +12 -58
- package/src/components/FormLayout/index.js +1 -1
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +4 -2
- package/src/components/Loader/Loader.d.ts +2 -2
- package/src/components/Logo/index.d.ts +1 -1
- package/src/components/Modal/index.d.ts +1 -1
- package/src/components/Modal/index.js +0 -2
- package/src/components/OverlayTrigger/Overlay.d.ts +1 -4
- package/src/components/OverlayTrigger/Overlay.js +3 -40
- package/src/components/OverlayTrigger/index.d.ts +4 -4
- package/src/components/OverlayTrigger/index.js +75 -50
- package/src/components/OverlayTrigger/utils.d.ts +1 -1
- package/src/components/OverlayTrigger/utils.js +4 -4
- package/src/components/PopupWithFooter.d.ts +2 -2
- package/src/components/ProgressIndicator/ProgressIndicator.d.ts +1 -1
- package/src/components/SelectList.d.ts +1 -1
- package/src/components/SimpleButton/index.d.ts +4 -7
- package/src/components/SimpleButton/index.js +5 -4
- package/src/components/SizedContainer/index.d.ts +1 -1
- package/src/components/StylePreview.d.ts +1 -1
- package/src/components/StylePreview.js +2 -1
- package/src/components/Tag/Tag.d.ts +1 -1
- package/src/components/Textarea/index.d.ts +6 -4
- package/src/components/ToggleButton/index.d.ts +1 -1
- package/src/components/Tooltip/index.d.ts +1 -3
- package/src/components/Tooltip/index.js +2 -2
- package/src/components/WindowModal/WindowModal.d.ts +1 -1
- package/src/components/icons/{conditional-style.d.ts → brush.d.ts} +0 -0
- package/src/components/icons/brush.js +7 -0
- package/src/components/icons/index.d.ts +3 -2
- package/src/components/icons/index.js +4 -2
- package/src/components/icons/layout.d.ts +2 -1
- package/src/components/icons/open-in-new.d.ts +3 -0
- package/src/components/icons/{conditional-style.js → open-in-new.js} +1 -1
- package/src/components/utils/useContainerScrollObserver/index.d.ts +1 -1
- package/src/env.js +1 -3
- package/src/metamodel/adaptable.metamodel.d.ts +572 -160
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/parser.js +644 -382
- package/src/parser/src/types.d.ts +15 -3
- package/src/renderReactRoot.d.ts +5 -0
- package/src/renderReactRoot.js +56 -0
- package/src/types.d.ts +26 -17
- package/themes/dark.css +8 -4
- package/themes/dark.css.map +1 -0
- package/themes/light.css +4 -1
- package/themes/light.css.map +1 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableComponents.d.ts +0 -1
- package/src/AdaptableComponents.js +0 -5
- package/src/Api/ConditionalStyleApi.d.ts +0 -108
- package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +0 -29
- package/src/Api/Implementation/ConditionalStyleApiImpl.js +0 -98
- package/src/Api/Implementation/InternalApiImpl.js +0 -654
- package/src/Api/InternalApi.d.ts +0 -147
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +0 -49
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +0 -95
- package/src/Strategy/ConditionalStyleModule.d.ts +0 -29
- package/src/Strategy/ConditionalStyleModule.js +0 -225
- package/src/Strategy/Interface/IConditionalStyleModule.d.ts +0 -6
- package/src/Strategy/Utilities/getStyleViewItems.d.ts +0 -2
- package/src/Strategy/Utilities/getStyleViewItems.js +0 -16
- package/src/Utilities/Helpers/CalendarHelper.d.ts +0 -25
- package/src/Utilities/Helpers/CalendarHelper.js +0 -342
- package/src/Utilities/Services/LicenseService.js +0 -1
- package/src/View/ColorPicker.d.ts +0 -14
- package/src/View/ConditionalStyle/ConditionalStyleSummary.d.ts +0 -25
- package/src/View/ConditionalStyle/ConditionalStyleSummary.js +0 -108
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.d.ts +0 -9
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +0 -42
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.d.ts +0 -8
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +0 -43
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.d.ts +0 -8
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +0 -29
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.d.ts +0 -8
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +0 -23
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.d.ts +0 -6
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +0 -114
- package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.d.ts +0 -1
- package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.js +0 -4
- package/src/components/OverlayTrigger/getOverlayStyle.d.ts +0 -13
- package/src/components/OverlayTrigger/getOverlayStyle.js +0 -56
package/base.css
CHANGED
|
@@ -1,731 +1,6 @@
|
|
|
1
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/theme.css.ts.vanilla.css?source=#H4sIAAAAAAAAA+1X227jIBB9z1cg9aWRShXfktZ9WWm/BAOOUWyIgKTNrvrvC66ztrFxknb7tC6qomTOMPjMmcGTSiE0+L0AAELGc8aZplDtEaZwlYKVpNXLmC0wtscgTHz20Nr95siavdbYWjdec5KCwGdbG9tE3I01e61PKQgnnJ9TEHn5MGTFQ2MuuIaK/fogcyxyi6gpXY+FbzGhj5kWUlP7NI2JRxls7YmPxRay9jDZIjY+NmtIjipWnlLAeEEl0w4Ei1LIFNzFT3Y5RoQxNTucMXm+WcWRg6FSCtmBrMyfA8mEJFRCiQg7qBQckbwfynjpOiG820px4CQFr4X5xbFXjMOCsm2hDT+r1f7NsZcCEVghtYOavunednKbofswSR7O/yaNbvjWXRypLNGpt8NWotNFB2EejOmTVYlLWgtuiBtPTgvbI0IY33rIS/ynn+a+Z3U3kbRWV4E4Ka0WNDuaD0kRfGVEF0Z0Q9b7PmfcBVhhGevxe7fO8nydTXphwZWWiHFKRnZwHrSjUvcxC4osB5iWZf8MlNg1gR45N8ntmvBpEgnfPKmMpo53dj59wXngOhpgeQ3qbQkm4jGToLo/mfpcDxTQRSoh9Qe8QnLL+JTDRI7HE+mjpGlY69yuYVM8VPwMPXeZaCj3OlazFT5IabrlT/ttDNbUWlMTwfhe03UeDtLiyXsn4GCrwWGWQImSEXCH13Y5W+0ZtxX2uR1DFIWRW0JdOONHplhWGpFwwd0e30Xedns0GZT0w5nmOcUakoNEmgkjsMdQDe66ur91Qyp9sgcjSBWDPjAC92Z2BFtrBkLD5WZzNdrIIoifr4ZnpvMGyRT8b5FAVO4L9PEmeYMDhBqZ3MEDzwU+KErqd1W3a4vXqar1V6p1FIT0G2xdrq5GrXU/CHSHM5xg93labKMRTpWuS26kvi1srMtndo1g94JxbfV2NJ1AQfPeYthRWIqyrEOggxYvi/fFY2lbygN4bG/s5of6M7WjwsCazgPEPEDMA8Q8QMwDxDxAzAPEPEDMA8Q8QMwDxP85QBAkd90JwX53Z4NeyGAVxIGb+15RGt1Nlp3T+HBk17V3YZCFQeiGv3AXhmH4HIXf1MY9mYmyeJPE36rAMDb0uiLvXgR/qX1f/KgoYQjc7yXNqVRNZSpc0KpuLHK3rLPezobXKOBGDVynglt18Dkl/Dst3KaGL+jhFkVc1gQA74v3P9F2j39MHAAA */
|
|
2
|
-
:root {
|
|
3
|
-
--infinite-space-0: 0rem;
|
|
4
|
-
--infinite-space-1: 0.125rem;
|
|
5
|
-
--infinite-space-2: 0.25rem;
|
|
6
|
-
--infinite-space-3: 0.5rem;
|
|
7
|
-
--infinite-space-4: 0.75rem;
|
|
8
|
-
--infinite-space-5: 1rem;
|
|
9
|
-
--infinite-space-6: 1.25rem;
|
|
10
|
-
--infinite-space-7: 1.5rem;
|
|
11
|
-
--infinite-space-8: 2.25rem;
|
|
12
|
-
--infinite-space-9: 3rem;
|
|
13
|
-
--infinite-space-10: 4rem;
|
|
14
|
-
--infinite-font-size-0: 0.5rem;
|
|
15
|
-
--infinite-font-size-1: 0.625rem;
|
|
16
|
-
--infinite-font-size-2: 0.75rem;
|
|
17
|
-
--infinite-font-size-3: 0.875rem;
|
|
18
|
-
--infinite-font-size-4: 1rem;
|
|
19
|
-
--infinite-font-size-5: 1.25rem;
|
|
20
|
-
--infinite-font-size-6: 1.5rem;
|
|
21
|
-
--infinite-font-size-7: 2.25rem;
|
|
22
|
-
--infinite-font-family: inherit;
|
|
23
|
-
--infinite-color: #484848;
|
|
24
|
-
--infinite-accent-color: #ff7043;
|
|
25
|
-
--infinite-error-color: #ff0000;
|
|
26
|
-
--infinite-border-radius: var(--infinite-space-2);
|
|
27
|
-
--infinite-background: white;
|
|
28
|
-
--infinite-min-height: 100px;
|
|
29
|
-
--infinite-load-mask-text-background: rgba(255,255,255,0.8);
|
|
30
|
-
--infinite-load-mask-overlay-background: gray;
|
|
31
|
-
--infinite-load-mask-overlay-opacity: 0.3;
|
|
32
|
-
--infinite-load-mask-color: inherit;
|
|
33
|
-
--infinite-load-mask-padding: var(--infinite-space-5);
|
|
34
|
-
--infinite-load-mask-border-radius: var(--infinite-border-radius);
|
|
35
|
-
--infinite-resize-handle-active-area-width: 20px;
|
|
36
|
-
--infinite-resize-handle-width: 2px;
|
|
37
|
-
--infinite-resize-handle-hover-background: #6bff6b;
|
|
38
|
-
--infinite-resize-handle-constrained-hover-background: var(--infinite-error-color);
|
|
39
|
-
--infinite-header-cell-background: #ededed;
|
|
40
|
-
--infinite-header-cell-hover-background: #dfdfdf;
|
|
41
|
-
--infinite-header-cell-padding-x: var(--infinite-space-3);
|
|
42
|
-
--infinite-header-cell-padding-y: var(--infinite-space-3);
|
|
43
|
-
--infinite-header-cell-padding: var(--infinite-header-cell-padding-y) var(--infinite-header-cell-padding-x) ;
|
|
44
|
-
--infinite-header-cell-icon-size: 16px;
|
|
45
|
-
--infinite-header-cell-sort-icon-margin: 16px;
|
|
46
|
-
--infinite-header-background: var(--infinite-header-cell-background);
|
|
47
|
-
--infinite-header-color: #6f6f6f;
|
|
48
|
-
--infinite-column-header-height: 30px;
|
|
49
|
-
--infinite-cell-color: currentColor;
|
|
50
|
-
--infinite-cell-border-width: 1px;
|
|
51
|
-
--infinite-cell-padding: var(--infinite-space-2) var(--infinite-space-3);
|
|
52
|
-
--infinite-cell-border: var(--infinite-cell-border-width) solid #c6c6c6;
|
|
53
|
-
--infinite-pinned-cell-border: var(--infinite-cell-border-width) solid #2a323d;
|
|
54
|
-
--infinite-cell-border-invisible: none;
|
|
55
|
-
--infinite-cell-border-radius: var(--infinite-space-2);
|
|
56
|
-
--infinite-column-reorder-effect-duration: .2s;
|
|
57
|
-
--infinite-active-cell-border-style: dashed;
|
|
58
|
-
--infinite-active-cell-border-width: 1px;
|
|
59
|
-
--infinite-active-cell-border-color--r: 77;
|
|
60
|
-
--infinite-active-cell-border-color--g: 149;
|
|
61
|
-
--infinite-active-cell-border-color--b: 215;
|
|
62
|
-
--infinite-active-cell-background-alpha: 0.25;
|
|
63
|
-
--infinite-active-cell-background-alpha--table-unfocused: 0.1;
|
|
64
|
-
--infinite-row-background: var(--infinite-background);
|
|
65
|
-
--infinite-row-odd-background: #f6f6f6;
|
|
66
|
-
--infinite-group-row-background: #cbc5c5;
|
|
67
|
-
--infinite-group-row-column-nesting: 30px;
|
|
68
|
-
--infinite-row-hover-background: #dbdbdb;
|
|
69
|
-
--infinite-row-pointer-events-while-scrolling: auto;
|
|
70
|
-
}
|
|
71
|
-
.light,
|
|
72
|
-
.infinite-light,
|
|
73
|
-
.light:root,
|
|
74
|
-
.infinite-light:root {
|
|
75
|
-
--infinite-space-0: 0rem;
|
|
76
|
-
--infinite-space-1: 0.125rem;
|
|
77
|
-
--infinite-space-2: 0.25rem;
|
|
78
|
-
--infinite-space-3: 0.5rem;
|
|
79
|
-
--infinite-space-4: 0.75rem;
|
|
80
|
-
--infinite-space-5: 1rem;
|
|
81
|
-
--infinite-space-6: 1.25rem;
|
|
82
|
-
--infinite-space-7: 1.5rem;
|
|
83
|
-
--infinite-space-8: 2.25rem;
|
|
84
|
-
--infinite-space-9: 3rem;
|
|
85
|
-
--infinite-space-10: 4rem;
|
|
86
|
-
--infinite-font-size-0: 0.5rem;
|
|
87
|
-
--infinite-font-size-1: 0.625rem;
|
|
88
|
-
--infinite-font-size-2: 0.75rem;
|
|
89
|
-
--infinite-font-size-3: 0.875rem;
|
|
90
|
-
--infinite-font-size-4: 1rem;
|
|
91
|
-
--infinite-font-size-5: 1.25rem;
|
|
92
|
-
--infinite-font-size-6: 1.5rem;
|
|
93
|
-
--infinite-font-size-7: 2.25rem;
|
|
94
|
-
--infinite-font-family: inherit;
|
|
95
|
-
--infinite-color: #484848;
|
|
96
|
-
--infinite-accent-color: #ff7043;
|
|
97
|
-
--infinite-error-color: #ff0000;
|
|
98
|
-
--infinite-border-radius: var(--infinite-space-2);
|
|
99
|
-
--infinite-background: white;
|
|
100
|
-
--infinite-min-height: 100px;
|
|
101
|
-
--infinite-load-mask-text-background: rgba(255,255,255,0.8);
|
|
102
|
-
--infinite-load-mask-overlay-background: gray;
|
|
103
|
-
--infinite-load-mask-overlay-opacity: 0.3;
|
|
104
|
-
--infinite-load-mask-color: inherit;
|
|
105
|
-
--infinite-load-mask-padding: var(--infinite-space-5);
|
|
106
|
-
--infinite-load-mask-border-radius: var(--infinite-border-radius);
|
|
107
|
-
--infinite-resize-handle-active-area-width: 20px;
|
|
108
|
-
--infinite-resize-handle-width: 2px;
|
|
109
|
-
--infinite-resize-handle-hover-background: #6bff6b;
|
|
110
|
-
--infinite-resize-handle-constrained-hover-background: var(--infinite-error-color);
|
|
111
|
-
--infinite-header-cell-background: #ededed;
|
|
112
|
-
--infinite-header-cell-hover-background: #dfdfdf;
|
|
113
|
-
--infinite-header-cell-padding-x: var(--infinite-space-3);
|
|
114
|
-
--infinite-header-cell-padding-y: var(--infinite-space-3);
|
|
115
|
-
--infinite-header-cell-padding: var(--infinite-header-cell-padding-y) var(--infinite-header-cell-padding-x) ;
|
|
116
|
-
--infinite-header-cell-icon-size: 16px;
|
|
117
|
-
--infinite-header-cell-sort-icon-margin: 16px;
|
|
118
|
-
--infinite-header-background: var(--infinite-header-cell-background);
|
|
119
|
-
--infinite-header-color: #6f6f6f;
|
|
120
|
-
--infinite-column-header-height: 30px;
|
|
121
|
-
--infinite-cell-color: currentColor;
|
|
122
|
-
--infinite-cell-border-width: 1px;
|
|
123
|
-
--infinite-cell-padding: var(--infinite-space-2) var(--infinite-space-3);
|
|
124
|
-
--infinite-cell-border: var(--infinite-cell-border-width) solid #c6c6c6;
|
|
125
|
-
--infinite-pinned-cell-border: var(--infinite-cell-border-width) solid #2a323d;
|
|
126
|
-
--infinite-cell-border-invisible: none;
|
|
127
|
-
--infinite-cell-border-radius: var(--infinite-space-2);
|
|
128
|
-
--infinite-column-reorder-effect-duration: .2s;
|
|
129
|
-
--infinite-active-cell-border-style: dashed;
|
|
130
|
-
--infinite-active-cell-border-width: 1px;
|
|
131
|
-
--infinite-active-cell-border-color--r: 77;
|
|
132
|
-
--infinite-active-cell-border-color--g: 149;
|
|
133
|
-
--infinite-active-cell-border-color--b: 215;
|
|
134
|
-
--infinite-active-cell-background-alpha: 0.25;
|
|
135
|
-
--infinite-active-cell-background-alpha--table-unfocused: 0.1;
|
|
136
|
-
--infinite-row-background: var(--infinite-background);
|
|
137
|
-
--infinite-row-odd-background: #f6f6f6;
|
|
138
|
-
--infinite-group-row-background: #cbc5c5;
|
|
139
|
-
--infinite-group-row-column-nesting: 30px;
|
|
140
|
-
--infinite-row-hover-background: #dbdbdb;
|
|
141
|
-
--infinite-row-pointer-events-while-scrolling: auto;
|
|
142
|
-
}
|
|
143
|
-
.dark,
|
|
144
|
-
.infinite-dark {
|
|
145
|
-
--infinite-background: #101419;
|
|
146
|
-
--infinite-cell-border: 1px solid #2a323d;
|
|
147
|
-
--infinite-header-color: #c3c3c3;
|
|
148
|
-
--infinite-header-cell-background: #1b2129;
|
|
149
|
-
--infinite-header-cell-hover-background: #222932;
|
|
150
|
-
--infinite-header-background: var(--infinite-header-cell-background);
|
|
151
|
-
--infinite-row-hover-background: #3b4754;
|
|
152
|
-
--infinite-row-background: var(--infinite-background);
|
|
153
|
-
--infinite-row-odd-background: #242a31;
|
|
154
|
-
--infinite-cell-color: #c3c3c3;
|
|
155
|
-
}
|
|
156
|
-
@media (prefers-color-scheme: dark) {
|
|
157
|
-
:root {
|
|
158
|
-
--infinite-background: #101419;
|
|
159
|
-
--infinite-cell-border: 1px solid #2a323d;
|
|
160
|
-
--infinite-header-color: #c3c3c3;
|
|
161
|
-
--infinite-header-cell-background: #1b2129;
|
|
162
|
-
--infinite-header-cell-hover-background: #222932;
|
|
163
|
-
--infinite-header-background: var(--infinite-header-cell-background);
|
|
164
|
-
--infinite-row-hover-background: #3b4754;
|
|
165
|
-
--infinite-row-background: var(--infinite-background);
|
|
166
|
-
--infinite-row-odd-background: #242a31;
|
|
167
|
-
--infinite-cell-color: #c3c3c3;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/utilities.css.ts.vanilla.css?source=#H4sIAAAAAAAAA5WV3XKbMBCF7/MU3HQm7VQZ0zR/9LIP0hFigY1liUrC2On03buWMgmLaBKPbxif74jVLjq6+lXe6l2J06b4c1EUtT0Ij09ouoqeXQNO0F8/Lv5eXL2AVQ2tdfBxXrYB3Ifx4ssZ6Lm1kOOsasoIDtZjQGuqwoGWAffAoG8LSNbe6jFw6HoB+YBqe2TI9wXS4gEaRtxEokWtq0KNzoEJP622jkG3M2gv3aUQaFo0GEBIpcgi1MnzmZnuoskHZ7fwxtr3DPvw6g+p31JtO2dH01QFmh4cBkbJSAUnjaeh7qr0SA2H6+Zy85V+fNX6TF4teWcDwZcPmwY6jjYRpTZ46yoaCRr6aBgBjKA9Cwf0MfGht88TjXYBe2qPrwpjDce6NDENh6oomdLPlMyGUXyiATS583Ehbpi6Xapc1pnM9V2uc8CsAJywawRHhlWEM7/fqdS9V6l/t9IQiQb9oOWxisNg+sj1bEx7rtfaqi0DJg6g0WhA5NwhcqOnT8mDBhVWXnaMTA/Y9STzjTwxjXb6iWddugImbEK/tJblXMutKQKDHTLj9auS21LiaWizWsubmZQbb2eqHIPl6t1zvIdgd9nC90zMl05Z5dYaWMq5llvruZyXpV4Os2i1nWJqjDvDoWYJOTtxIiWP1NgZQbG7o0Q55e4in8o2xyi3Iaiecyl8Hke6kNojhTetZML6kv06Gov1QToe5yW+gYPhN1uZ8sruwaVt99g0sOjNdsHkLdYLYo8ea82PSJnSK0qoMRz/g5kMW6vJPh8MrYXqpemger1hOJnibOpPV6UfpILT8Z2cHDiWEi3AIYjXfYDWOHj0hP4DUOrmI7IJAAA= */
|
|
171
|
-
._16lm1iw0 {
|
|
172
|
-
box-sizing: border-box;
|
|
173
|
-
}
|
|
174
|
-
._16lm1iw0:before {
|
|
175
|
-
box-sizing: border-box;
|
|
176
|
-
}
|
|
177
|
-
._16lm1iw0:after {
|
|
178
|
-
box-sizing: border-box;
|
|
179
|
-
}
|
|
180
|
-
._16lm1iw0 * {
|
|
181
|
-
box-sizing: border-box;
|
|
182
|
-
}
|
|
183
|
-
._16lm1iw0 *:before {
|
|
184
|
-
box-sizing: border-box;
|
|
185
|
-
}
|
|
186
|
-
._16lm1iw0 *:after {
|
|
187
|
-
box-sizing: border-box;
|
|
188
|
-
}
|
|
189
|
-
._16lm1iw1 {
|
|
190
|
-
position: relative;
|
|
191
|
-
}
|
|
192
|
-
._16lm1iw2 {
|
|
193
|
-
position: absolute;
|
|
194
|
-
}
|
|
195
|
-
._16lm1iw3 {
|
|
196
|
-
position: -webkit-sticky;
|
|
197
|
-
position: sticky;
|
|
198
|
-
}
|
|
199
|
-
._16lm1iw4 {
|
|
200
|
-
position: fixed;
|
|
201
|
-
}
|
|
202
|
-
._16lm1iw5 {
|
|
203
|
-
fill: currentColor;
|
|
204
|
-
}
|
|
205
|
-
._16lm1iw6 {
|
|
206
|
-
fill: var(--infinite-accent-color);
|
|
207
|
-
}
|
|
208
|
-
._16lm1iw7 {
|
|
209
|
-
stroke: currentColor;
|
|
210
|
-
}
|
|
211
|
-
._16lm1iw8 {
|
|
212
|
-
stroke: var(--infinite-accent-color);
|
|
213
|
-
}
|
|
214
|
-
._16lm1iw9 {
|
|
215
|
-
background: inherit;
|
|
216
|
-
}
|
|
217
|
-
._16lm1iwa {
|
|
218
|
-
transform: translate3d(0, 0, 0);
|
|
219
|
-
}
|
|
220
|
-
._16lm1iwb {
|
|
221
|
-
transform: translate3d(0, 0, 0);
|
|
222
|
-
}
|
|
223
|
-
._16lm1iwc {
|
|
224
|
-
transform: rotate(90deg);
|
|
225
|
-
}
|
|
226
|
-
._16lm1iwd {
|
|
227
|
-
cursor: pointer;
|
|
228
|
-
}
|
|
229
|
-
._16lm1iwe {
|
|
230
|
-
cursor: col-resize;
|
|
231
|
-
}
|
|
232
|
-
._16lm1iwf {
|
|
233
|
-
pointer-events: none;
|
|
234
|
-
}
|
|
235
|
-
._16lm1iwg {
|
|
236
|
-
flex: 1;
|
|
237
|
-
}
|
|
238
|
-
._16lm1iwh {
|
|
239
|
-
flex: none;
|
|
240
|
-
}
|
|
241
|
-
._16lm1iwi {
|
|
242
|
-
z-index: 1;
|
|
243
|
-
}
|
|
244
|
-
._16lm1iwj {
|
|
245
|
-
z-index: 10;
|
|
246
|
-
}
|
|
247
|
-
._16lm1iwk {
|
|
248
|
-
z-index: 100;
|
|
249
|
-
}
|
|
250
|
-
._16lm1iwl {
|
|
251
|
-
z-index: 1000;
|
|
252
|
-
}
|
|
253
|
-
._16lm1iwm {
|
|
254
|
-
z-index: 10000;
|
|
255
|
-
}
|
|
256
|
-
._16lm1iwn {
|
|
257
|
-
z-index: 100000;
|
|
258
|
-
}
|
|
259
|
-
._16lm1iwo {
|
|
260
|
-
z-index: 1000000;
|
|
261
|
-
}
|
|
262
|
-
._16lm1iwp {
|
|
263
|
-
z-index: 10000000;
|
|
264
|
-
}
|
|
265
|
-
._16lm1iwq {
|
|
266
|
-
z-index: 1000;
|
|
267
|
-
}
|
|
268
|
-
._16lm1iwr {
|
|
269
|
-
z-index: 10000;
|
|
270
|
-
}
|
|
271
|
-
._16lm1iws {
|
|
272
|
-
z-index: 100000;
|
|
273
|
-
}
|
|
274
|
-
._16lm1iwt {
|
|
275
|
-
display: flex;
|
|
276
|
-
}
|
|
277
|
-
._16lm1iwu {
|
|
278
|
-
display: none;
|
|
279
|
-
}
|
|
280
|
-
._16lm1iwv {
|
|
281
|
-
display: block;
|
|
282
|
-
}
|
|
283
|
-
._16lm1iww {
|
|
284
|
-
display: inline-block;
|
|
285
|
-
}
|
|
286
|
-
._16lm1iwx {
|
|
287
|
-
-webkit-user-select: none;
|
|
288
|
-
-moz-user-select: none;
|
|
289
|
-
-ms-user-select: none;
|
|
290
|
-
user-select: none;
|
|
291
|
-
}
|
|
292
|
-
._16lm1iwy {
|
|
293
|
-
height: 0;
|
|
294
|
-
}
|
|
295
|
-
._16lm1iwz {
|
|
296
|
-
height: 100%;
|
|
297
|
-
}
|
|
298
|
-
._16lm1iw10 {
|
|
299
|
-
width: 0;
|
|
300
|
-
}
|
|
301
|
-
._16lm1iw11 {
|
|
302
|
-
width: 100%;
|
|
303
|
-
}
|
|
304
|
-
._16lm1iw12 {
|
|
305
|
-
top: 0;
|
|
306
|
-
}
|
|
307
|
-
._16lm1iw13 {
|
|
308
|
-
top: 100%;
|
|
309
|
-
}
|
|
310
|
-
._16lm1iw14 {
|
|
311
|
-
left: 0;
|
|
312
|
-
}
|
|
313
|
-
._16lm1iw15 {
|
|
314
|
-
left: 100%;
|
|
315
|
-
}
|
|
316
|
-
._16lm1iw16 {
|
|
317
|
-
left: auto;
|
|
318
|
-
}
|
|
319
|
-
._16lm1iw17 {
|
|
320
|
-
bottom: 0;
|
|
321
|
-
}
|
|
322
|
-
._16lm1iw18 {
|
|
323
|
-
bottom: 100%;
|
|
324
|
-
}
|
|
325
|
-
._16lm1iw19 {
|
|
326
|
-
right: 0;
|
|
327
|
-
}
|
|
328
|
-
._16lm1iw1a {
|
|
329
|
-
right: 100%;
|
|
330
|
-
}
|
|
331
|
-
._16lm1iw1b {
|
|
332
|
-
right: auto;
|
|
333
|
-
}
|
|
334
|
-
._16lm1iw1c {
|
|
335
|
-
flex-flow: column;
|
|
336
|
-
}
|
|
337
|
-
._16lm1iw1d {
|
|
338
|
-
flex-flow: row;
|
|
339
|
-
}
|
|
340
|
-
._16lm1iw1e {
|
|
341
|
-
align-items: center;
|
|
342
|
-
}
|
|
343
|
-
._16lm1iw1f {
|
|
344
|
-
align-items: stretch;
|
|
345
|
-
}
|
|
346
|
-
._16lm1iw1g {
|
|
347
|
-
justify-content: center;
|
|
348
|
-
}
|
|
349
|
-
._16lm1iw1h {
|
|
350
|
-
justify-content: flex-start;
|
|
351
|
-
}
|
|
352
|
-
._16lm1iw1i {
|
|
353
|
-
justify-content: flex-end;
|
|
354
|
-
}
|
|
355
|
-
._16lm1iw1j {
|
|
356
|
-
overflow: hidden;
|
|
357
|
-
}
|
|
358
|
-
._16lm1iw1k {
|
|
359
|
-
overflow: auto;
|
|
360
|
-
}
|
|
361
|
-
._16lm1iw1l {
|
|
362
|
-
overflow: visible;
|
|
363
|
-
}
|
|
364
|
-
._16lm1iw1m {
|
|
365
|
-
visibility: visible;
|
|
366
|
-
}
|
|
367
|
-
._16lm1iw1n {
|
|
368
|
-
visibility: hidden;
|
|
369
|
-
}
|
|
370
|
-
._16lm1iw1o {
|
|
371
|
-
will-change: transform;
|
|
372
|
-
}
|
|
373
|
-
._16lm1iw1p {
|
|
374
|
-
white-space: nowrap;
|
|
375
|
-
}
|
|
376
|
-
._16lm1iw1q {
|
|
377
|
-
text-overflow: ellipsis;
|
|
378
|
-
}
|
|
379
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/VirtualList/VirtualList.css.ts.vanilla.css?source=Lm1seDJ0MiB7CiAgZGlzcGxheTogaW5saW5lLWJsb2NrOwp9Ci5tbHgydDMgewogIGhlaWdodDogMDsKICB3aWR0aDogMDsKICB3aWxsLWNoYW5nZTogdHJhbnNmb3JtOwp9 */
|
|
380
|
-
.mlx2t2 {
|
|
381
|
-
display: inline-block;
|
|
382
|
-
}
|
|
383
|
-
.mlx2t3 {
|
|
384
|
-
height: 0;
|
|
385
|
-
width: 0;
|
|
386
|
-
will-change: transform;
|
|
387
|
-
}
|
|
388
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/VirtualScrollContainer/VirtualScrollContainer.css.ts.vanilla.css?source=Ll8xdWVpamNvMCB7CiAgYmFja2ZhY2UtdmlzaWJpbGl0eTogaGlkZGVuOwogIC13ZWJraXQtb3ZlcmZsb3ctc2Nyb2xsaW5nOiB0b3VjaDsKICBvdXRsaW5lOiBub25lOwogIHBvc2l0aW9uOiBmaXhlZDsKICBoZWlnaHQ6IDEwMCU7CiAgd2lkdGg6IDEwMCU7CiAgbGVmdDogMDsKICB0b3A6IDA7Cn0KLl8xdWVpamNvMCA+IDpmaXJzdC1jaGlsZCB7CiAgcG9zaXRpb246IHN0aWNreTsKICB0b3A6IDA7CiAgbGVmdDogMDsKfQouXzF1ZWlqY28xIHsKICBvdmVyZmxvdzogYXV0bzsKfQouXzF1ZWlqY28yIHsKICBvdmVyZmxvdzogaGlkZGVuOwp9Ci5fMXVlaWpjbzMgewogIG92ZXJmbG93OiB2aXNpYmxlOwp9Ci5fMXVlaWpjbzQgewogIG92ZXJmbG93OiBhdXRvOwp9Ci5fMXVlaWpjbzUgewogIG92ZXJmbG93OiBoaWRkZW47Cn0KLl8xdWVpamNvNiB7CiAgb3ZlcmZsb3cteDogYXV0bzsKfQouXzF1ZWlqY283IHsKICBvdmVyZmxvdy14OiBoaWRkZW47Cn0KLl8xdWVpamNvOCB7CiAgb3ZlcmZsb3cteDogdmlzaWJsZTsKfQouXzF1ZWlqY285IHsKICBvdmVyZmxvdy14OiBhdXRvOwp9Ci5fMXVlaWpjb2EgewogIG92ZXJmbG93LXg6IGhpZGRlbjsKfQouXzF1ZWlqY29iIHsKICBvdmVyZmxvdy15OiBhdXRvOwp9Ci5fMXVlaWpjb2MgewogIG92ZXJmbG93LXk6IGhpZGRlbjsKfQouXzF1ZWlqY29kIHsKICBvdmVyZmxvdy15OiB2aXNpYmxlOwp9Ci5fMXVlaWpjb2UgewogIG92ZXJmbG93LXk6IGF1dG87Cn0KLl8xdWVpamNvZiB7CiAgb3ZlcmZsb3cteTogaGlkZGVuOwp9 */
|
|
389
|
-
._1ueijco0 {
|
|
390
|
-
-webkit-backface-visibility: hidden;
|
|
391
|
-
backface-visibility: hidden;
|
|
392
|
-
-webkit-overflow-scrolling: touch;
|
|
393
|
-
outline: none;
|
|
394
|
-
position: fixed;
|
|
395
|
-
height: 100%;
|
|
396
|
-
width: 100%;
|
|
397
|
-
left: 0;
|
|
398
|
-
top: 0;
|
|
399
|
-
}
|
|
400
|
-
._1ueijco0 > :first-child {
|
|
401
|
-
position: -webkit-sticky;
|
|
402
|
-
position: sticky;
|
|
403
|
-
top: 0;
|
|
404
|
-
left: 0;
|
|
405
|
-
}
|
|
406
|
-
._1ueijco1 {
|
|
407
|
-
overflow: auto;
|
|
408
|
-
}
|
|
409
|
-
._1ueijco2 {
|
|
410
|
-
overflow: hidden;
|
|
411
|
-
}
|
|
412
|
-
._1ueijco3 {
|
|
413
|
-
overflow: visible;
|
|
414
|
-
}
|
|
415
|
-
._1ueijco4 {
|
|
416
|
-
overflow: auto;
|
|
417
|
-
}
|
|
418
|
-
._1ueijco5 {
|
|
419
|
-
overflow: hidden;
|
|
420
|
-
}
|
|
421
|
-
._1ueijco6 {
|
|
422
|
-
overflow-x: auto;
|
|
423
|
-
}
|
|
424
|
-
._1ueijco7 {
|
|
425
|
-
overflow-x: hidden;
|
|
426
|
-
}
|
|
427
|
-
._1ueijco8 {
|
|
428
|
-
overflow-x: visible;
|
|
429
|
-
}
|
|
430
|
-
._1ueijco9 {
|
|
431
|
-
overflow-x: auto;
|
|
432
|
-
}
|
|
433
|
-
._1ueijcoa {
|
|
434
|
-
overflow-x: hidden;
|
|
435
|
-
}
|
|
436
|
-
._1ueijcob {
|
|
437
|
-
overflow-y: auto;
|
|
438
|
-
}
|
|
439
|
-
._1ueijcoc {
|
|
440
|
-
overflow-y: hidden;
|
|
441
|
-
}
|
|
442
|
-
._1ueijcod {
|
|
443
|
-
overflow-y: visible;
|
|
444
|
-
}
|
|
445
|
-
._1ueijcoe {
|
|
446
|
-
overflow-y: auto;
|
|
447
|
-
}
|
|
448
|
-
._1ueijcof {
|
|
449
|
-
overflow-y: hidden;
|
|
450
|
-
}
|
|
451
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/components/ActiveCellIndicator.css.ts.vanilla.css?source=Lm54YnExYzEgewogIGJvcmRlcjogdmFyKC0taW5maW5pdGUtYWN0aXZlLWNlbGwtYm9yZGVyLCB2YXIoLS1pbmZpbml0ZS1hY3RpdmUtY2VsbC1ib3JkZXItd2lkdGgpIHZhcigtLWluZmluaXRlLWFjdGl2ZS1jZWxsLWJvcmRlci1zdHlsZSkgdmFyKC0taW5maW5pdGUtYWN0aXZlLWNlbGwtYm9yZGVyLWNvbG9yLCByZ2IodmFyKC0taW5maW5pdGUtYWN0aXZlLWNlbGwtYm9yZGVyLWNvbG9yLS1yKSB2YXIoLS1pbmZpbml0ZS1hY3RpdmUtY2VsbC1ib3JkZXItY29sb3ItLWcpIHZhcigtLWluZmluaXRlLWFjdGl2ZS1jZWxsLWJvcmRlci1jb2xvci0tYikpKSk7CiAgYmFja2dyb3VuZDogdmFyKC0taW5maW5pdGUtYWN0aXZlLWNlbGwtYmFja2dyb3VuZCwgcmdiYSh2YXIoLS1pbmZpbml0ZS1hY3RpdmUtY2VsbC1ib3JkZXItY29sb3ItLXIpLCB2YXIoLS1pbmZpbml0ZS1hY3RpdmUtY2VsbC1ib3JkZXItY29sb3ItLWcpLCB2YXIoLS1pbmZpbml0ZS1hY3RpdmUtY2VsbC1ib3JkZXItY29sb3ItLWIpLCB2YXIoLS1pbmZpbml0ZS1hY3RpdmUtY2VsbC1iYWNrZ3JvdW5kLWFscGhhKSkpOwp9Ci5ueGJxMWMyIHsKICBkaXNwbGF5OiBibG9jazsKfQoubnhicTFjMyB7CiAgZGlzcGxheTogbm9uZTsKfQ== */
|
|
452
|
-
.nxbq1c1 {
|
|
453
|
-
border: var(--infinite-active-cell-border, var(--infinite-active-cell-border-width) var(--infinite-active-cell-border-style) var(--infinite-active-cell-border-color, rgb(var(--infinite-active-cell-border-color--r) var(--infinite-active-cell-border-color--g) var(--infinite-active-cell-border-color--b))));
|
|
454
|
-
background: var(--infinite-active-cell-background, rgba(var(--infinite-active-cell-border-color--r), var(--infinite-active-cell-border-color--g), var(--infinite-active-cell-border-color--b), var(--infinite-active-cell-background-alpha)));
|
|
455
|
-
}
|
|
456
|
-
.nxbq1c2 {
|
|
457
|
-
display: block;
|
|
458
|
-
}
|
|
459
|
-
.nxbq1c3 {
|
|
460
|
-
display: none;
|
|
461
|
-
}
|
|
462
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/components/ActiveRowIndicator.css.ts.vanilla.css?source=LmoyNmxyeDAgewogIC0taW5maW5pdGUtYWN0aXZlLXJvdy1ib3JkZXItc3R5bGU6IHZhcigtLWluZmluaXRlLWFjdGl2ZS1yb3ctYm9yZGVyLXN0eWxlLCB2YXIoLS1pbmZpbml0ZS1hY3RpdmUtY2VsbC1ib3JkZXItc3R5bGUpKTsKICBib3JkZXI6IHZhcigtLWluZmluaXRlLWFjdGl2ZS1yb3ctYm9yZGVyLCB2YXIoLS1pbmZpbml0ZS1hY3RpdmUtcm93LWJvcmRlci13aWR0aCwgdmFyKC0taW5maW5pdGUtYWN0aXZlLWNlbGwtYm9yZGVyLXdpZHRoKSkgdmFyKC0taW5maW5pdGUtYWN0aXZlLXJvdy1ib3JkZXItc3R5bGUsIHZhcigtLWluZmluaXRlLWFjdGl2ZS1jZWxsLWJvcmRlci1zdHlsZSkpIHZhcigtLWluZmluaXRlLWFjdGl2ZS1yb3ctYm9yZGVyLWNvbG9yLCByZ2IodmFyKC0taW5maW5pdGUtYWN0aXZlLWNlbGwtYm9yZGVyLWNvbG9yLS1yKSB2YXIoLS1pbmZpbml0ZS1hY3RpdmUtY2VsbC1ib3JkZXItY29sb3ItLWcpIHZhcigtLWluZmluaXRlLWFjdGl2ZS1jZWxsLWJvcmRlci1jb2xvci0tYikpKSk7CiAgYmFja2dyb3VuZDogdmFyKC0taW5maW5pdGUtYWN0aXZlLXJvdy1iYWNrZ3JvdW5kLCB2YXIoLS1pbmZpbml0ZS1hY3RpdmUtY2VsbC1iYWNrZ3JvdW5kLCByZ2JhKHZhcigtLWluZmluaXRlLWFjdGl2ZS1jZWxsLWJvcmRlci1jb2xvci0tciksIHZhcigtLWluZmluaXRlLWFjdGl2ZS1jZWxsLWJvcmRlci1jb2xvci0tZyksIHZhcigtLWluZmluaXRlLWFjdGl2ZS1jZWxsLWJvcmRlci1jb2xvci0tYiksIHZhcigtLWluZmluaXRlLWFjdGl2ZS1yb3ctYmFja2dyb3VuZC1hbHBoYSwgdmFyKC0taW5maW5pdGUtYWN0aXZlLWNlbGwtYmFja2dyb3VuZC1hbHBoYSkpKSkpOwp9Ci5qMjZscngxIHsKICBkaXNwbGF5OiBibG9jazsKfQouajI2bHJ4MiB7CiAgZGlzcGxheTogbm9uZTsKfQ== */
|
|
463
|
-
.j26lrx0 {
|
|
464
|
-
--infinite-active-row-border-style: var(--infinite-active-row-border-style, var(--infinite-active-cell-border-style));
|
|
465
|
-
border: var(--infinite-active-row-border, var(--infinite-active-row-border-width, var(--infinite-active-cell-border-width)) var(--infinite-active-row-border-style, var(--infinite-active-cell-border-style)) var(--infinite-active-row-border-color, rgb(var(--infinite-active-cell-border-color--r) var(--infinite-active-cell-border-color--g) var(--infinite-active-cell-border-color--b))));
|
|
466
|
-
background: var(--infinite-active-row-background, var(--infinite-active-cell-background, rgba(var(--infinite-active-cell-border-color--r), var(--infinite-active-cell-border-color--g), var(--infinite-active-cell-border-color--b), var(--infinite-active-row-background-alpha, var(--infinite-active-cell-background-alpha)))));
|
|
467
|
-
}
|
|
468
|
-
.j26lrx1 {
|
|
469
|
-
display: block;
|
|
470
|
-
}
|
|
471
|
-
.j26lrx2 {
|
|
472
|
-
display: none;
|
|
473
|
-
}
|
|
474
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/InfiniteCls.css.ts.vanilla.css?source=#H4sIAAAAAAAAA6WT3W6DMAyF7/sUuZnUSk0F29W6h6lCMODOtVkIdNW0dx8EofKnatNuUBR/xz4nCYdTfIM6eW4i9bVRSmpPyHBULAxv7UYm7HVmLki3o2qM22qNnCGjBz2q7TrWColbUGE31BNj33MnNacL6F4K5AVZF4B54RfkvdSS35vD4D8O/kegk6suBdmD09AA+0pfCyTQlXVCbcp8SDnqAvMuxnps2hBANDKpDZWFWXh7BGvtTdJOrzkTW1fQB12KO9u/HbTGLubs/+dyesoYzicRl7an6lYvqO8biKn2PNYSZH+QUpC2fpyugMD6lasrA+Od4SoTdzn2SzIeXtKtjqPoaa+i8jN8+uf4KEWJzJDOHHUa7+Uy0Ke4oiavX2Xq9iM4GSccwGwKspppGqwwQULf/WzdmqYZ3aizNWS3s/7nnZpOEDXTrk/4Af0EelYGBAAA */
|
|
475
|
-
._1yeub2v0 {
|
|
476
|
-
outline: none;
|
|
477
|
-
font-family: var(--infinite-font-family);
|
|
478
|
-
color: var(--infinite-color);
|
|
479
|
-
background: var(--infinite-background);
|
|
480
|
-
min-height: var(--infinite-min-height);
|
|
481
|
-
}
|
|
482
|
-
._1yeub2v1 {
|
|
483
|
-
--infinite-row-pointer-events-while-scrolling: none;
|
|
484
|
-
}
|
|
485
|
-
._1yeub2ve {
|
|
486
|
-
--infinite-active-cell-background-alpha: var(--infinite-active-cell-background-alpha--table-unfocused);
|
|
487
|
-
--infinite-active-row-background-alpha: var(--infinite-active-row-background-alpha--table-unfocused, var(--infinite-active-cell-background-alpha--table-unfocused));
|
|
488
|
-
}
|
|
489
|
-
._1yeub2vi {
|
|
490
|
-
border-right: var(--infinite-cell-border);
|
|
491
|
-
}
|
|
492
|
-
._1yeub2vj {
|
|
493
|
-
border-left: var(--infinite-cell-border);
|
|
494
|
-
}
|
|
495
|
-
._1yeub2vl {
|
|
496
|
-
-webkit-user-select: none;
|
|
497
|
-
-moz-user-select: none;
|
|
498
|
-
-ms-user-select: none;
|
|
499
|
-
user-select: none;
|
|
500
|
-
}
|
|
501
|
-
._1yeub2vp {
|
|
502
|
-
transform: translate3d(-100%, 0px, 0px);
|
|
503
|
-
border-right: var(--infinite-pinned-cell-border);
|
|
504
|
-
bottom: var(--_1slvgu9o);
|
|
505
|
-
}
|
|
506
|
-
._1yeub2vq {
|
|
507
|
-
left: var(--_1slvgu9f);
|
|
508
|
-
}
|
|
509
|
-
._1yeub2vn ._1yeub2vq {
|
|
510
|
-
visibility: visible;
|
|
511
|
-
}
|
|
512
|
-
._1yeub2vr {
|
|
513
|
-
left: calc(var(--_1slvgu9j));
|
|
514
|
-
}
|
|
515
|
-
._1yeub2vo ._1yeub2vr {
|
|
516
|
-
visibility: visible;
|
|
517
|
-
}
|
|
518
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/components/cell.css.ts.vanilla.css?source=Ll8xZWV4YzJhMCB7CiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7Cn0KLl8xZWV4YzJhMSB7CiAganVzdGlmeS1jb250ZW50OiBmbGV4LXN0YXJ0Owp9Ci5fMWVleGMyYTIgewogIGp1c3RpZnktY29udGVudDogZmxleC1zdGFydDsKICBmbGV4LWZsb3c6IHJvdy1yZXZlcnNlOwp9Ci5fMWVleGMyYTMgewogIHRyYW5zaXRpb246IGxlZnQgMzAwbXM7Cn0KLl8xZWV4YzJhNCB7CiAgdHJhbnNpdGlvbjogbm9uZTsKfQouXzFlZXhjMmE1IHsKICBwYWRkaW5nOiB2YXIoLS1pbmZpbml0ZS1jZWxsLXBhZGRpbmcpOwogIGJvcmRlci1sZWZ0OiB2YXIoLS1pbmZpbml0ZS1jZWxsLWJvcmRlci13aWR0aCkgc29saWQgdHJhbnNwYXJlbnQ7CiAgYm9yZGVyLXJpZ2h0OiB2YXIoLS1pbmZpbml0ZS1jZWxsLWJvcmRlci13aWR0aCkgc29saWQgdHJhbnNwYXJlbnQ7Cn0KLl8xeWV1YjJ2bCAuXzFlZXhjMmE2IHsKICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gdmFyKC0taW5maW5pdGUtY29sdW1uLXJlb3JkZXItZWZmZWN0LWR1cmF0aW9uKTsKfQouXzFlZXhjMmE3IHsKICBjb2xvcjogdmFyKC0taW5maW5pdGUtY2VsbC1jb2xvcik7Cn0KLl8xZWV4YzJhZCB7CiAgYmFja2dyb3VuZDogdmFyKC0taW5maW5pdGUtcm93LWJhY2tncm91bmQpOwp9Ci5fMWVleGMyYWUgewogIGJhY2tncm91bmQ6IHZhcigtLWluZmluaXRlLXJvdy1vZGQtYmFja2dyb3VuZCk7Cn0KLl8xZWV4YzJhZiB7CiAgYm9yZGVyLXRvcC1sZWZ0LXJhZGl1czogdmFyKC0taW5maW5pdGUtY2VsbC1ib3JkZXItcmFkaXVzKTsKICBib3JkZXItYm90dG9tLWxlZnQtcmFkaXVzOiB2YXIoLS1pbmZpbml0ZS1jZWxsLWJvcmRlci1yYWRpdXMpOwp9Ci5fMWVleGMyYWggewogIGJvcmRlci10b3AtcmlnaHQtcmFkaXVzOiB2YXIoLS1pbmZpbml0ZS1jZWxsLWJvcmRlci1yYWRpdXMpOwogIGJvcmRlci1ib3R0b20tcmlnaHQtcmFkaXVzOiB2YXIoLS1pbmZpbml0ZS1jZWxsLWJvcmRlci1yYWRpdXMpOwp9 */
|
|
519
|
-
._1eexc2a0 {
|
|
520
|
-
justify-content: center;
|
|
521
|
-
}
|
|
522
|
-
._1eexc2a1 {
|
|
523
|
-
justify-content: flex-start;
|
|
524
|
-
}
|
|
525
|
-
._1eexc2a2 {
|
|
526
|
-
justify-content: flex-start;
|
|
527
|
-
flex-flow: row-reverse;
|
|
528
|
-
}
|
|
529
|
-
._1eexc2a3 {
|
|
530
|
-
transition: left 300ms;
|
|
531
|
-
}
|
|
532
|
-
._1eexc2a4 {
|
|
533
|
-
transition: none;
|
|
534
|
-
}
|
|
535
|
-
._1eexc2a5 {
|
|
536
|
-
padding: var(--infinite-cell-padding);
|
|
537
|
-
border-left: var(--infinite-cell-border-width) solid transparent;
|
|
538
|
-
border-right: var(--infinite-cell-border-width) solid transparent;
|
|
539
|
-
}
|
|
540
|
-
._1yeub2vl ._1eexc2a6 {
|
|
541
|
-
transition: transform var(--infinite-column-reorder-effect-duration);
|
|
542
|
-
}
|
|
543
|
-
._1eexc2a7 {
|
|
544
|
-
color: var(--infinite-cell-color);
|
|
545
|
-
}
|
|
546
|
-
._1eexc2ad {
|
|
547
|
-
background: var(--infinite-row-background);
|
|
548
|
-
}
|
|
549
|
-
._1eexc2ae {
|
|
550
|
-
background: var(--infinite-row-odd-background);
|
|
551
|
-
}
|
|
552
|
-
._1eexc2af {
|
|
553
|
-
border-top-left-radius: var(--infinite-cell-border-radius);
|
|
554
|
-
border-bottom-left-radius: var(--infinite-cell-border-radius);
|
|
555
|
-
}
|
|
556
|
-
._1eexc2ah {
|
|
557
|
-
border-top-right-radius: var(--infinite-cell-border-radius);
|
|
558
|
-
border-bottom-right-radius: var(--infinite-cell-border-radius);
|
|
559
|
-
}
|
|
560
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/components/InfiniteTableHeader/header.css.ts.vanilla.css?source=#H4sIAAAAAAAAA7VUwW6DMAy99ytymTQOQcDWaaIfMwUIYJUmKATWdtq/DxLaGkZb2m5HHPv5+fkZ98MP9qmMfJ98LQjZMJWBoAVPdUgapp4pBZGCAM1pzlnCFY15UdBKKk0hloLaCme1+F64B6zgD7FeMJaCLH8E7NWAFSC6IovlrdpIKoWmFex5SHyv3HahSKoOVLEE6iokS++pi5YsSUBkbZrNKmUFGqQICYsqWdSad1GtmDjEtSyJ5waVicuyb9gPEnQoiN/S8ItYvM6UrEVybtRThjOJ69kJtJYb84FavN3XIpaFVGeV7x6HSnPTZt+mJnzbqTp4Xc8kYVaay2YuH5N/YEOILFkMetdK4L4PtjdV1j86KLH3btBb4jhN4HnDeQo7j7XMpOFNiz7hExKdO6T1CyTWKyVTXGhsu0mjIxBDc6aAI+mOKoxmCI3QD24GAWosSmtRI8zxoC7oY1McJIe18u0AiE0zZmMkfojO7QiIT/9jG10Iad93vI6ChpFT6rtJnQa/2BhEAxVEBR/1ZliMOV7DxZEpPndL2B+nk8L1/J4/EAZILxL4dcyDpV2/qf8+QDxJNjLltS38ALFNgMmuBwAA */
|
|
561
|
-
._12zfob11 {
|
|
562
|
-
margin-left: var(--infinite-header-cell-sort-icon-margin);
|
|
563
|
-
}
|
|
564
|
-
._12zfob12 {
|
|
565
|
-
margin-left: var(--infinite-header-cell-sort-icon-margin);
|
|
566
|
-
}
|
|
567
|
-
._12zfob13 {
|
|
568
|
-
margin-right: var(--infinite-header-cell-sort-icon-margin);
|
|
569
|
-
}
|
|
570
|
-
._12zfob14 {
|
|
571
|
-
line-height: 0;
|
|
572
|
-
font-size: 10px;
|
|
573
|
-
border-radius: 50%;
|
|
574
|
-
padding: 1px;
|
|
575
|
-
position: absolute;
|
|
576
|
-
transition: top 0.2s;
|
|
577
|
-
top: 0;
|
|
578
|
-
right: 2px;
|
|
579
|
-
}
|
|
580
|
-
._12zfob15 {
|
|
581
|
-
background: var(--infinite-header-background);
|
|
582
|
-
top: 0;
|
|
583
|
-
right: 0;
|
|
584
|
-
bottom: 0;
|
|
585
|
-
}
|
|
586
|
-
._12zfob16 {
|
|
587
|
-
background: var(--infinite-header-background);
|
|
588
|
-
color: var(--infinite-header-color);
|
|
589
|
-
}
|
|
590
|
-
._12zfob1e {
|
|
591
|
-
z-index: 10;
|
|
592
|
-
}
|
|
593
|
-
._12zfob1k {
|
|
594
|
-
background: var(--infinite-header-cell-hover-background);
|
|
595
|
-
color: var(--infinite-cell-color);
|
|
596
|
-
opacity: 0.8;
|
|
597
|
-
padding: var(--infinite-cell-padding);
|
|
598
|
-
padding-left: 20px;
|
|
599
|
-
z-index: 2000;
|
|
600
|
-
}
|
|
601
|
-
._12zfob1l {
|
|
602
|
-
border-left: var(--infinite-cell-border-width) solid transparent;
|
|
603
|
-
border-right: var(--infinite-cell-border);
|
|
604
|
-
background: var(--infinite-header-cell-background);
|
|
605
|
-
padding: 0;
|
|
606
|
-
}
|
|
607
|
-
._12zfob1l:hover {
|
|
608
|
-
background: var(--infinite-header-cell-hover-background);
|
|
609
|
-
}
|
|
610
|
-
._12zfob1t {
|
|
611
|
-
border-top-left-radius: var(--infinite-cell-border-radius);
|
|
612
|
-
border-bottom-left-radius: var(--infinite-cell-border-radius);
|
|
613
|
-
}
|
|
614
|
-
._12zfob1v {
|
|
615
|
-
border-top-right-radius: var(--infinite-cell-border-radius);
|
|
616
|
-
border-bottom-right-radius: var(--infinite-cell-border-radius);
|
|
617
|
-
}
|
|
618
|
-
._12zfob113 {
|
|
619
|
-
z-index: 10;
|
|
620
|
-
}
|
|
621
|
-
._1yeub2va ._12zfob118 {
|
|
622
|
-
--infinite-cell-border: var(--infinite-cell-border-invisible);
|
|
623
|
-
}
|
|
624
|
-
._12zfob11a {
|
|
625
|
-
border-right: var(--infinite-cell-border);
|
|
626
|
-
}
|
|
627
|
-
._12zfob11b {
|
|
628
|
-
padding: var(--infinite-header-cell-padding);
|
|
629
|
-
}
|
|
630
|
-
._12zfob11e {
|
|
631
|
-
background: var(--infinite-header-background);
|
|
632
|
-
}
|
|
633
|
-
._12zfob11f {
|
|
634
|
-
padding: var(--infinite-cell-padding);
|
|
635
|
-
border-bottom: var(--infinite-cell-border);
|
|
636
|
-
border-right: var(--infinite-cell-border);
|
|
637
|
-
background: var(--infinite-header-cell-background);
|
|
638
|
-
}
|
|
639
|
-
._12zfob11g {
|
|
640
|
-
border-top: var(--infinite-cell-border);
|
|
641
|
-
}
|
|
642
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/components/InfiniteTableHeader/ResizeHandle/ResizeHandle.css.ts.vanilla.css?source=LnpuZXl6aDAgewogIHRyYW5zZm9ybTogdHJhbnNsYXRlWCg1MCUpOwogIHdpZHRoOiB2YXIoLS1pbmZpbml0ZS1yZXNpemUtaGFuZGxlLWFjdGl2ZS1hcmVhLXdpZHRoKTsKfQouem5leXpoMDpob3ZlciB7CiAgb3ZlcmZsb3c6IHZpc2libGU7Cn0KLnpuZXl6aDIgewogIHRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNTAlKTsKfQouem5leXpoOCB7CiAgdHJhbnNmb3JtOiBub25lOwp9Ci56bmV5emg5IHsKICB0cmFuc2Zvcm06IG5vbmU7Cn0KLnpuZXl6aGEgewogIHRyYW5zZm9ybTogbm9uZTsKfQouem5leXpoYiB7CiAgcmlnaHQ6IGNhbGMoKHZhcigtLWluZmluaXRlLXJlc2l6ZS1oYW5kbGUtYWN0aXZlLWFyZWEtd2lkdGgpIC0gdmFyKC0taW5maW5pdGUtcmVzaXplLWhhbmRsZS13aWR0aCkpIC8gMik7CiAgd2lkdGg6IHZhcigtLWluZmluaXRlLXJlc2l6ZS1oYW5kbGUtd2lkdGgpOwp9Ci56bmV5emgwOmhvdmVyIC56bmV5emhiIHsKICBiYWNrZ3JvdW5kOiB2YXIoLS1pbmZpbml0ZS1yZXNpemUtaGFuZGxlLWhvdmVyLWJhY2tncm91bmQpOwp9Ci56bmV5emgwOmhvdmVyIC56bmV5emhkIHsKICBiYWNrZ3JvdW5kOiB2YXIoLS1pbmZpbml0ZS1yZXNpemUtaGFuZGxlLWNvbnN0cmFpbmVkLWhvdmVyLWJhY2tncm91bmQpOwp9 */
|
|
643
|
-
.zneyzh0 {
|
|
644
|
-
transform: translateX(50%);
|
|
645
|
-
width: var(--infinite-resize-handle-active-area-width);
|
|
646
|
-
}
|
|
647
|
-
.zneyzh0:hover {
|
|
648
|
-
overflow: visible;
|
|
649
|
-
}
|
|
650
|
-
.zneyzh2 {
|
|
651
|
-
transform: translateX(-50%);
|
|
652
|
-
}
|
|
653
|
-
.zneyzh8 {
|
|
654
|
-
transform: none;
|
|
655
|
-
}
|
|
656
|
-
.zneyzh9 {
|
|
657
|
-
transform: none;
|
|
658
|
-
}
|
|
659
|
-
.zneyzha {
|
|
660
|
-
transform: none;
|
|
661
|
-
}
|
|
662
|
-
.zneyzhb {
|
|
663
|
-
right: calc((var(--infinite-resize-handle-active-area-width) - var(--infinite-resize-handle-width)) / 2);
|
|
664
|
-
width: var(--infinite-resize-handle-width);
|
|
665
|
-
}
|
|
666
|
-
.zneyzh0:hover .zneyzhb {
|
|
667
|
-
background: var(--infinite-resize-handle-hover-background);
|
|
668
|
-
}
|
|
669
|
-
.zneyzh0:hover .zneyzhd {
|
|
670
|
-
background: var(--infinite-resize-handle-constrained-hover-background);
|
|
671
|
-
}
|
|
672
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/components/InfiniteTableRow/row.css.ts.vanilla.css?source=Ll83cHVwdjAwIHsKICB3aWxsLWNoYW5nZTogdHJhbnNmb3JtOwogIHBvc2l0aW9uOiBhYnNvbHV0ZTsKICB0b3A6IDA7CiAgbGVmdDogMDsKICBwb2ludGVyLWV2ZW50czogdmFyKC0taW5maW5pdGUtcm93LXBvaW50ZXItZXZlbnRzLXdoaWxlLXNjcm9sbGluZyk7CiAgLS1pbmZpbml0ZS1jb2x1bW4tY2VsbC1iZy1kb250LW92ZXJyaWRlOiB2YXIoLS1pbmZpbml0ZS1yb3ctYmFja2dyb3VuZCk7Cn0KLl83cHVwdjAxIHsKICAtLWluZmluaXRlLXJvdy1iYWNrZ3JvdW5kOiB2YXIoLS1pbmZpbml0ZS1yb3ctaG92ZXItYmFja2dyb3VuZCk7CiAgLS1pbmZpbml0ZS1yb3ctb2RkLWJhY2tncm91bmQ6IHZhcigtLWluZmluaXRlLXJvdy1ob3Zlci1iYWNrZ3JvdW5kKTsKfQouXzdwdXB2MDMgewogIGJhY2tncm91bmQ6IHZhcigtLWluZmluaXRlLXJvdy1iYWNrZ3JvdW5kKTsKfQouXzdwdXB2MDQgewogIGJhY2tncm91bmQ6IHZhcigtLWluZmluaXRlLXJvdy1vZGQtYmFja2dyb3VuZCk7Cn0KLl83cHVwdjA1IHsKICB6LWluZGV4OiAxMDA7Cn0KLl83cHVwdjA3IHsKICB6LWluZGV4OiAxMDA7Cn0KLl83cHVwdjBiIHsKICBwYWRkaW5nLWlubGluZS1zdGFydDogY2FsYyh2YXIoLS1pbmZpbml0ZS1kb250LW92ZXJyaWRlLWdyb3VwLXJvdy1uZXN0aW5nLWxlbmd0aCkgKiB2YXIoLS1pbmZpbml0ZS1ncm91cC1yb3ctY29sdW1uLW5lc3RpbmcpKTsKfQ== */
|
|
673
|
-
._7pupv00 {
|
|
674
|
-
will-change: transform;
|
|
675
|
-
position: absolute;
|
|
676
|
-
top: 0;
|
|
677
|
-
left: 0;
|
|
678
|
-
pointer-events: var(--infinite-row-pointer-events-while-scrolling);
|
|
679
|
-
--infinite-column-cell-bg-dont-override: var(--infinite-row-background);
|
|
680
|
-
}
|
|
681
|
-
._7pupv01 {
|
|
682
|
-
--infinite-row-background: var(--infinite-row-hover-background);
|
|
683
|
-
--infinite-row-odd-background: var(--infinite-row-hover-background);
|
|
684
|
-
}
|
|
685
|
-
._7pupv03 {
|
|
686
|
-
background: var(--infinite-row-background);
|
|
687
|
-
}
|
|
688
|
-
._7pupv04 {
|
|
689
|
-
background: var(--infinite-row-odd-background);
|
|
690
|
-
}
|
|
691
|
-
._7pupv05 {
|
|
692
|
-
z-index: 100;
|
|
693
|
-
}
|
|
694
|
-
._7pupv07 {
|
|
695
|
-
z-index: 100;
|
|
696
|
-
}
|
|
697
|
-
._7pupv0b {
|
|
698
|
-
-webkit-padding-start: calc(var(--infinite-dont-override-group-row-nesting-length) * var(--infinite-group-row-column-nesting));
|
|
699
|
-
padding-inline-start: calc(var(--infinite-dont-override-group-row-nesting-length) * var(--infinite-group-row-column-nesting));
|
|
700
|
-
}
|
|
701
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/components/LoadMask.css.ts.vanilla.css?source=LnF5NTh5YTAgewogIGZsZXgtZmxvdzogcm93OwogIGFsaWduLWl0ZW1zOiBjZW50ZXI7CiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7Cn0KLnF5NTh5YTEgewogIGRpc3BsYXk6IGZsZXg7Cn0KLnF5NTh5YTIgewogIGRpc3BsYXk6IG5vbmU7Cn0KLnF5NTh5YTMgewogIGJhY2tncm91bmQ6IHZhcigtLWluZmluaXRlLWxvYWQtbWFzay1vdmVybGF5LWJhY2tncm91bmQpOwogIG9wYWNpdHk6IHZhcigtLWluZmluaXRlLWxvYWQtbWFzay1vdmVybGF5LW9wYWNpdHkpOwp9Ci5xeTU4eWE0IHsKICBwb3NpdGlvbjogcmVsYXRpdmU7CiAgcGFkZGluZzogdmFyKC0taW5maW5pdGUtbG9hZC1tYXNrLXBhZGRpbmcpOwogIGNvbG9yOiB2YXIoLS1pbmZpbml0ZS1sb2FkLW1hc2stY29sb3IpOwogIGJhY2tncm91bmQ6IHZhcigtLWluZmluaXRlLWxvYWQtbWFzay10ZXh0LWJhY2tncm91bmQpOwogIGJvcmRlci1yYWRpdXM6IHZhcigtLWluZmluaXRlLWxvYWQtbWFzay1ib3JkZXItcmFkaXVzKTsKfQ== */
|
|
702
|
-
.qy58ya0 {
|
|
703
|
-
flex-flow: row;
|
|
704
|
-
align-items: center;
|
|
705
|
-
justify-content: center;
|
|
706
|
-
}
|
|
707
|
-
.qy58ya1 {
|
|
708
|
-
display: flex;
|
|
709
|
-
}
|
|
710
|
-
.qy58ya2 {
|
|
711
|
-
display: none;
|
|
712
|
-
}
|
|
713
|
-
.qy58ya3 {
|
|
714
|
-
background: var(--infinite-load-mask-overlay-background);
|
|
715
|
-
opacity: var(--infinite-load-mask-overlay-opacity);
|
|
716
|
-
}
|
|
717
|
-
.qy58ya4 {
|
|
718
|
-
position: relative;
|
|
719
|
-
padding: var(--infinite-load-mask-padding);
|
|
720
|
-
color: var(--infinite-load-mask-color);
|
|
721
|
-
background: var(--infinite-load-mask-text-background);
|
|
722
|
-
border-radius: var(--infinite-load-mask-border-radius);
|
|
723
|
-
}
|
|
724
|
-
/* vanilla-extract-css-ns:@infinite-table/infinite-react/src/components/InfiniteTable/components/icons/ExpanderIcon.css.ts.vanilla.css?source= */
|
|
725
|
-
/**********************************
|
|
1
|
+
:root{--infinite-space-0: 0rem;--infinite-space-1: .125rem;--infinite-space-2: .25rem;--infinite-space-3: .5rem;--infinite-space-4: .75rem;--infinite-space-5: 1rem;--infinite-space-6: 1.25rem;--infinite-space-7: 1.5rem;--infinite-space-8: 2.25rem;--infinite-space-9: 3rem;--infinite-space-10: 4rem;--infinite-font-size-0: .5rem;--infinite-font-size-1: .625rem;--infinite-font-size-2: .75rem;--infinite-font-size-3: .875rem;--infinite-font-size-4: 1rem;--infinite-font-size-5: 1.25rem;--infinite-font-size-6: 1.5rem;--infinite-font-size-7: 2.25rem;--infinite-font-family: inherit;--infinite-color: #484848;--infinite-accent-color: #ff7043;--infinite-error-color: #ff0000;--infinite-border-radius: var(--infinite-space-2);--infinite-background: white;--infinite-min-height: 100px;--infinite-selection-checkbox-margin-inline: var(--infinite-space-2);--infinite-menu-background: var(--infinite-background);--infinite-menu-color: var(--infinite-cell-color);--infinite-menu-padding: var(--infinite-space-3);--infinite-menu-cell-padding-vertical: var(--infinite-space-3);--infinite-menu-cell-padding-horizontal: var(--infinite-space-3);--infinite-menu-cell-margin-vertical: var(--infinite-space-0);--infinite-menu-item-disabled-background: var(--infinite-menu-background);--infinite-menu-item-disabled-opacity: .5;--infinite-menu-item-active-background: var(--infinite-row-hover-background);--infinite-menu-item-pressed-background: var(--infinite-row-hover-background);--infinite-menu-item-active-opacity: .9;--infinite-menu-item-pressed-opacity: 1;--infinite-menu-border-radius: var(--infinite-space-2);--infinite-menu-shadow-color: rgba(0,0,0,.25);--infinite-load-mask-text-background: rgba(255,255,255,.8);--infinite-load-mask-overlay-background: gray;--infinite-load-mask-overlay-opacity: .3;--infinite-load-mask-color: inherit;--infinite-load-mask-padding: var(--infinite-space-5);--infinite-load-mask-border-radius: var(--infinite-border-radius);--infinite-resize-handle-active-area-width: 20px;--infinite-resize-handle-width: 2px;--infinite-resize-handle-hover-background: #6bff6b;--infinite-resize-handle-constrained-hover-background: var(--infinite-error-color);--infinite-header-cell-background: #ededed;--infinite-header-cell-hover-background: #dfdfdf;--infinite-header-cell-padding-x: var(--infinite-space-3);--infinite-header-cell-padding-y: var(--infinite-space-3);--infinite-header-cell-padding: var(--infinite-header-cell-padding-y) var(--infinite-header-cell-padding-x) ;--infinite-header-cell-icon-size: 16px;--infinite-header-cell-menu-icon-line-width: 1px;--infinite-header-cell-sort-icon-margin: 16px;--infinite-header-background: var(--infinite-header-cell-background);--infinite-header-color: #6f6f6f;--infinite-column-header-height: 30px;--infinite-cell-color: currentColor;--infinite-cell-border-width: 1px;--infinite-cell-padding: var(--infinite-space-2) var(--infinite-space-3);--infinite-cell-border: var(--infinite-cell-border-width) solid #c6c6c6;--infinite-pinned-cell-border: var(--infinite-cell-border-width) solid #2a323d;--infinite-cell-border-invisible: none;--infinite-cell-border-radius: var(--infinite-space-2);--infinite-column-reorder-effect-duration: .2s;--infinite-active-cell-border-style: dashed;--infinite-active-cell-border-width: 1px;--infinite-active-cell-border-color--r: 77;--infinite-active-cell-border-color--g: 149;--infinite-active-cell-border-color--b: 215;--infinite-active-cell-background-alpha: .25;--infinite-active-cell-background-alpha--table-unfocused: .1;--infinite-row-background: var(--infinite-background);--infinite-row-odd-background: #f6f6f6;--infinite-row-selected-background: #d1e9ff;--infinite-row-selected-hover-background: #add8ff;--infinite-group-row-background: #cbc5c5;--infinite-group-row-column-nesting: 30px;--infinite-row-hover-background: #dbdbdb;--infinite-row-pointer-events-while-scrolling: auto}.light,.infinite-light,.light:root,.infinite-light:root{--infinite-space-0: 0rem;--infinite-space-1: .125rem;--infinite-space-2: .25rem;--infinite-space-3: .5rem;--infinite-space-4: .75rem;--infinite-space-5: 1rem;--infinite-space-6: 1.25rem;--infinite-space-7: 1.5rem;--infinite-space-8: 2.25rem;--infinite-space-9: 3rem;--infinite-space-10: 4rem;--infinite-font-size-0: .5rem;--infinite-font-size-1: .625rem;--infinite-font-size-2: .75rem;--infinite-font-size-3: .875rem;--infinite-font-size-4: 1rem;--infinite-font-size-5: 1.25rem;--infinite-font-size-6: 1.5rem;--infinite-font-size-7: 2.25rem;--infinite-font-family: inherit;--infinite-color: #484848;--infinite-accent-color: #ff7043;--infinite-error-color: #ff0000;--infinite-border-radius: var(--infinite-space-2);--infinite-background: white;--infinite-min-height: 100px;--infinite-selection-checkbox-margin-inline: var(--infinite-space-2);--infinite-menu-background: var(--infinite-background);--infinite-menu-color: var(--infinite-cell-color);--infinite-menu-padding: var(--infinite-space-3);--infinite-menu-cell-padding-vertical: var(--infinite-space-3);--infinite-menu-cell-padding-horizontal: var(--infinite-space-3);--infinite-menu-cell-margin-vertical: var(--infinite-space-0);--infinite-menu-item-disabled-background: var(--infinite-menu-background);--infinite-menu-item-disabled-opacity: .5;--infinite-menu-item-active-background: var(--infinite-row-hover-background);--infinite-menu-item-pressed-background: var(--infinite-row-hover-background);--infinite-menu-item-active-opacity: .9;--infinite-menu-item-pressed-opacity: 1;--infinite-menu-border-radius: var(--infinite-space-2);--infinite-menu-shadow-color: rgba(0,0,0,.25);--infinite-load-mask-text-background: rgba(255,255,255,.8);--infinite-load-mask-overlay-background: gray;--infinite-load-mask-overlay-opacity: .3;--infinite-load-mask-color: inherit;--infinite-load-mask-padding: var(--infinite-space-5);--infinite-load-mask-border-radius: var(--infinite-border-radius);--infinite-resize-handle-active-area-width: 20px;--infinite-resize-handle-width: 2px;--infinite-resize-handle-hover-background: #6bff6b;--infinite-resize-handle-constrained-hover-background: var(--infinite-error-color);--infinite-header-cell-background: #ededed;--infinite-header-cell-hover-background: #dfdfdf;--infinite-header-cell-padding-x: var(--infinite-space-3);--infinite-header-cell-padding-y: var(--infinite-space-3);--infinite-header-cell-padding: var(--infinite-header-cell-padding-y) var(--infinite-header-cell-padding-x) ;--infinite-header-cell-icon-size: 16px;--infinite-header-cell-menu-icon-line-width: 1px;--infinite-header-cell-sort-icon-margin: 16px;--infinite-header-background: var(--infinite-header-cell-background);--infinite-header-color: #6f6f6f;--infinite-column-header-height: 30px;--infinite-cell-color: currentColor;--infinite-cell-border-width: 1px;--infinite-cell-padding: var(--infinite-space-2) var(--infinite-space-3);--infinite-cell-border: var(--infinite-cell-border-width) solid #c6c6c6;--infinite-pinned-cell-border: var(--infinite-cell-border-width) solid #2a323d;--infinite-cell-border-invisible: none;--infinite-cell-border-radius: var(--infinite-space-2);--infinite-column-reorder-effect-duration: .2s;--infinite-active-cell-border-style: dashed;--infinite-active-cell-border-width: 1px;--infinite-active-cell-border-color--r: 77;--infinite-active-cell-border-color--g: 149;--infinite-active-cell-border-color--b: 215;--infinite-active-cell-background-alpha: .25;--infinite-active-cell-background-alpha--table-unfocused: .1;--infinite-row-background: var(--infinite-background);--infinite-row-odd-background: #f6f6f6;--infinite-row-selected-background: #d1e9ff;--infinite-row-selected-hover-background: #add8ff;--infinite-group-row-background: #cbc5c5;--infinite-group-row-column-nesting: 30px;--infinite-row-hover-background: #dbdbdb;--infinite-row-pointer-events-while-scrolling: auto}.dark,.infinite-dark{--infinite-background: #101419;--infinite-cell-border: 1px solid #2a323d;--infinite-header-color: #c3c3c3;--infinite-header-cell-background: #1b2129;--infinite-header-cell-hover-background: #222932;--infinite-header-background: var(--infinite-header-cell-background);--infinite-row-hover-background: #3b4754;--infinite-row-selected-background: #0a2e4f;--infinite-row-selected-hover-background: #0b243a;--infinite-row-background: var(--infinite-background);--infinite-row-odd-background: #242a31;--infinite-cell-color: #c3c3c3;--infinite-menu-shadow-color: rgba(255,255,255,.25);--infinite-menu-background: #101419;--infinite-menu-color: #c3c3c3;--infinite-menu-item-disabled-background: #101419;--infinite-menu-item-active-background: #3b4754;--infinite-menu-item-pressed-background: #3b4754}@media (prefers-color-scheme: dark){:root{--infinite-background: #101419;--infinite-cell-border: 1px solid #2a323d;--infinite-header-color: #c3c3c3;--infinite-header-cell-background: #1b2129;--infinite-header-cell-hover-background: #222932;--infinite-header-background: var(--infinite-header-cell-background);--infinite-row-hover-background: #3b4754;--infinite-row-selected-background: #0a2e4f;--infinite-row-selected-hover-background: #0b243a;--infinite-row-background: var(--infinite-background);--infinite-row-odd-background: #242a31;--infinite-cell-color: #c3c3c3;--infinite-menu-shadow-color: rgba(255,255,255,.25);--infinite-menu-background: #101419;--infinite-menu-color: #c3c3c3;--infinite-menu-item-disabled-background: #101419;--infinite-menu-item-active-background: #3b4754;--infinite-menu-item-pressed-background: #3b4754}}._16lm1iw0{box-sizing:border-box}._16lm1iw0:before{box-sizing:border-box}._16lm1iw0:after{box-sizing:border-box}._16lm1iw0 *{box-sizing:border-box}._16lm1iw0 *:before{box-sizing:border-box}._16lm1iw0 *:after{box-sizing:border-box}._16lm1iw1{position:relative}._16lm1iw2{position:absolute}._16lm1iw3{position:sticky}._16lm1iw4{position:fixed}._16lm1iw5{fill:currentColor}._16lm1iw6{fill:var(--infinite-accent-color)}._16lm1iw7{margin:0}._16lm1iw8{stroke:currentColor}._16lm1iw9{stroke:var(--infinite-accent-color)}._16lm1iwa{background:inherit}._16lm1iwb{transform:translate(0)}._16lm1iwc{transform:translate(0)}._16lm1iwd{transform:rotate(90deg)}._16lm1iwe{transform:rotate(180deg)}._16lm1iwf{cursor:pointer}._16lm1iwg{cursor:default}._16lm1iwh{cursor:col-resize}._16lm1iwi{pointer-events:none}._16lm1iwj{flex:1}._16lm1iwk{flex:none}._16lm1iwl{z-index:1}._16lm1iwm{z-index:10}._16lm1iwn{z-index:100}._16lm1iwo{z-index:1000}._16lm1iwp{z-index:10000}._16lm1iwq{z-index:100000}._16lm1iwr{z-index:1000000}._16lm1iws{z-index:10000000}._16lm1iwt{z-index:1000}._16lm1iwu{z-index:10000}._16lm1iwv{z-index:100000}._16lm1iww{display:flex}._16lm1iwx{display:contents}._16lm1iwy{display:none}._16lm1iwz{display:block}._16lm1iw10{display:grid}._16lm1iw11{display:inline-block}._16lm1iw12{display:inline-flex}._16lm1iw13{display:inline-grid}._16lm1iw14{-webkit-user-select:none;-moz-user-select:none;user-select:none}._16lm1iw15{height:0}._16lm1iw16{height:100%}._16lm1iw17{width:0}._16lm1iw18{width:100%}._16lm1iw19{top:0}._16lm1iw1a{top:100%}._16lm1iw1b{left:0}._16lm1iw1c{left:100%}._16lm1iw1d{left:auto}._16lm1iw1e{bottom:0}._16lm1iw1f{bottom:100%}._16lm1iw1g{right:0}._16lm1iw1h{right:100%}._16lm1iw1i{right:auto}._16lm1iw1j{flex-flow:column}._16lm1iw1k{flex-flow:column-reverse}._16lm1iw1l{flex-flow:row}._16lm1iw1m{flex-flow:row-reverse}._16lm1iw1n{align-items:center}._16lm1iw1o{align-items:stretch}._16lm1iw1p{justify-content:center}._16lm1iw1q{justify-content:space-between}._16lm1iw1r{justify-content:space-around}._16lm1iw1s{justify-content:flex-start}._16lm1iw1t{justify-content:flex-end}._16lm1iw1u{overflow:hidden}._16lm1iw1v{overflow:auto}._16lm1iw1w{overflow:visible}._16lm1iw1x{visibility:visible}._16lm1iw1y{visibility:hidden}._16lm1iw1z{will-change:transform}._16lm1iw20{white-space:nowrap}._16lm1iw21{text-overflow:ellipsis}.mlx2t2{display:inline-block}.mlx2t3{height:0;width:0;will-change:transform}._1ueijco0{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;outline:none;position:fixed;height:100%;width:100%;left:0;top:0}._1ueijco0>:first-child{position:sticky;top:0;left:0}._1ueijco1{overflow:auto}._1ueijco2{overflow:hidden}._1ueijco3{overflow:visible}._1ueijco4{overflow:auto}._1ueijco5{overflow:hidden}._1ueijco6{overflow-x:auto}._1ueijco7{overflow-x:hidden}._1ueijco8{overflow-x:visible}._1ueijco9{overflow-x:auto}._1ueijcoa{overflow-x:hidden}._1ueijcob{overflow-y:auto}._1ueijcoc{overflow-y:hidden}._1ueijcod{overflow-y:visible}._1ueijcoe{overflow-y:auto}._1ueijcof{overflow-y:hidden}.nxbq1c1{border:var(--infinite-active-cell-border, var(--infinite-active-cell-border-width) var(--infinite-active-cell-border-style) var(--infinite-active-cell-border-color, rgb(var(--infinite-active-cell-border-color--r) var(--infinite-active-cell-border-color--g) var(--infinite-active-cell-border-color--b))));background:var(--infinite-active-cell-background, rgba(var(--infinite-active-cell-border-color--r), var(--infinite-active-cell-border-color--g), var(--infinite-active-cell-border-color--b), var(--infinite-active-cell-background-alpha)))}.nxbq1c2{display:block}.nxbq1c3{display:none}.j26lrx0{--infinite-active-row-border-style: var(--infinite-active-row-border-style, var(--infinite-active-cell-border-style));border:var(--infinite-active-row-border, var(--infinite-active-row-border-width, var(--infinite-active-cell-border-width)) var(--infinite-active-row-border-style, var(--infinite-active-cell-border-style)) var(--infinite-active-row-border-color, rgb(var(--infinite-active-cell-border-color--r) var(--infinite-active-cell-border-color--g) var(--infinite-active-cell-border-color--b))));background:var(--infinite-active-row-background, var(--infinite-active-cell-background, rgba(var(--infinite-active-cell-border-color--r), var(--infinite-active-cell-border-color--g), var(--infinite-active-cell-border-color--b), var(--infinite-active-row-background-alpha, var(--infinite-active-cell-background-alpha)))))}.j26lrx1{display:block}.j26lrx2{display:none}._1yeub2v0{outline:none;font-family:var(--infinite-font-family);color:var(--infinite-color);background:var(--infinite-background);min-height:var(--infinite-min-height)}._1yeub2v1{--infinite-row-pointer-events-while-scrolling: none}._1yeub2ve{--infinite-active-cell-background-alpha: var(--infinite-active-cell-background-alpha--table-unfocused);--infinite-active-row-background-alpha: var(--infinite-active-row-background-alpha--table-unfocused, var(--infinite-active-cell-background-alpha--table-unfocused))}._1yeub2vi{border-right:var(--infinite-cell-border)}._1yeub2vj{border-left:var(--infinite-cell-border)}._1yeub2vl{-webkit-user-select:none;-moz-user-select:none;user-select:none}._1yeub2vp{transform:translate(-100%);border-right:var(--infinite-pinned-cell-border);bottom:var(--_1slvgu9m)}._1yeub2vq{left:var(--_1slvgu9f)}._1yeub2vn ._1yeub2vq{visibility:visible}._1yeub2vr{left:calc(var(--_1slvgu9h))}._1yeub2vo ._1yeub2vr{visibility:visible}._7pupv00{will-change:transform;position:absolute;top:0;left:0;pointer-events:var(--infinite-row-pointer-events-while-scrolling);--infinite-column-cell-bg-dont-override: var(--infinite-row-background)}._7pupv01{--infinite-row-background: var(--infinite-row-hover-background);--infinite-row-selected-background: var(--infinite-row-selected-hover-background);--infinite-row-odd-background: var(--infinite-row-hover-background)}._7pupv03{background:var(--infinite-row-background)}._7pupv04{background:var(--infinite-row-odd-background)}._7pupv05{z-index:100}._7pupv07{z-index:100}._7pupv0b{-webkit-padding-start:calc(var(--infinite-dont-override-group-row-nesting-length) * var(--infinite-group-row-column-nesting));padding-inline-start:calc(var(--infinite-dont-override-group-row-nesting-length) * var(--infinite-group-row-column-nesting))}._7pupv0c{-webkit-padding-start:calc(var(--infinite-dont-override-group-row-nesting-length) * var(--infinite-group-row-column-nesting));padding-inline-start:calc(var(--infinite-dont-override-group-row-nesting-length) * var(--infinite-group-row-column-nesting))}._7pupv0d{-webkit-padding-end:calc(var(--infinite-dont-override-group-row-nesting-length) * var(--infinite-group-row-column-nesting));padding-inline-end:calc(var(--infinite-dont-override-group-row-nesting-length) * var(--infinite-group-row-column-nesting))}._1eexc2a0{justify-content:center}._1eexc2a1{justify-content:flex-start}._1eexc2a2{justify-content:flex-start;flex-flow:row-reverse}._1eexc2a3{transition:left .3s}._1eexc2a4{transition:none}._1eexc2a5{padding:var(--infinite-cell-padding);border-left:var(--infinite-cell-border-width) solid transparent;border-right:var(--infinite-cell-border-width) solid transparent}._1yeub2vl ._1eexc2a6{transition:transform var(--infinite-column-reorder-effect-duration)}._1eexc2a7{margin-inline:var(--infinite-selection-checkbox-margin-inline)}._1eexc2a8{color:var(--infinite-cell-color)}._1eexc2ah{background:var(--infinite-row-background)}._1eexc2ai{background:var(--infinite-row-odd-background)}._1eexc2aj{background:var(--infinite-row-selected-background)}._1eexc2am{border-top-left-radius:var(--infinite-cell-border-radius);border-bottom-left-radius:var(--infinite-cell-border-radius)}._1eexc2ao{border-top-right-radius:var(--infinite-cell-border-radius);border-bottom-right-radius:var(--infinite-cell-border-radius)}.qz8ht90[disabled]{opacity:.7}._12zfob11{margin-left:var(--infinite-header-cell-sort-icon-margin)}._12zfob12{margin-left:var(--infinite-header-cell-sort-icon-margin)}._12zfob13{margin-right:var(--infinite-header-cell-sort-icon-margin)}._12zfob14{line-height:0;font-size:10px;border-radius:50%;padding:1px;position:absolute;transition:top .2s;top:0;right:2px}._12zfob15{background:var(--infinite-header-background);top:0;right:0;bottom:0}._12zfob16{background:var(--infinite-header-background);color:var(--infinite-header-color)}._12zfob1e{z-index:10}._12zfob1k{background:var(--infinite-header-cell-hover-background);color:var(--infinite-cell-color);opacity:.8;padding:var(--infinite-cell-padding);padding-left:20px;z-index:2000}._12zfob1l{border-left:var(--infinite-cell-border-width) solid transparent;border-right:var(--infinite-cell-border);background:var(--infinite-header-cell-background);padding:0}._12zfob1l:hover{background:var(--infinite-header-cell-hover-background)}._12zfob1z{border-top-left-radius:var(--infinite-cell-border-radius);border-bottom-left-radius:var(--infinite-cell-border-radius)}._12zfob111{border-top-right-radius:var(--infinite-cell-border-radius);border-bottom-right-radius:var(--infinite-cell-border-radius)}._12zfob119{z-index:10}._1yeub2va ._12zfob11e{--infinite-cell-border: var(--infinite-cell-border-invisible)}._12zfob11g{border-right:var(--infinite-cell-border)}._12zfob11h{cursor:context-menu;-webkit-padding-before:2px;padding-block-start:2px;-webkit-padding-after:2px;padding-block-end:2px;min-width:var(--infinite-header-cell-icon-size);height:var(--infinite-header-cell-icon-size)}._12zfob11h:active{top:1px}._12zfob1l:hover ._12zfob11h{visibility:visible;display:flex}._12zfob11j{display:none}._12zfob11k{padding:var(--infinite-header-cell-padding)}._12zfob11o{flex-direction:row-reverse}._12zfob11p{justify-content:center}._12zfob11q{background:var(--infinite-header-background)}._12zfob11r{padding:var(--infinite-cell-padding);border-bottom:var(--infinite-cell-border);border-right:var(--infinite-cell-border);background:var(--infinite-header-cell-background)}._12zfob11s{border-top:var(--infinite-cell-border)}._1ek6mqy0{-webkit-padding-before:2px;padding-block-start:2px;-webkit-padding-after:2px;padding-block-end:2px;min-width:var(--infinite-header-cell-icon-size);height:var(--infinite-header-cell-icon-size)}.zneyzh0{transform:translate(50%);width:var(--infinite-resize-handle-active-area-width)}.zneyzh0:hover{overflow:visible}.zneyzh2{transform:translate(-50%)}.zneyzh8{transform:none}.zneyzh9{transform:none}.zneyzha{transform:none}.zneyzhb{right:calc((var(--infinite-resize-handle-active-area-width) - var(--infinite-resize-handle-width)) / 2);width:var(--infinite-resize-handle-width)}.zneyzh0:hover .zneyzhb{background:var(--infinite-resize-handle-hover-background)}.zneyzh0:hover .zneyzhd{background:var(--infinite-resize-handle-constrained-hover-background)}.qy58ya0{flex-flow:row;align-items:center;justify-content:center}.qy58ya1{display:flex}.qy58ya2{display:none}.qy58ya3{background:var(--infinite-load-mask-overlay-background);opacity:var(--infinite-load-mask-overlay-opacity)}.qy58ya4{position:relative;padding:var(--infinite-load-mask-padding);color:var(--infinite-load-mask-color);background:var(--infinite-load-mask-text-background);border-radius:var(--infinite-load-mask-border-radius)}.db3arf0{padding:var(--infinite-menu-padding);color:var(--infinite-menu-color);background:var(--infinite-menu-background);border-radius:var(--infinite-menu-border-radius);outline:none;box-shadow:0 6px 12px -2px var(--infinite-menu-shadow-color),0 3px 7px -3px var(--infinite-menu-background)}.db3arf1{display:contents}.db3arf2{padding-block:var(--infinite-menu-cell-padding-vertical);padding-inline:var(--infinite-menu-cell-padding-horizontal);margin-block:var(--infinite-menu-cell-margin-vertical);border:var(--infinite-active-row-border, var(--infinite-active-row-border-width, var(--infinite-active-cell-border-width)) var(--infinite-active-row-border-style, var(--infinite-active-cell-border-style)) var(--infinite-active-row-border-color, rgb(var(--infinite-active-cell-border-color--r) var(--infinite-active-cell-border-color--g) var(--infinite-active-cell-border-color--b))));border-color:transparent}.db3arf3{opacity:var(--infinite-menu-item-disabled-opacity);background:var(--infinite-menu-item-disabled-background)}.db3arf0:focus-within>.db3arf1>.db3arf9{border:var(--infinite-active-row-border, var(--infinite-active-row-border-width, var(--infinite-active-cell-border-width)) var(--infinite-active-row-border-style, var(--infinite-active-cell-border-style)) var(--infinite-active-row-border-color, rgb(var(--infinite-active-cell-border-color--r) var(--infinite-active-cell-border-color--g) var(--infinite-active-cell-border-color--b))))}.db3arf0:focus-within>.db3arf1>.db3arf9:first-child:last-child{border:var(--infinite-active-row-border, var(--infinite-active-row-border-width, var(--infinite-active-cell-border-width)) var(--infinite-active-row-border-style, var(--infinite-active-cell-border-style)) var(--infinite-active-row-border-color, rgb(var(--infinite-active-cell-border-color--r) var(--infinite-active-cell-border-color--g) var(--infinite-active-cell-border-color--b))))}.db3arf0:focus-within>.db3arf1>.db3arf9:first-child{border-right-color:transparent}.db3arf0:focus-within>.db3arf1>.db3arf9:last-child{border-left-color:transparent}.db3arf0:focus-within>.db3arf1>.db3arf9:not(:first-child):not(:last-child){border-left-color:transparent;border-right-color:transparent}.db3arfb{background:var(--infinite-menu-item-active-background);opacity:var(--infinite-menu-item-active-opacity)}.db3arfc{background:var(--infinite-menu-item-pressed-background);opacity:var(--infinite-menu-item-pressed-opacity)}.db3arfd{border-top:1px solid currentColor;border-bottom:0;margin-top:calc(var(--infinite-menu-cell-padding-vertical) / 2);margin-bottom:calc(var(--infinite-menu-cell-padding-vertical) / 2)}/**********************************
|
|
726
2
|
** ADAPTABLE BASE STYLES **
|
|
727
|
-
|
|
728
|
-
:root {
|
|
3
|
+
**********************************/:root {
|
|
729
4
|
--rdp-cell-size: 40px;
|
|
730
5
|
--rdp-accent-color: #0000ff;
|
|
731
6
|
--rdp-background-color: #e7edff;
|
|
@@ -736,12 +11,9 @@
|
|
|
736
11
|
--rdp-outline: 2px solid var(--rdp-accent-color);
|
|
737
12
|
/* Outline border for focused and selected elements */
|
|
738
13
|
--rdp-outline-selected: 2px solid rgba(0, 0, 0, 0.75);
|
|
739
|
-
}
|
|
740
|
-
.rdp {
|
|
14
|
+
}.rdp {
|
|
741
15
|
margin: 1em;
|
|
742
|
-
}
|
|
743
|
-
/* Hide elements for devices that are not screen readers */
|
|
744
|
-
.rdp-vhidden {
|
|
16
|
+
}/* Hide elements for devices that are not screen readers */.rdp-vhidden {
|
|
745
17
|
box-sizing: border-box;
|
|
746
18
|
padding: 0;
|
|
747
19
|
margin: 0;
|
|
@@ -758,9 +30,7 @@
|
|
|
758
30
|
overflow: hidden !important;
|
|
759
31
|
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
760
32
|
border: 0 !important;
|
|
761
|
-
}
|
|
762
|
-
/* Buttons */
|
|
763
|
-
.rdp-button_reset {
|
|
33
|
+
}/* Buttons */.rdp-button_reset {
|
|
764
34
|
appearance: none;
|
|
765
35
|
position: relative;
|
|
766
36
|
margin: 0;
|
|
@@ -773,64 +43,49 @@
|
|
|
773
43
|
|
|
774
44
|
-moz-appearance: none;
|
|
775
45
|
-webkit-appearance: none;
|
|
776
|
-
}
|
|
777
|
-
.rdp-button {
|
|
46
|
+
}.rdp-button {
|
|
778
47
|
border: 2px solid transparent;
|
|
779
|
-
}
|
|
780
|
-
.rdp-button[aria-disabled='true'] {
|
|
48
|
+
}.rdp-button[aria-disabled='true'] {
|
|
781
49
|
opacity: 0.25;
|
|
782
50
|
pointer-events: none;
|
|
783
|
-
}
|
|
784
|
-
.rdp-button:not([aria-disabled='true']) {
|
|
51
|
+
}.rdp-button:not([aria-disabled='true']) {
|
|
785
52
|
cursor: pointer;
|
|
786
|
-
}
|
|
787
|
-
.rdp-button:focus,
|
|
53
|
+
}.rdp-button:focus,
|
|
788
54
|
.rdp-button:active {
|
|
789
55
|
color: inherit;
|
|
790
56
|
border: var(--rdp-outline);
|
|
791
57
|
background-color: var(--rdp-background-color);
|
|
792
|
-
}
|
|
793
|
-
.rdp-button:hover:not([aria-disabled='true']) {
|
|
58
|
+
}.rdp-button:hover:not([aria-disabled='true']) {
|
|
794
59
|
background-color: var(--rdp-background-color);
|
|
795
|
-
}
|
|
796
|
-
.rdp-months {
|
|
60
|
+
}.rdp-months {
|
|
797
61
|
display: flex;
|
|
798
|
-
}
|
|
799
|
-
.rdp-month {
|
|
62
|
+
}.rdp-month {
|
|
800
63
|
margin: 0 1em;
|
|
801
|
-
}
|
|
802
|
-
.rdp-month:first-child {
|
|
64
|
+
}.rdp-month:first-child {
|
|
803
65
|
margin-left: 0;
|
|
804
|
-
}
|
|
805
|
-
.rdp-month:last-child {
|
|
66
|
+
}.rdp-month:last-child {
|
|
806
67
|
margin-right: 0;
|
|
807
|
-
}
|
|
808
|
-
.rdp-table {
|
|
68
|
+
}.rdp-table {
|
|
809
69
|
margin: 0;
|
|
810
70
|
max-width: calc(var(--rdp-cell-size) * 7);
|
|
811
71
|
border-collapse: collapse;
|
|
812
|
-
}
|
|
813
|
-
.rdp-with_weeknumber .rdp-table {
|
|
72
|
+
}.rdp-with_weeknumber .rdp-table {
|
|
814
73
|
max-width: calc(var(--rdp-cell-size) * 8);
|
|
815
74
|
border-collapse: collapse;
|
|
816
|
-
}
|
|
817
|
-
.rdp-caption {
|
|
75
|
+
}.rdp-caption {
|
|
818
76
|
display: flex;
|
|
819
77
|
align-items: center;
|
|
820
78
|
justify-content: space-between;
|
|
821
79
|
padding: 0;
|
|
822
80
|
text-align: left;
|
|
823
|
-
}
|
|
824
|
-
.rdp-multiple_months .rdp-caption {
|
|
81
|
+
}.rdp-multiple_months .rdp-caption {
|
|
825
82
|
position: relative;
|
|
826
83
|
display: block;
|
|
827
84
|
text-align: center;
|
|
828
|
-
}
|
|
829
|
-
.rdp-caption_dropdowns {
|
|
85
|
+
}.rdp-caption_dropdowns {
|
|
830
86
|
position: relative;
|
|
831
87
|
display: inline-flex;
|
|
832
|
-
}
|
|
833
|
-
.rdp-caption_label {
|
|
88
|
+
}.rdp-caption_label {
|
|
834
89
|
position: relative;
|
|
835
90
|
z-index: 1;
|
|
836
91
|
display: inline-flex;
|
|
@@ -844,23 +99,19 @@
|
|
|
844
99
|
font-family: inherit;
|
|
845
100
|
font-size: 140%;
|
|
846
101
|
font-weight: bold;
|
|
847
|
-
}
|
|
848
|
-
.rdp-nav {
|
|
102
|
+
}.rdp-nav {
|
|
849
103
|
white-space: nowrap;
|
|
850
|
-
}
|
|
851
|
-
.rdp-multiple_months .rdp-caption_start .rdp-nav {
|
|
104
|
+
}.rdp-multiple_months .rdp-caption_start .rdp-nav {
|
|
852
105
|
position: absolute;
|
|
853
106
|
top: 50%;
|
|
854
107
|
left: 0;
|
|
855
108
|
transform: translateY(-50%);
|
|
856
|
-
}
|
|
857
|
-
.rdp-multiple_months .rdp-caption_end .rdp-nav {
|
|
109
|
+
}.rdp-multiple_months .rdp-caption_end .rdp-nav {
|
|
858
110
|
position: absolute;
|
|
859
111
|
top: 50%;
|
|
860
112
|
right: 0;
|
|
861
113
|
transform: translateY(-50%);
|
|
862
|
-
}
|
|
863
|
-
.rdp-nav_button {
|
|
114
|
+
}.rdp-nav_button {
|
|
864
115
|
display: inline-flex;
|
|
865
116
|
align-items: center;
|
|
866
117
|
justify-content: center;
|
|
@@ -868,17 +119,12 @@
|
|
|
868
119
|
height: var(--rdp-cell-size);
|
|
869
120
|
padding: 0.25em;
|
|
870
121
|
border-radius: 100%;
|
|
871
|
-
}
|
|
872
|
-
/* ---------- */
|
|
873
|
-
/* Dropdowns */
|
|
874
|
-
/* ---------- */
|
|
875
|
-
.rdp-dropdown_year,
|
|
122
|
+
}/* ---------- *//* Dropdowns *//* ---------- */.rdp-dropdown_year,
|
|
876
123
|
.rdp-dropdown_month {
|
|
877
124
|
position: relative;
|
|
878
125
|
display: inline-flex;
|
|
879
126
|
align-items: center;
|
|
880
|
-
}
|
|
881
|
-
.rdp-dropdown {
|
|
127
|
+
}.rdp-dropdown {
|
|
882
128
|
appearance: none;
|
|
883
129
|
position: absolute;
|
|
884
130
|
z-index: 2;
|
|
@@ -895,28 +141,22 @@
|
|
|
895
141
|
font-family: inherit;
|
|
896
142
|
font-size: inherit;
|
|
897
143
|
line-height: inherit;
|
|
898
|
-
}
|
|
899
|
-
.rdp-dropdown[disabled] {
|
|
144
|
+
}.rdp-dropdown[disabled] {
|
|
900
145
|
opacity: unset;
|
|
901
146
|
color: unset;
|
|
902
|
-
}
|
|
903
|
-
.rdp-dropdown:focus:not([disabled]) + .rdp-caption_label,
|
|
147
|
+
}.rdp-dropdown:focus:not([disabled]) + .rdp-caption_label,
|
|
904
148
|
.rdp-dropdown:active:not([disabled]) + .rdp-caption_label {
|
|
905
149
|
border: var(--rdp-outline);
|
|
906
150
|
border-radius: 6px;
|
|
907
151
|
background-color: var(--rdp-background-color);
|
|
908
|
-
}
|
|
909
|
-
.rdp-dropdown_icon {
|
|
152
|
+
}.rdp-dropdown_icon {
|
|
910
153
|
margin: 0 0 0 5px;
|
|
911
|
-
}
|
|
912
|
-
.rdp-head {
|
|
154
|
+
}.rdp-head {
|
|
913
155
|
border: 0;
|
|
914
|
-
}
|
|
915
|
-
.rdp-head_row,
|
|
156
|
+
}.rdp-head_row,
|
|
916
157
|
.rdp-row {
|
|
917
158
|
height: 100%;
|
|
918
|
-
}
|
|
919
|
-
.rdp-head_cell {
|
|
159
|
+
}.rdp-head_cell {
|
|
920
160
|
vertical-align: middle;
|
|
921
161
|
text-transform: uppercase;
|
|
922
162
|
font-size: 0.75em;
|
|
@@ -925,24 +165,19 @@
|
|
|
925
165
|
height: 100%;
|
|
926
166
|
height: var(--rdp-cell-size);
|
|
927
167
|
padding: 0;
|
|
928
|
-
}
|
|
929
|
-
.rdp-tbody {
|
|
168
|
+
}.rdp-tbody {
|
|
930
169
|
border: 0;
|
|
931
|
-
}
|
|
932
|
-
.rdp-tfoot {
|
|
170
|
+
}.rdp-tfoot {
|
|
933
171
|
margin: 0.5em;
|
|
934
|
-
}
|
|
935
|
-
.rdp-cell {
|
|
172
|
+
}.rdp-cell {
|
|
936
173
|
width: var(--rdp-cell-size);
|
|
937
174
|
height: 100%;
|
|
938
175
|
height: var(--rdp-cell-size);
|
|
939
176
|
padding: 0;
|
|
940
177
|
text-align: center;
|
|
941
|
-
}
|
|
942
|
-
.rdp-weeknumber {
|
|
178
|
+
}.rdp-weeknumber {
|
|
943
179
|
font-size: 0.75em;
|
|
944
|
-
}
|
|
945
|
-
.rdp-weeknumber,
|
|
180
|
+
}.rdp-weeknumber,
|
|
946
181
|
.rdp-day {
|
|
947
182
|
display: flex;
|
|
948
183
|
overflow: hidden;
|
|
@@ -955,43 +190,33 @@
|
|
|
955
190
|
margin: 0;
|
|
956
191
|
border: 2px solid transparent;
|
|
957
192
|
border-radius: 100%;
|
|
958
|
-
}
|
|
959
|
-
.rdp-day_today:not(.rdp-day_outside) {
|
|
193
|
+
}.rdp-day_today:not(.rdp-day_outside) {
|
|
960
194
|
font-weight: bold;
|
|
961
|
-
}
|
|
962
|
-
.rdp-day_selected:not([aria-disabled='true']),
|
|
195
|
+
}.rdp-day_selected:not([aria-disabled='true']),
|
|
963
196
|
.rdp-day_selected:focus:not([aria-disabled='true']),
|
|
964
197
|
.rdp-day_selected:active:not([aria-disabled='true']),
|
|
965
198
|
.rdp-day_selected:hover:not([aria-disabled='true']) {
|
|
966
199
|
color: white;
|
|
967
200
|
background-color: var(--rdp-accent-color);
|
|
968
|
-
}
|
|
969
|
-
.rdp-day_selected:focus:not([aria-disabled='true']) {
|
|
201
|
+
}.rdp-day_selected:focus:not([aria-disabled='true']) {
|
|
970
202
|
border: var(--rdp-outline-selected);
|
|
971
|
-
}
|
|
972
|
-
.rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
203
|
+
}.rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
973
204
|
border-top-right-radius: 0;
|
|
974
205
|
border-bottom-right-radius: 0;
|
|
975
|
-
}
|
|
976
|
-
.rdp:not([dir='rtl']) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
206
|
+
}.rdp:not([dir='rtl']) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
977
207
|
border-top-left-radius: 0;
|
|
978
208
|
border-bottom-left-radius: 0;
|
|
979
|
-
}
|
|
980
|
-
.rdp[dir='rtl'] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
209
|
+
}.rdp[dir='rtl'] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
981
210
|
border-top-left-radius: 0;
|
|
982
211
|
border-bottom-left-radius: 0;
|
|
983
|
-
}
|
|
984
|
-
.rdp[dir='rtl'] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
212
|
+
}.rdp[dir='rtl'] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
985
213
|
border-top-right-radius: 0;
|
|
986
214
|
border-bottom-right-radius: 0;
|
|
987
|
-
}
|
|
988
|
-
.rdp-day_range_end.rdp-day_range_start {
|
|
215
|
+
}.rdp-day_range_end.rdp-day_range_start {
|
|
989
216
|
border-radius: 100%;
|
|
990
|
-
}
|
|
991
|
-
.rdp-day_range_middle {
|
|
217
|
+
}.rdp-day_range_middle {
|
|
992
218
|
border-radius: 0;
|
|
993
|
-
}
|
|
994
|
-
:root {
|
|
219
|
+
}:root {
|
|
995
220
|
--toastify-color-light: #fff;
|
|
996
221
|
--toastify-color-dark: #121212;
|
|
997
222
|
--toastify-color-info: #3498db;
|
|
@@ -1031,8 +256,7 @@
|
|
|
1031
256
|
--toastify-color-progress-success: var(--toastify-color-success);
|
|
1032
257
|
--toastify-color-progress-warning: var(--toastify-color-warning);
|
|
1033
258
|
--toastify-color-progress-error: var(--toastify-color-error);
|
|
1034
|
-
}
|
|
1035
|
-
.Toastify__toast-container {
|
|
259
|
+
}.Toastify__toast-container {
|
|
1036
260
|
z-index: var(--toastify-z-index);
|
|
1037
261
|
-webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
|
|
1038
262
|
position: fixed;
|
|
@@ -1040,34 +264,27 @@
|
|
|
1040
264
|
width: var(--toastify-toast-width);
|
|
1041
265
|
box-sizing: border-box;
|
|
1042
266
|
color: #fff;
|
|
1043
|
-
}
|
|
1044
|
-
.Toastify__toast-container--top-left {
|
|
267
|
+
}.Toastify__toast-container--top-left {
|
|
1045
268
|
top: 1em;
|
|
1046
269
|
left: 1em;
|
|
1047
|
-
}
|
|
1048
|
-
.Toastify__toast-container--top-center {
|
|
270
|
+
}.Toastify__toast-container--top-center {
|
|
1049
271
|
top: 1em;
|
|
1050
272
|
left: 50%;
|
|
1051
273
|
transform: translateX(-50%);
|
|
1052
|
-
}
|
|
1053
|
-
.Toastify__toast-container--top-right {
|
|
274
|
+
}.Toastify__toast-container--top-right {
|
|
1054
275
|
top: 1em;
|
|
1055
276
|
right: 1em;
|
|
1056
|
-
}
|
|
1057
|
-
.Toastify__toast-container--bottom-left {
|
|
277
|
+
}.Toastify__toast-container--bottom-left {
|
|
1058
278
|
bottom: 1em;
|
|
1059
279
|
left: 1em;
|
|
1060
|
-
}
|
|
1061
|
-
.Toastify__toast-container--bottom-center {
|
|
280
|
+
}.Toastify__toast-container--bottom-center {
|
|
1062
281
|
bottom: 1em;
|
|
1063
282
|
left: 50%;
|
|
1064
283
|
transform: translateX(-50%);
|
|
1065
|
-
}
|
|
1066
|
-
.Toastify__toast-container--bottom-right {
|
|
284
|
+
}.Toastify__toast-container--bottom-right {
|
|
1067
285
|
bottom: 1em;
|
|
1068
286
|
right: 1em;
|
|
1069
|
-
}
|
|
1070
|
-
@media only screen and (max-width : 480px) {
|
|
287
|
+
}@media only screen and (max-width : 480px) {
|
|
1071
288
|
.Toastify__toast-container {
|
|
1072
289
|
width: 100vw;
|
|
1073
290
|
padding: 0;
|
|
@@ -1086,8 +303,7 @@
|
|
|
1086
303
|
right: 0;
|
|
1087
304
|
left: initial;
|
|
1088
305
|
}
|
|
1089
|
-
}
|
|
1090
|
-
.Toastify__toast {
|
|
306
|
+
}.Toastify__toast {
|
|
1091
307
|
position: relative;
|
|
1092
308
|
min-height: var(--toastify-toast-min-height);
|
|
1093
309
|
box-sizing: border-box;
|
|
@@ -1104,11 +320,9 @@
|
|
|
1104
320
|
font-family: var(--toastify-font-family);
|
|
1105
321
|
cursor: pointer;
|
|
1106
322
|
direction: ltr;
|
|
1107
|
-
}
|
|
1108
|
-
.Toastify__toast--rtl {
|
|
323
|
+
}.Toastify__toast--rtl {
|
|
1109
324
|
direction: rtl;
|
|
1110
|
-
}
|
|
1111
|
-
.Toastify__toast-body {
|
|
325
|
+
}.Toastify__toast-body {
|
|
1112
326
|
margin: auto 0;
|
|
1113
327
|
-ms-flex: 1 1 auto;
|
|
1114
328
|
flex: 1 1 auto;
|
|
@@ -1117,12 +331,10 @@
|
|
|
1117
331
|
display: flex;
|
|
1118
332
|
-ms-flex-align: center;
|
|
1119
333
|
align-items: center;
|
|
1120
|
-
}
|
|
1121
|
-
.Toastify__toast-body > div:last-child {
|
|
334
|
+
}.Toastify__toast-body > div:last-child {
|
|
1122
335
|
-ms-flex: 1;
|
|
1123
336
|
flex: 1;
|
|
1124
|
-
}
|
|
1125
|
-
.Toastify__toast-icon {
|
|
337
|
+
}.Toastify__toast-icon {
|
|
1126
338
|
-webkit-margin-end: 10px;
|
|
1127
339
|
margin-inline-end: 10px;
|
|
1128
340
|
width: 20px;
|
|
@@ -1130,71 +342,53 @@
|
|
|
1130
342
|
flex-shrink: 0;
|
|
1131
343
|
display: -ms-flexbox;
|
|
1132
344
|
display: flex;
|
|
1133
|
-
}
|
|
1134
|
-
.Toastify--animate {
|
|
345
|
+
}.Toastify--animate {
|
|
1135
346
|
animation-fill-mode: both;
|
|
1136
347
|
animation-duration: 0.7s;
|
|
1137
|
-
}
|
|
1138
|
-
.Toastify--animate-icon {
|
|
348
|
+
}.Toastify--animate-icon {
|
|
1139
349
|
animation-fill-mode: both;
|
|
1140
350
|
animation-duration: 0.3s;
|
|
1141
|
-
}
|
|
1142
|
-
@media only screen and (max-width : 480px) {
|
|
351
|
+
}@media only screen and (max-width : 480px) {
|
|
1143
352
|
.Toastify__toast {
|
|
1144
353
|
margin-bottom: 0;
|
|
1145
354
|
border-radius: 0;
|
|
1146
355
|
}
|
|
1147
|
-
}
|
|
1148
|
-
.Toastify__toast-theme--dark {
|
|
356
|
+
}.Toastify__toast-theme--dark {
|
|
1149
357
|
background: var(--toastify-color-dark);
|
|
1150
358
|
color: var(--toastify-text-color-dark);
|
|
1151
|
-
}
|
|
1152
|
-
.Toastify__toast-theme--light {
|
|
359
|
+
}.Toastify__toast-theme--light {
|
|
1153
360
|
background: var(--toastify-color-light);
|
|
1154
361
|
color: var(--toastify-text-color-light);
|
|
1155
|
-
}
|
|
1156
|
-
.Toastify__toast-theme--colored.Toastify__toast--default {
|
|
362
|
+
}.Toastify__toast-theme--colored.Toastify__toast--default {
|
|
1157
363
|
background: var(--toastify-color-light);
|
|
1158
364
|
color: var(--toastify-text-color-light);
|
|
1159
|
-
}
|
|
1160
|
-
.Toastify__toast-theme--colored.Toastify__toast--info {
|
|
365
|
+
}.Toastify__toast-theme--colored.Toastify__toast--info {
|
|
1161
366
|
color: var(--toastify-text-color-info);
|
|
1162
367
|
background: var(--toastify-color-info);
|
|
1163
|
-
}
|
|
1164
|
-
.Toastify__toast-theme--colored.Toastify__toast--success {
|
|
368
|
+
}.Toastify__toast-theme--colored.Toastify__toast--success {
|
|
1165
369
|
color: var(--toastify-text-color-success);
|
|
1166
370
|
background: var(--toastify-color-success);
|
|
1167
|
-
}
|
|
1168
|
-
.Toastify__toast-theme--colored.Toastify__toast--warning {
|
|
371
|
+
}.Toastify__toast-theme--colored.Toastify__toast--warning {
|
|
1169
372
|
color: var(--toastify-text-color-warning);
|
|
1170
373
|
background: var(--toastify-color-warning);
|
|
1171
|
-
}
|
|
1172
|
-
.Toastify__toast-theme--colored.Toastify__toast--error {
|
|
374
|
+
}.Toastify__toast-theme--colored.Toastify__toast--error {
|
|
1173
375
|
color: var(--toastify-text-color-error);
|
|
1174
376
|
background: var(--toastify-color-error);
|
|
1175
|
-
}
|
|
1176
|
-
.Toastify__progress-bar-theme--light {
|
|
377
|
+
}.Toastify__progress-bar-theme--light {
|
|
1177
378
|
background: var(--toastify-color-progress-light);
|
|
1178
|
-
}
|
|
1179
|
-
.Toastify__progress-bar-theme--dark {
|
|
379
|
+
}.Toastify__progress-bar-theme--dark {
|
|
1180
380
|
background: var(--toastify-color-progress-dark);
|
|
1181
|
-
}
|
|
1182
|
-
.Toastify__progress-bar--info {
|
|
381
|
+
}.Toastify__progress-bar--info {
|
|
1183
382
|
background: var(--toastify-color-progress-info);
|
|
1184
|
-
}
|
|
1185
|
-
.Toastify__progress-bar--success {
|
|
383
|
+
}.Toastify__progress-bar--success {
|
|
1186
384
|
background: var(--toastify-color-progress-success);
|
|
1187
|
-
}
|
|
1188
|
-
.Toastify__progress-bar--warning {
|
|
385
|
+
}.Toastify__progress-bar--warning {
|
|
1189
386
|
background: var(--toastify-color-progress-warning);
|
|
1190
|
-
}
|
|
1191
|
-
.Toastify__progress-bar--error {
|
|
387
|
+
}.Toastify__progress-bar--error {
|
|
1192
388
|
background: var(--toastify-color-progress-error);
|
|
1193
|
-
}
|
|
1194
|
-
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
|
|
389
|
+
}.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
|
|
1195
390
|
background: var(--toastify-color-transparent);
|
|
1196
|
-
}
|
|
1197
|
-
.Toastify__close-button {
|
|
391
|
+
}.Toastify__close-button {
|
|
1198
392
|
color: #fff;
|
|
1199
393
|
background: transparent;
|
|
1200
394
|
outline: none;
|
|
@@ -1205,28 +399,23 @@
|
|
|
1205
399
|
transition: 0.3s ease;
|
|
1206
400
|
-ms-flex-item-align: start;
|
|
1207
401
|
align-self: flex-start;
|
|
1208
|
-
}
|
|
1209
|
-
.Toastify__close-button--light {
|
|
402
|
+
}.Toastify__close-button--light {
|
|
1210
403
|
color: #000;
|
|
1211
404
|
opacity: 0.3;
|
|
1212
|
-
}
|
|
1213
|
-
.Toastify__close-button > svg {
|
|
405
|
+
}.Toastify__close-button > svg {
|
|
1214
406
|
fill: currentColor;
|
|
1215
407
|
height: 16px;
|
|
1216
408
|
width: 14px;
|
|
1217
|
-
}
|
|
1218
|
-
.Toastify__close-button:hover, .Toastify__close-button:focus {
|
|
409
|
+
}.Toastify__close-button:hover, .Toastify__close-button:focus {
|
|
1219
410
|
opacity: 1;
|
|
1220
|
-
}
|
|
1221
|
-
@keyframes Toastify__trackProgress {
|
|
411
|
+
}@keyframes Toastify__trackProgress {
|
|
1222
412
|
0% {
|
|
1223
413
|
transform: scaleX(1);
|
|
1224
414
|
}
|
|
1225
415
|
100% {
|
|
1226
416
|
transform: scaleX(0);
|
|
1227
417
|
}
|
|
1228
|
-
}
|
|
1229
|
-
.Toastify__progress-bar {
|
|
418
|
+
}.Toastify__progress-bar {
|
|
1230
419
|
position: absolute;
|
|
1231
420
|
bottom: 0;
|
|
1232
421
|
left: 0;
|
|
@@ -1235,19 +424,15 @@
|
|
|
1235
424
|
z-index: var(--toastify-z-index);
|
|
1236
425
|
opacity: 0.7;
|
|
1237
426
|
transform-origin: left;
|
|
1238
|
-
}
|
|
1239
|
-
.Toastify__progress-bar--animated {
|
|
427
|
+
}.Toastify__progress-bar--animated {
|
|
1240
428
|
animation: Toastify__trackProgress linear 1 forwards;
|
|
1241
|
-
}
|
|
1242
|
-
.Toastify__progress-bar--controlled {
|
|
429
|
+
}.Toastify__progress-bar--controlled {
|
|
1243
430
|
transition: transform 0.2s;
|
|
1244
|
-
}
|
|
1245
|
-
.Toastify__progress-bar--rtl {
|
|
431
|
+
}.Toastify__progress-bar--rtl {
|
|
1246
432
|
right: 0;
|
|
1247
433
|
left: initial;
|
|
1248
434
|
transform-origin: right;
|
|
1249
|
-
}
|
|
1250
|
-
.Toastify__spinner {
|
|
435
|
+
}.Toastify__spinner {
|
|
1251
436
|
width: 20px;
|
|
1252
437
|
height: 20px;
|
|
1253
438
|
box-sizing: border-box;
|
|
@@ -1256,8 +441,7 @@
|
|
|
1256
441
|
border-color: var(--toastify-spinner-color-empty-area);
|
|
1257
442
|
border-right-color: var(--toastify-spinner-color);
|
|
1258
443
|
animation: Toastify__spin 0.65s linear infinite;
|
|
1259
|
-
}
|
|
1260
|
-
@keyframes Toastify__bounceInRight {
|
|
444
|
+
}@keyframes Toastify__bounceInRight {
|
|
1261
445
|
from, 60%, 75%, 90%, to {
|
|
1262
446
|
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
1263
447
|
}
|
|
@@ -1278,8 +462,7 @@
|
|
|
1278
462
|
to {
|
|
1279
463
|
transform: none;
|
|
1280
464
|
}
|
|
1281
|
-
}
|
|
1282
|
-
@keyframes Toastify__bounceOutRight {
|
|
465
|
+
}@keyframes Toastify__bounceOutRight {
|
|
1283
466
|
20% {
|
|
1284
467
|
opacity: 1;
|
|
1285
468
|
transform: translate3d(-20px, 0, 0);
|
|
@@ -1288,8 +471,7 @@
|
|
|
1288
471
|
opacity: 0;
|
|
1289
472
|
transform: translate3d(2000px, 0, 0);
|
|
1290
473
|
}
|
|
1291
|
-
}
|
|
1292
|
-
@keyframes Toastify__bounceInLeft {
|
|
474
|
+
}@keyframes Toastify__bounceInLeft {
|
|
1293
475
|
from, 60%, 75%, 90%, to {
|
|
1294
476
|
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
1295
477
|
}
|
|
@@ -1310,8 +492,7 @@
|
|
|
1310
492
|
to {
|
|
1311
493
|
transform: none;
|
|
1312
494
|
}
|
|
1313
|
-
}
|
|
1314
|
-
@keyframes Toastify__bounceOutLeft {
|
|
495
|
+
}@keyframes Toastify__bounceOutLeft {
|
|
1315
496
|
20% {
|
|
1316
497
|
opacity: 1;
|
|
1317
498
|
transform: translate3d(20px, 0, 0);
|
|
@@ -1320,8 +501,7 @@
|
|
|
1320
501
|
opacity: 0;
|
|
1321
502
|
transform: translate3d(-2000px, 0, 0);
|
|
1322
503
|
}
|
|
1323
|
-
}
|
|
1324
|
-
@keyframes Toastify__bounceInUp {
|
|
504
|
+
}@keyframes Toastify__bounceInUp {
|
|
1325
505
|
from, 60%, 75%, 90%, to {
|
|
1326
506
|
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
1327
507
|
}
|
|
@@ -1342,8 +522,7 @@
|
|
|
1342
522
|
to {
|
|
1343
523
|
transform: translate3d(0, 0, 0);
|
|
1344
524
|
}
|
|
1345
|
-
}
|
|
1346
|
-
@keyframes Toastify__bounceOutUp {
|
|
525
|
+
}@keyframes Toastify__bounceOutUp {
|
|
1347
526
|
20% {
|
|
1348
527
|
transform: translate3d(0, -10px, 0);
|
|
1349
528
|
}
|
|
@@ -1355,8 +534,7 @@
|
|
|
1355
534
|
opacity: 0;
|
|
1356
535
|
transform: translate3d(0, -2000px, 0);
|
|
1357
536
|
}
|
|
1358
|
-
}
|
|
1359
|
-
@keyframes Toastify__bounceInDown {
|
|
537
|
+
}@keyframes Toastify__bounceInDown {
|
|
1360
538
|
from, 60%, 75%, 90%, to {
|
|
1361
539
|
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
1362
540
|
}
|
|
@@ -1377,8 +555,7 @@
|
|
|
1377
555
|
to {
|
|
1378
556
|
transform: none;
|
|
1379
557
|
}
|
|
1380
|
-
}
|
|
1381
|
-
@keyframes Toastify__bounceOutDown {
|
|
558
|
+
}@keyframes Toastify__bounceOutDown {
|
|
1382
559
|
20% {
|
|
1383
560
|
transform: translate3d(0, 10px, 0);
|
|
1384
561
|
}
|
|
@@ -1390,32 +567,23 @@
|
|
|
1390
567
|
opacity: 0;
|
|
1391
568
|
transform: translate3d(0, 2000px, 0);
|
|
1392
569
|
}
|
|
1393
|
-
}
|
|
1394
|
-
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
|
|
570
|
+
}.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
|
|
1395
571
|
animation-name: Toastify__bounceInLeft;
|
|
1396
|
-
}
|
|
1397
|
-
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
|
|
572
|
+
}.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
|
|
1398
573
|
animation-name: Toastify__bounceInRight;
|
|
1399
|
-
}
|
|
1400
|
-
.Toastify__bounce-enter--top-center {
|
|
574
|
+
}.Toastify__bounce-enter--top-center {
|
|
1401
575
|
animation-name: Toastify__bounceInDown;
|
|
1402
|
-
}
|
|
1403
|
-
.Toastify__bounce-enter--bottom-center {
|
|
576
|
+
}.Toastify__bounce-enter--bottom-center {
|
|
1404
577
|
animation-name: Toastify__bounceInUp;
|
|
1405
|
-
}
|
|
1406
|
-
.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
|
|
578
|
+
}.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
|
|
1407
579
|
animation-name: Toastify__bounceOutLeft;
|
|
1408
|
-
}
|
|
1409
|
-
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
|
|
580
|
+
}.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
|
|
1410
581
|
animation-name: Toastify__bounceOutRight;
|
|
1411
|
-
}
|
|
1412
|
-
.Toastify__bounce-exit--top-center {
|
|
582
|
+
}.Toastify__bounce-exit--top-center {
|
|
1413
583
|
animation-name: Toastify__bounceOutUp;
|
|
1414
|
-
}
|
|
1415
|
-
.Toastify__bounce-exit--bottom-center {
|
|
584
|
+
}.Toastify__bounce-exit--bottom-center {
|
|
1416
585
|
animation-name: Toastify__bounceOutDown;
|
|
1417
|
-
}
|
|
1418
|
-
@keyframes Toastify__zoomIn {
|
|
586
|
+
}@keyframes Toastify__zoomIn {
|
|
1419
587
|
from {
|
|
1420
588
|
opacity: 0;
|
|
1421
589
|
transform: scale3d(0.3, 0.3, 0.3);
|
|
@@ -1423,8 +591,7 @@
|
|
|
1423
591
|
50% {
|
|
1424
592
|
opacity: 1;
|
|
1425
593
|
}
|
|
1426
|
-
}
|
|
1427
|
-
@keyframes Toastify__zoomOut {
|
|
594
|
+
}@keyframes Toastify__zoomOut {
|
|
1428
595
|
from {
|
|
1429
596
|
opacity: 1;
|
|
1430
597
|
}
|
|
@@ -1435,14 +602,11 @@
|
|
|
1435
602
|
to {
|
|
1436
603
|
opacity: 0;
|
|
1437
604
|
}
|
|
1438
|
-
}
|
|
1439
|
-
.Toastify__zoom-enter {
|
|
605
|
+
}.Toastify__zoom-enter {
|
|
1440
606
|
animation-name: Toastify__zoomIn;
|
|
1441
|
-
}
|
|
1442
|
-
.Toastify__zoom-exit {
|
|
607
|
+
}.Toastify__zoom-exit {
|
|
1443
608
|
animation-name: Toastify__zoomOut;
|
|
1444
|
-
}
|
|
1445
|
-
@keyframes Toastify__flipIn {
|
|
609
|
+
}@keyframes Toastify__flipIn {
|
|
1446
610
|
from {
|
|
1447
611
|
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
1448
612
|
animation-timing-function: ease-in;
|
|
@@ -1462,8 +626,7 @@
|
|
|
1462
626
|
to {
|
|
1463
627
|
transform: perspective(400px);
|
|
1464
628
|
}
|
|
1465
|
-
}
|
|
1466
|
-
@keyframes Toastify__flipOut {
|
|
629
|
+
}@keyframes Toastify__flipOut {
|
|
1467
630
|
from {
|
|
1468
631
|
transform: perspective(400px);
|
|
1469
632
|
}
|
|
@@ -1475,14 +638,11 @@
|
|
|
1475
638
|
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
1476
639
|
opacity: 0;
|
|
1477
640
|
}
|
|
1478
|
-
}
|
|
1479
|
-
.Toastify__flip-enter {
|
|
641
|
+
}.Toastify__flip-enter {
|
|
1480
642
|
animation-name: Toastify__flipIn;
|
|
1481
|
-
}
|
|
1482
|
-
.Toastify__flip-exit {
|
|
643
|
+
}.Toastify__flip-exit {
|
|
1483
644
|
animation-name: Toastify__flipOut;
|
|
1484
|
-
}
|
|
1485
|
-
@keyframes Toastify__slideInRight {
|
|
645
|
+
}@keyframes Toastify__slideInRight {
|
|
1486
646
|
from {
|
|
1487
647
|
transform: translate3d(110%, 0, 0);
|
|
1488
648
|
visibility: visible;
|
|
@@ -1490,8 +650,7 @@
|
|
|
1490
650
|
to {
|
|
1491
651
|
transform: translate3d(0, 0, 0);
|
|
1492
652
|
}
|
|
1493
|
-
}
|
|
1494
|
-
@keyframes Toastify__slideInLeft {
|
|
653
|
+
}@keyframes Toastify__slideInLeft {
|
|
1495
654
|
from {
|
|
1496
655
|
transform: translate3d(-110%, 0, 0);
|
|
1497
656
|
visibility: visible;
|
|
@@ -1499,8 +658,7 @@
|
|
|
1499
658
|
to {
|
|
1500
659
|
transform: translate3d(0, 0, 0);
|
|
1501
660
|
}
|
|
1502
|
-
}
|
|
1503
|
-
@keyframes Toastify__slideInUp {
|
|
661
|
+
}@keyframes Toastify__slideInUp {
|
|
1504
662
|
from {
|
|
1505
663
|
transform: translate3d(0, 110%, 0);
|
|
1506
664
|
visibility: visible;
|
|
@@ -1508,8 +666,7 @@
|
|
|
1508
666
|
to {
|
|
1509
667
|
transform: translate3d(0, 0, 0);
|
|
1510
668
|
}
|
|
1511
|
-
}
|
|
1512
|
-
@keyframes Toastify__slideInDown {
|
|
669
|
+
}@keyframes Toastify__slideInDown {
|
|
1513
670
|
from {
|
|
1514
671
|
transform: translate3d(0, -110%, 0);
|
|
1515
672
|
visibility: visible;
|
|
@@ -1517,8 +674,7 @@
|
|
|
1517
674
|
to {
|
|
1518
675
|
transform: translate3d(0, 0, 0);
|
|
1519
676
|
}
|
|
1520
|
-
}
|
|
1521
|
-
@keyframes Toastify__slideOutRight {
|
|
677
|
+
}@keyframes Toastify__slideOutRight {
|
|
1522
678
|
from {
|
|
1523
679
|
transform: translate3d(0, 0, 0);
|
|
1524
680
|
}
|
|
@@ -1526,8 +682,7 @@
|
|
|
1526
682
|
visibility: hidden;
|
|
1527
683
|
transform: translate3d(110%, 0, 0);
|
|
1528
684
|
}
|
|
1529
|
-
}
|
|
1530
|
-
@keyframes Toastify__slideOutLeft {
|
|
685
|
+
}@keyframes Toastify__slideOutLeft {
|
|
1531
686
|
from {
|
|
1532
687
|
transform: translate3d(0, 0, 0);
|
|
1533
688
|
}
|
|
@@ -1535,8 +690,7 @@
|
|
|
1535
690
|
visibility: hidden;
|
|
1536
691
|
transform: translate3d(-110%, 0, 0);
|
|
1537
692
|
}
|
|
1538
|
-
}
|
|
1539
|
-
@keyframes Toastify__slideOutDown {
|
|
693
|
+
}@keyframes Toastify__slideOutDown {
|
|
1540
694
|
from {
|
|
1541
695
|
transform: translate3d(0, 0, 0);
|
|
1542
696
|
}
|
|
@@ -1544,8 +698,7 @@
|
|
|
1544
698
|
visibility: hidden;
|
|
1545
699
|
transform: translate3d(0, 500px, 0);
|
|
1546
700
|
}
|
|
1547
|
-
}
|
|
1548
|
-
@keyframes Toastify__slideOutUp {
|
|
701
|
+
}@keyframes Toastify__slideOutUp {
|
|
1549
702
|
from {
|
|
1550
703
|
transform: translate3d(0, 0, 0);
|
|
1551
704
|
}
|
|
@@ -1553,40 +706,30 @@
|
|
|
1553
706
|
visibility: hidden;
|
|
1554
707
|
transform: translate3d(0, -500px, 0);
|
|
1555
708
|
}
|
|
1556
|
-
}
|
|
1557
|
-
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
|
|
709
|
+
}.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
|
|
1558
710
|
animation-name: Toastify__slideInLeft;
|
|
1559
|
-
}
|
|
1560
|
-
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
|
|
711
|
+
}.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
|
|
1561
712
|
animation-name: Toastify__slideInRight;
|
|
1562
|
-
}
|
|
1563
|
-
.Toastify__slide-enter--top-center {
|
|
713
|
+
}.Toastify__slide-enter--top-center {
|
|
1564
714
|
animation-name: Toastify__slideInDown;
|
|
1565
|
-
}
|
|
1566
|
-
.Toastify__slide-enter--bottom-center {
|
|
715
|
+
}.Toastify__slide-enter--bottom-center {
|
|
1567
716
|
animation-name: Toastify__slideInUp;
|
|
1568
|
-
}
|
|
1569
|
-
.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
|
|
717
|
+
}.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
|
|
1570
718
|
animation-name: Toastify__slideOutLeft;
|
|
1571
|
-
}
|
|
1572
|
-
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
|
|
719
|
+
}.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
|
|
1573
720
|
animation-name: Toastify__slideOutRight;
|
|
1574
|
-
}
|
|
1575
|
-
.Toastify__slide-exit--top-center {
|
|
721
|
+
}.Toastify__slide-exit--top-center {
|
|
1576
722
|
animation-name: Toastify__slideOutUp;
|
|
1577
|
-
}
|
|
1578
|
-
.Toastify__slide-exit--bottom-center {
|
|
723
|
+
}.Toastify__slide-exit--bottom-center {
|
|
1579
724
|
animation-name: Toastify__slideOutDown;
|
|
1580
|
-
}
|
|
1581
|
-
@keyframes Toastify__spin {
|
|
725
|
+
}@keyframes Toastify__spin {
|
|
1582
726
|
from {
|
|
1583
727
|
transform: rotate(0deg);
|
|
1584
728
|
}
|
|
1585
729
|
to {
|
|
1586
730
|
transform: rotate(360deg);
|
|
1587
731
|
}
|
|
1588
|
-
}
|
|
1589
|
-
:root {
|
|
732
|
+
}:root {
|
|
1590
733
|
--ab-space-0: 0px;
|
|
1591
734
|
--ab-space-1: 4px;
|
|
1592
735
|
--ab-space-2: 8px;
|
|
@@ -1649,52 +792,52 @@
|
|
|
1649
792
|
--ab-icon-fill: currentColor;
|
|
1650
793
|
--ab-custom-scrollbar-size: 10px;
|
|
1651
794
|
--ab-grid-row-height: 40px;
|
|
1652
|
-
--ab-loaded: 777;
|
|
1653
|
-
:root {
|
|
795
|
+
--ab-loaded: 777;
|
|
796
|
+
}:root {
|
|
1654
797
|
--ITableHeader__color: var(--ab-color-text-on-primary);
|
|
1655
798
|
--ITableHeaderCell__background: var(--ab-color-primary);
|
|
1656
799
|
--ITableHeader__background: var(--ITableHeaderCell__background);
|
|
1657
800
|
--ITableRow__color: var(--ab-color-text-on-primary);
|
|
1658
801
|
--ITable__background: var(--ab-color-primarylight);
|
|
1659
802
|
--ITableRow__background: var(--ab-color-defaultbackground);
|
|
1660
|
-
--ITableRow--odd__background: var(--ab-color-primarylight);
|
|
1661
|
-
.ab-style__list-group-item:nth-child(2n
|
|
1662
|
-
background: var(--ab-color-primarylight);
|
|
1663
|
-
.ab-Grid .ag-header-cell input[type=
|
|
1664
|
-
margin-inline-start: 0px;
|
|
1665
|
-
.ab-Grid.ab-Grid--indicate-filtered-columns .ag-header-cell-filtered {
|
|
803
|
+
--ITableRow--odd__background: var(--ab-color-primarylight);
|
|
804
|
+
}.ab-style__list-group-item:nth-child(2n+1) {
|
|
805
|
+
background: var(--ab-color-primarylight);
|
|
806
|
+
}.ab-Grid .ag-header-cell input[type=date i]::-webkit-calendar-picker-indicator {
|
|
807
|
+
margin-inline-start: 0px;
|
|
808
|
+
}.ab-Grid.ab-Grid--indicate-filtered-columns .ag-header-cell-filtered {
|
|
1666
809
|
font-weight: bolder;
|
|
1667
|
-
background: var(--ab-gridheader--filtered__background);
|
|
1668
|
-
:root {
|
|
810
|
+
background: var(--ab-gridheader--filtered__background);
|
|
811
|
+
}:root {
|
|
1669
812
|
--ab-cmp-checkbox__border-color: var(--ab-color-inputborder);
|
|
1670
813
|
--ab-cmp-checkbox__background: var(--ab-cmp-input__background);
|
|
1671
814
|
--ab-cmp-checkbox--checked__background: var(--ab-color-focus);
|
|
1672
815
|
--ab-cmp-checkbox--check-size: 16px;
|
|
1673
816
|
--ab-cmp-checkbox--check__color: white;
|
|
1674
817
|
--ab-cmp-checkbox--check-indeterminate__color: var(--ab-color-focus);
|
|
1675
|
-
--ab-cmp-checkbox--check-indeterminate-radius: 2px;
|
|
1676
|
-
.ab-CheckBox--variant-agGrid {
|
|
818
|
+
--ab-cmp-checkbox--check-indeterminate-radius: 2px;
|
|
819
|
+
}.ab-CheckBox--variant-agGrid {
|
|
1677
820
|
--ab-cmp-checkbox--check__color: var(
|
|
1678
821
|
--ag-checkbox-checked-color,
|
|
1679
822
|
var(--ag-balham-active-color, #0091ea)
|
|
1680
823
|
);
|
|
1681
824
|
--ab-cmp-checkbox--checked__background: var(--ag-background-color);
|
|
1682
825
|
--ab-cmp-checkbox__border-color: var(--ab-cmp-checkbox--check__color);
|
|
1683
|
-
--ab-cmp-checkbox--check-indeterminate__color: var(--ab-cmp-checkbox__border-color);
|
|
1684
|
-
.ab-CheckBox--variant-agGrid.ab-CheckBox--indeterminate {
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
.ab-CheckBox--variant-agGrid.ab-CheckBox--unchecked {
|
|
1690
|
-
|
|
1691
|
-
:root {
|
|
826
|
+
--ab-cmp-checkbox--check-indeterminate__color: var(--ab-cmp-checkbox__border-color);
|
|
827
|
+
}.ab-CheckBox--variant-agGrid.ab-CheckBox--indeterminate {
|
|
828
|
+
--ab-cmp-checkbox--check__color: var(
|
|
829
|
+
--ag-checkbox-checked-color,
|
|
830
|
+
var(--ag-balham-active-color, #0091ea)
|
|
831
|
+
);
|
|
832
|
+
}.ab-CheckBox--variant-agGrid.ab-CheckBox--unchecked {
|
|
833
|
+
--ab-cmp-checkbox__border-color: var(--ag-checkbox-unchecked-color);
|
|
834
|
+
}:root {
|
|
1692
835
|
--ab-cmp-dialog__background: var(--ab-color-defaultbackground, white);
|
|
1693
836
|
--ab-cmp-dialog__color: var(--ab-color-text-on-defaultbackground, white);
|
|
1694
837
|
--ab-cmp-dialog-close-button__color: var(--ab-color-accentlight);
|
|
1695
838
|
--ab-cmp-dialog__border-radius: var(--ab__border-radius);
|
|
1696
|
-
--ab-cmp-dialog__min-height: 60vh;
|
|
1697
|
-
:root {
|
|
839
|
+
--ab-cmp-dialog__min-height: 60vh;
|
|
840
|
+
}:root {
|
|
1698
841
|
--ab-cmp-dropdown__color: var(--ab-color-inputcolor);
|
|
1699
842
|
--ab-cmp-dropdown--empty__color: var(--ab-color-text-on-defaultbackground);
|
|
1700
843
|
--ab-cmp-dropdown__border: 1px solid var(--ab-color-inputborder);
|
|
@@ -1702,8 +845,8 @@
|
|
|
1702
845
|
--ab-cmp-dropdown__fill: var(--ab-color-text-on-defaultbackground);
|
|
1703
846
|
--ab-cmp-dropdown__font-size: var(--ab-font-size-2);
|
|
1704
847
|
--ab-cmp-dropdown__font-family: var(--ab__font-family);
|
|
1705
|
-
--ab-cmp-dropdown__padding: var(--ab-space-2);
|
|
1706
|
-
:root {
|
|
848
|
+
--ab-cmp-dropdown__padding: var(--ab-space-2);
|
|
849
|
+
}:root {
|
|
1707
850
|
--ab-cmp-dropdownbutton-list__border: none;
|
|
1708
851
|
--ab-cmp-dropdownbutton-list__background: var(--ab-color-primarylight);
|
|
1709
852
|
--ab-cmp-dropdownbutton-list-item__padding: var(--ab-space-2);
|
|
@@ -1714,27 +857,27 @@
|
|
|
1714
857
|
--ab-cmp-dropdownbutton-list__border-radius: var(--ab__border-radius);
|
|
1715
858
|
--ab-cmp-dropdownbutton-list__box-shadow: 4px 5px 11px -5px rgba(0, 0, 0, 0.2),
|
|
1716
859
|
-4px 6px 5px 0 rgba(0, 0, 0, 0.14), 5px 3px 5px 0 rgba(0, 0, 0, 0.12);
|
|
1717
|
-
--ab-cmp-dropdownbutton-list-separator__border: 1px solid var(--ab-color-primarydark);
|
|
1718
|
-
:root {
|
|
860
|
+
--ab-cmp-dropdownbutton-list-separator__border: 1px solid var(--ab-color-primarydark);
|
|
861
|
+
}:root {
|
|
1719
862
|
--ab-cmp-error-box__padding: var(--ab-space-3);
|
|
1720
863
|
--ab-cmp-error-box__border-radius: var(--ab__border-radius);
|
|
1721
864
|
--ab-cmp-error-box__color: var(--ab-color-text-on-error);
|
|
1722
|
-
--ab-cmp-error-box__background: var(--ab-color-error);
|
|
1723
|
-
:root {
|
|
865
|
+
--ab-cmp-error-box__background: var(--ab-color-error);
|
|
866
|
+
}:root {
|
|
1724
867
|
--ab-cmp-field-wrap__background: var(--ab-color-defaultbackground);
|
|
1725
868
|
--ab-cmp-field-wrap__fill: var(--ab-color-inputcolor);
|
|
1726
|
-
--ab-cmp-field-wrap__border-radius: var(--ab-cmp-input__border-radius);
|
|
1727
|
-
:root {
|
|
869
|
+
--ab-cmp-field-wrap__border-radius: var(--ab-cmp-input__border-radius);
|
|
870
|
+
}:root {
|
|
1728
871
|
--ab-cmp-help-block__padding: var(--ab-space-2);
|
|
1729
872
|
--ab-cmp-help-block__border-radius: var(--ab__border-radius);
|
|
1730
873
|
--ab-cmp-help-block__color: var(--ab-color-text-on-primary);
|
|
1731
|
-
--ab-cmp-help-block__background: var(--ab-color-primarylight);
|
|
1732
|
-
:root {
|
|
874
|
+
--ab-cmp-help-block__background: var(--ab-color-primarylight);
|
|
875
|
+
}:root {
|
|
1733
876
|
--ab-cmp-code-block__padding: var(--ab-space-1);
|
|
1734
877
|
--ab-cmp-code-block__border-radius: var(--ab__border-radius);
|
|
1735
878
|
--ab-cmp-code-block__color: var(--ab-color-text-on-primary);
|
|
1736
|
-
--ab-cmp-code-block__background: var(--ab-color-primary);
|
|
1737
|
-
:root {
|
|
879
|
+
--ab-cmp-code-block__background: var(--ab-color-primary);
|
|
880
|
+
}:root {
|
|
1738
881
|
--ab-cmp-input__padding: var(--ab-space-2);
|
|
1739
882
|
--ab-cmp-input__color: var(--ab-color-inputcolor);
|
|
1740
883
|
--ab-cmp-input__background: var(--ab-color-defaultbackground);
|
|
@@ -1744,10 +887,10 @@
|
|
|
1744
887
|
--ab-cmp-input__font-size: var(--ab-font-size-2);
|
|
1745
888
|
--ab-cmp-input--placeholder__color: var(--ab-color-text-on-defaultbackground);
|
|
1746
889
|
--ab-cmp-input__font-family: var(--ab__font-family);
|
|
1747
|
-
--ab-cmp-input--placeholder__opacity: 0.6;
|
|
1748
|
-
:root {
|
|
1749
|
-
--ab-cmp-listgroup: 1;
|
|
1750
|
-
.ab-ListGroupItem {
|
|
890
|
+
--ab-cmp-input--placeholder__opacity: 0.6;
|
|
891
|
+
}:root {
|
|
892
|
+
--ab-cmp-listgroup: 1;
|
|
893
|
+
}.ab-ListGroupItem {
|
|
1751
894
|
width: var(--ab-cmp-listgroupitem__width);
|
|
1752
895
|
vertical-align: middle;
|
|
1753
896
|
text-align: start;
|
|
@@ -1758,24 +901,24 @@
|
|
|
1758
901
|
align-items: center;
|
|
1759
902
|
background: var(--ab-cmp-listgroupitem__background);
|
|
1760
903
|
color: var(--ab-cmp-listgroupitem__color);
|
|
1761
|
-
border-radius: var(--ab-cmp-listgroupitem__border-radius);
|
|
1762
|
-
.ab-ListGroupItem:nth-child(2n
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
.ab-ListGroupItem.ab-ListGroupItem--no-zebra {
|
|
1766
|
-
|
|
1767
|
-
.ab-ListGroupItem--active.ab-ListGroupItem {
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
.ab-ListGroupItem:focus {
|
|
1771
|
-
|
|
1772
|
-
:root {
|
|
1773
|
-
--ab-cmp-modal-backdrop__background: rgba(0, 0, 0, 0.44);
|
|
1774
|
-
:root {
|
|
904
|
+
border-radius: var(--ab-cmp-listgroupitem__border-radius);
|
|
905
|
+
}.ab-ListGroupItem:nth-child(2n+1) {
|
|
906
|
+
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
907
|
+
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
908
|
+
}.ab-ListGroupItem.ab-ListGroupItem--no-zebra {
|
|
909
|
+
background: var(--ab-color-defaultbackground);
|
|
910
|
+
}.ab-ListGroupItem--active.ab-ListGroupItem {
|
|
911
|
+
background: var(--ab-cmp-listgroupitem--active__background);
|
|
912
|
+
color: var(--ab-cmp-listgroupitem--active__color);
|
|
913
|
+
}.ab-ListGroupItem:focus {
|
|
914
|
+
z-index: 1;
|
|
915
|
+
}:root {
|
|
916
|
+
--ab-cmp-modal-backdrop__background: rgba(0, 0, 0, 0.44);
|
|
917
|
+
}:root {
|
|
1775
918
|
--ab-cmp-tabs__padding: var(--ab-space-2);
|
|
1776
919
|
--ab-cmp-tabs-strip__background: var(--ab-color-defaultbackground);
|
|
1777
|
-
--ab-cmp-tabs-active__background: var(--ab-color-primarylight);
|
|
1778
|
-
:root {
|
|
920
|
+
--ab-cmp-tabs-active__background: var(--ab-color-primarylight);
|
|
921
|
+
}:root {
|
|
1779
922
|
--ab-cmp-panel_header__background: var(--ab-color-primary);
|
|
1780
923
|
--ab-cmp-panel_header__font-size: var(--ab-font-size-3);
|
|
1781
924
|
--ab-cmp-panel__font-size: var(--ab-font-size-3);
|
|
@@ -1793,8 +936,8 @@
|
|
|
1793
936
|
--ab-cmp-panel_header--variant-modern__background: var(--ab-color-primary);
|
|
1794
937
|
--ab-cmp-panel_header--variant-minimal__background: var(--ab-color-defaultbackground);
|
|
1795
938
|
--ab-cmp-panel_header--variant-modern__color: var(--ab-color-text-on-primary);
|
|
1796
|
-
--ab-cmp-panel_body--variant-modern__background: var(--ab-color-primarylight);
|
|
1797
|
-
:root {
|
|
939
|
+
--ab-cmp-panel_body--variant-modern__background: var(--ab-color-primarylight);
|
|
940
|
+
}:root {
|
|
1798
941
|
--ab-cmp-simple-button__padding: var(--ab-space-1) var(--ab-space-1);
|
|
1799
942
|
--ab-cmp-simple-button__border-radius: var(--ab__border-radius);
|
|
1800
943
|
--ab-cmp-simple-button--outlined__background: var(--ab-color-defaultbackground);
|
|
@@ -1802,8 +945,8 @@
|
|
|
1802
945
|
--ab-cmp-simple-button__font-size: var(--ab-font-size-2);
|
|
1803
946
|
--ab-cmp-simple-button__font-family: var(--ab__font-family);
|
|
1804
947
|
--ab-cmp-simple-button__height: 20px;
|
|
1805
|
-
--ab-cmp-simple-button__width: 20px;
|
|
1806
|
-
:root {
|
|
948
|
+
--ab-cmp-simple-button__width: 20px;
|
|
949
|
+
}:root {
|
|
1807
950
|
--ab-cmp-textarea__padding: var(--ab-space-1) var(--ab-space-2);
|
|
1808
951
|
--ab-cmp-textarea__border-radius: var(--ab__border-radius);
|
|
1809
952
|
--ab-cmp-textarea__border: 1px solid var(--ab-color-inputborder);
|
|
@@ -1811,14 +954,14 @@
|
|
|
1811
954
|
--ab-cmp-textarea__font-size: var(--ab-font-size-3);
|
|
1812
955
|
--ab-cmp-textarea__font-family: var(--ab__font-family);
|
|
1813
956
|
--ab-cmp-textarea__background: var(--ab-cmp-input__background);
|
|
1814
|
-
--ab-cmp-textarea--disabled__background: var(--ab-cmp-input--disabled__background);
|
|
1815
|
-
:root {
|
|
957
|
+
--ab-cmp-textarea--disabled__background: var(--ab-cmp-input--disabled__background);
|
|
958
|
+
}:root {
|
|
1816
959
|
--ab-cmp-tooltip__opacity: 0.96;
|
|
1817
960
|
--ab-cmp-tooltip__background: var(--ab-color-primary);
|
|
1818
961
|
--ab-cmp-tooltip__color: var(--ab-color-text-on-primary);
|
|
1819
962
|
--ab-cmp-tooltip__border: solid 1px var(--ab-color-inputborder);
|
|
1820
|
-
--ab-cmp-tooltip__font-size: var(--ab-font-size-2);
|
|
1821
|
-
:root {
|
|
963
|
+
--ab-cmp-tooltip__font-size: var(--ab-font-size-2);
|
|
964
|
+
}:root {
|
|
1822
965
|
--ab-cmp-file-droppable__padding: var(--ab-space-5);
|
|
1823
966
|
--ab-cmp-file-droppable__margin: var(--ab-space-1);
|
|
1824
967
|
--ab-cmp-file-droppable__background: var(--ab-color-primary);
|
|
@@ -1829,8 +972,8 @@
|
|
|
1829
972
|
--ab-cmp-file-droppable--drag-over__color: var(--ab-color-text-on-secondary);
|
|
1830
973
|
--ab-cmp-file-droppable--drag-over__outline-offset: -20px;
|
|
1831
974
|
--ab-cmp-file-droppable--drag-over__outline: 2px dashed
|
|
1832
|
-
var(--ab-cmp-file-droppable--drag-over__color);
|
|
1833
|
-
:root {
|
|
975
|
+
var(--ab-cmp-file-droppable--drag-over__color);
|
|
976
|
+
}:root {
|
|
1834
977
|
--ab-dashboard__background: var(--ab-color-primary);
|
|
1835
978
|
--ab-dashboard__font-family: var(--ab__font-family);
|
|
1836
979
|
--ab-dashboard-wrap: nowrap;
|
|
@@ -1841,10 +984,10 @@
|
|
|
1841
984
|
--ab-dashboard-header__background: var(--ab-color-secondary);
|
|
1842
985
|
--ab-dashboard-header__color: var(--ab-color-text-on-secondary);
|
|
1843
986
|
--ab-dashboard-tab-drop-target__background: skyblue;
|
|
1844
|
-
--ab-dashboard-toolbar-drag__background: lightgreen;
|
|
1845
|
-
:root {
|
|
1846
|
-
--ab-cmp-listgroup: 1;
|
|
1847
|
-
:root {
|
|
987
|
+
--ab-dashboard-toolbar-drag__background: lightgreen;
|
|
988
|
+
}:root {
|
|
989
|
+
--ab-cmp-listgroup: 1;
|
|
990
|
+
}:root {
|
|
1848
991
|
--ab-cmp-datepicker__background: var(--ab-color-defaultbackground);
|
|
1849
992
|
--ab-cmp-datepicker__selected-color: var(--ab-color-primarydark);
|
|
1850
993
|
--ab-cmp-datepicker__selected-text-color: var(--ab-color-text-on-primarydark);
|
|
@@ -1854,14 +997,14 @@
|
|
|
1854
997
|
--ab-cmp-datepicker__border: 1px solid var(--ab-color-primarydark);
|
|
1855
998
|
--ab-cmp-datepicker__font-size: var(--ab-font-size-2);
|
|
1856
999
|
--ab-cmp-datepicker__font-family: var(--ab__font-family);
|
|
1857
|
-
--ab-cmp-datepicker__cell-size: 30px;
|
|
1858
|
-
:root {
|
|
1000
|
+
--ab-cmp-datepicker__cell-size: 30px;
|
|
1001
|
+
}:root {
|
|
1859
1002
|
--ab-cmp-toggle-button__background: #ccc;
|
|
1860
1003
|
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
1861
1004
|
--ab-cmp-toggle-button__font-size: var(--ab-font-size-1);
|
|
1862
1005
|
--ab-cmp-toggle-button__color: var(--ab-color-text-on-primary);
|
|
1863
|
-
--ab-cmp-toggle-button--checked__color: var(--ab-color-accentlight);
|
|
1864
|
-
:root {
|
|
1006
|
+
--ab-cmp-toggle-button--checked__color: var(--ab-color-accentlight);
|
|
1007
|
+
}:root {
|
|
1865
1008
|
--ab-cmp-module-module-selector__tab-item__border: 1px solid var(--ab-color-primarydark);
|
|
1866
1009
|
--ab-cmp-module-module-selector__tab-item__border-radius: var(--ab__border-radius);
|
|
1867
1010
|
--ab-cmp-module-module-selector__tab-item__width: 160px;
|
|
@@ -1869,12 +1012,12 @@
|
|
|
1869
1012
|
--ab-cmp-module-module-selector__toolbar-item__border: 1px solid var(--ab-color-primary);
|
|
1870
1013
|
--ab-cmp-module-selector__unused-panel__border: 1px solid var(--ab-color-primarydark);
|
|
1871
1014
|
--ab-cmp-module-selector__unused-panel__border-radius: var(--ab__border-radius);
|
|
1872
|
-
--ab-cmp-module-selector__unused-panel__background: var(--ab-color-defaultbackground);
|
|
1873
|
-
:root {
|
|
1015
|
+
--ab-cmp-module-selector__unused-panel__background: var(--ab-color-defaultbackground);
|
|
1016
|
+
}:root {
|
|
1874
1017
|
--ab-cmp-loader__background: var(--ab-color-primarydark);
|
|
1875
1018
|
--ab-cmp-loader__border: var(--ab-color-text-on-primary);
|
|
1876
|
-
--ab-cmp-loader__font-size: var(--ab-font-size-2);
|
|
1877
|
-
:root {
|
|
1019
|
+
--ab-cmp-loader__font-size: var(--ab-font-size-2);
|
|
1020
|
+
}:root {
|
|
1878
1021
|
--ab-cmp-progress-indicator__delay: 1s;
|
|
1879
1022
|
--ab-cmp-progress-indicator__z-index: 9999;
|
|
1880
1023
|
--ab-cmp-progress-indicator__font-size: var(--ab-font-size-4);
|
|
@@ -1882,25 +1025,26 @@
|
|
|
1882
1025
|
--ab-cmp-progress-indicator__font-family: var(--ab__font-family);
|
|
1883
1026
|
--ab-cmp-progress-indicator__padding: var(--ab-space-3);
|
|
1884
1027
|
--ab-cmp-progress-indicator__background: var(--ab-color-primary);
|
|
1885
|
-
--ab-cmp-progress-indicator__color: var(--ab-color-text-on-primary);
|
|
1886
|
-
:root {
|
|
1028
|
+
--ab-cmp-progress-indicator__color: var(--ab-color-text-on-primary);
|
|
1029
|
+
}:root {
|
|
1887
1030
|
--ab-cmp-icon__fill: var(--ab-icon-fill);
|
|
1888
1031
|
--ab-cmp-icon__height: 17px;
|
|
1889
|
-
--ab-cmp-icon__width: 17px;
|
|
1890
|
-
:root {
|
|
1032
|
+
--ab-cmp-icon__width: 17px;
|
|
1033
|
+
}:root {
|
|
1891
1034
|
--ab-cmp-listgroupitem__padding: var(--ab-space-2);
|
|
1892
|
-
--ab-cmp-listgroupitem__margin: 0;
|
|
1893
|
-
:
|
|
1035
|
+
--ab-cmp-listgroupitem__margin: 0;
|
|
1036
|
+
--ab-cmp-listgroupitem-cell__font-size: var(--ab-font-size-3);
|
|
1037
|
+
}:root {
|
|
1894
1038
|
--ab-cmp-wizard__padding: var(--ab-space-5);
|
|
1895
1039
|
--ab-cmp-wizard__margin: var(--ab-space-1);
|
|
1896
1040
|
--ab-cmp-wizard__background: var(--ab-color-primary);
|
|
1897
|
-
--ab-cmp-wizard__color: var(--ab-color-text-on-primary);
|
|
1898
|
-
:root {
|
|
1041
|
+
--ab-cmp-wizard__color: var(--ab-color-text-on-primary);
|
|
1042
|
+
}:root {
|
|
1899
1043
|
--ab-cmp-button-border-radius: 0px;
|
|
1900
1044
|
--ab-cmp-button-disabled-opacity: 0.5;
|
|
1901
1045
|
--ab-cmp-button-background: var(--ab-color-primary);
|
|
1902
|
-
--ab-cmp-button-disabled-background: var(--ab-color-primarydark);
|
|
1903
|
-
:root {
|
|
1046
|
+
--ab-cmp-button-disabled-background: var(--ab-color-primarydark);
|
|
1047
|
+
}:root {
|
|
1904
1048
|
--ab-cmp-dashboardpanel_body__background: var(--ab-color-primarylight);
|
|
1905
1049
|
--ab-cmp-dashboardpanel_header__background: var(--ab-color-primary);
|
|
1906
1050
|
--ab-cmp-dashboardpanel_header__fill: currentColor;
|
|
@@ -1909,8 +1053,8 @@
|
|
|
1909
1053
|
--ab-cmp-dashboardpanel__color: currentColor;
|
|
1910
1054
|
--ab-cmp-dashboardpanel_header__padding: var(--ab-space-0);
|
|
1911
1055
|
--ab-cmp-dashboardpanel_body__padding: var(--ab-space-1);
|
|
1912
|
-
--ab-cmp-dashboardpanel__border: none;
|
|
1913
|
-
:root {
|
|
1056
|
+
--ab-cmp-dashboardpanel__border: none;
|
|
1057
|
+
}:root {
|
|
1914
1058
|
--ab-cmp-toolpanelpanel__color: var(--ab-cmp-dashboardpanel__color);
|
|
1915
1059
|
--ab-cmp-toolpanelpanel__fill: var(--ab-cmp-dashboardpanel__fill);
|
|
1916
1060
|
--ab-cmp-toolpanelpanel__border: var(--ab-cmp-dashboardpanel__border);
|
|
@@ -1919,40 +1063,40 @@
|
|
|
1919
1063
|
--ab-cmp-toolpanelpanel_header__color: var(--ab-cmp-dashboardpanel_header__color);
|
|
1920
1064
|
--ab-cmp-toolpanelpanel_header__padding: var(--ab-cmp-dashboardpanel_header__padding);
|
|
1921
1065
|
--ab-cmp-toolpanelpanel_body__background: var(--ab-cmp-dashboardpanel_body__background);
|
|
1922
|
-
--ab-cmp-toolpanelpanel_body__padding: var(--ab-cmp-dashboardpanel_body__padding);
|
|
1923
|
-
:root {
|
|
1066
|
+
--ab-cmp-toolpanelpanel_body__padding: var(--ab-cmp-dashboardpanel_body__padding);
|
|
1067
|
+
}:root {
|
|
1924
1068
|
--ab-cmp-popover__border-radius: var(--ab__border-radius);
|
|
1925
1069
|
--ab-cmp-popover__background: var(--ab-color-defaultbackground);
|
|
1926
1070
|
--ab-cmp-popover__color: var(--ab-color-text-on-defaultbackground);
|
|
1927
1071
|
--ab-cmp-popover__box-shadow: var(--ab-cmp-dropdownbutton-list__box-shadow);
|
|
1928
|
-
--ab-cmp-popover__border: 1px solid var(--ab-color-primarydark);
|
|
1929
|
-
:root {
|
|
1072
|
+
--ab-cmp-popover__border: 1px solid var(--ab-color-primarydark);
|
|
1073
|
+
}:root {
|
|
1930
1074
|
--ab-cmp-one-page-wizard__background: var(--ab-color-primary);
|
|
1931
1075
|
--ab-cmp-one-page-wizard-content__background: var(--ab-color-defaultbackground);
|
|
1932
1076
|
--ab-cmp-one-page-wizard-section-title__color: var(--ab-color-text-on-secondary);
|
|
1933
|
-
--ab-cmp-one-page-wizard-selected-title__background: var(--ab-color-secondary);
|
|
1934
|
-
.ab-OnePageWizard__section {
|
|
1077
|
+
--ab-cmp-one-page-wizard-selected-title__background: var(--ab-color-secondary);
|
|
1078
|
+
}.ab-OnePageWizard__section {
|
|
1935
1079
|
background: var(--ab-cmp-one-page-wizard-content__background);
|
|
1936
1080
|
overflow: auto;
|
|
1937
|
-
border-radius: var(--ab__border-radius);
|
|
1938
|
-
.ab-OnePageWizard__section-title-container {
|
|
1939
|
-
background: var(--ab-cmp-one-page-wizard__background);
|
|
1940
|
-
.ab-OnePageWizard__section-container {
|
|
1081
|
+
border-radius: var(--ab__border-radius);
|
|
1082
|
+
}.ab-OnePageWizard__section-title-container {
|
|
1083
|
+
background: var(--ab-cmp-one-page-wizard__background);
|
|
1084
|
+
}.ab-OnePageWizard__section-container {
|
|
1941
1085
|
background: var(--ab-cmp-one-page-wizard__background);
|
|
1942
1086
|
min-height: 100%;
|
|
1943
|
-
overflow: hidden;
|
|
1944
|
-
.ab-OnePageWizard__footer {
|
|
1945
|
-
background: var(--ab-cmp-one-page-wizard__background);
|
|
1946
|
-
:root {
|
|
1087
|
+
overflow: hidden;
|
|
1088
|
+
}.ab-OnePageWizard__footer {
|
|
1089
|
+
background: var(--ab-cmp-one-page-wizard__background);
|
|
1090
|
+
}:root {
|
|
1947
1091
|
--ab-cmp-toolpanel__width: 200px;
|
|
1948
1092
|
--ab-cmp-toolpanel-header__background: var(--ab-dashboard-header__background);
|
|
1949
1093
|
--ab-cmp-toolpanel-header__color: var(--ab-dashboard-header__color);
|
|
1950
1094
|
--ab-cmp-toolpanel-header__grid-gap: 3px;
|
|
1951
1095
|
--ab-cmp-toolpanel__color: var(--ab-dashboard__color);
|
|
1952
|
-
--ab-cmp-toolpanel__font-family: var(--ab__font-family);
|
|
1953
|
-
:root {
|
|
1954
|
-
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4);
|
|
1955
|
-
:root {
|
|
1096
|
+
--ab-cmp-toolpanel__font-family: var(--ab__font-family);
|
|
1097
|
+
}:root {
|
|
1098
|
+
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4);
|
|
1099
|
+
}:root {
|
|
1956
1100
|
--ab-cmp-adaptable-popup__background: var(--ab-color-primarylight);
|
|
1957
1101
|
--ab-cmp-adaptable-popup--settings__padding: 20px;
|
|
1958
1102
|
--ab-cmp-adaptable-popup--settings__height: 90vh;
|
|
@@ -1988,10 +1132,10 @@
|
|
|
1988
1132
|
--ab-cmp-adaptable-popup-panel__margin-bottom: var(--ab-space-3);
|
|
1989
1133
|
--ab-cmp-adaptable-popup-panel__margin-top: var(--ab-space-2);
|
|
1990
1134
|
--ab-cmp-adaptable-popup-panel-title__font-size: var(--ab-font-size-5);
|
|
1991
|
-
--ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2);
|
|
1992
|
-
:root {
|
|
1993
|
-
--ab-cmp-adaptable-window-popup__box-shadow: var(--ab-cmp-adaptable-popup__box-shadow);
|
|
1994
|
-
:root {
|
|
1135
|
+
--ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2);
|
|
1136
|
+
}:root {
|
|
1137
|
+
--ab-cmp-adaptable-window-popup__box-shadow: var(--ab-cmp-adaptable-popup__box-shadow);
|
|
1138
|
+
}:root {
|
|
1995
1139
|
--ab-cmp-adaptable-object-list-tag__margin-right: var(--ab-space-2);
|
|
1996
1140
|
--ab-cmp-adaptable-object-list-tag__margin-top: var(--ab-space-2);
|
|
1997
1141
|
--ab-cmp-adaptable-object-list-item__background-color: var(--ab-color-defaultbackground);
|
|
@@ -2011,25 +1155,30 @@
|
|
|
2011
1155
|
--ab-cmp-adaptable-object-compact-list-item-name__width: 95px;
|
|
2012
1156
|
--ab-cmp-adaptable-object-compact-list-item-name__padding: var(--ab-space-1);
|
|
2013
1157
|
--ab-cmp-adaptable-object-compact-list-item-name__margin-right: var(--ab-space-1);
|
|
2014
|
-
--ab-cmp-adaptable-object-compact-list-item-name__font-size: var(--ab-font-size-4);
|
|
2015
|
-
:root {
|
|
1158
|
+
--ab-cmp-adaptable-object-compact-list-item-name__font-size: var(--ab-font-size-4);
|
|
1159
|
+
}:root {
|
|
2016
1160
|
--ab-cmp-adaptable-options__background-color: var(--ab-color-defaultbackground);
|
|
2017
1161
|
--ab-cmp-grid-options__background-color: var(--ab-color-defaultbackground);
|
|
2018
|
-
--ab-cmp-grid-summary__background-color: var(--ab-color-defaultbackground);
|
|
2019
|
-
:root {
|
|
2020
|
-
--ab-cmp-system-status-list__background-color: var(--ab-color-defaultbackground);
|
|
2021
|
-
:
|
|
2022
|
-
--ab-cmp-
|
|
2023
|
-
:
|
|
1162
|
+
--ab-cmp-grid-summary__background-color: var(--ab-color-defaultbackground);
|
|
1163
|
+
}:root {
|
|
1164
|
+
--ab-cmp-system-status-list__background-color: var(--ab-color-defaultbackground);
|
|
1165
|
+
--ab-cmp-system-status-list-text__border-radius: var(--ab__border-radius);
|
|
1166
|
+
--ab-cmp-system-status-list-text__font-weight: bold;
|
|
1167
|
+
--ab-cmp-system-status-list-text__font-size: var(--ab-font-size-2);
|
|
1168
|
+
--ab-cmp-system-status-list-text__color: var(--ab-color-text-on-secondary);
|
|
1169
|
+
--ab-cmp-system-status-list-text__padding: var(--ab-space-2);
|
|
1170
|
+
}:root {
|
|
1171
|
+
--ab-cmp-dashboard-module-selector-background: var(--ab-color-defaultbackground);
|
|
1172
|
+
}:root {
|
|
2024
1173
|
--ab-cmp-adaptable-statusbar-sub-panel__padding: var(--ab-space-1) var(--ab-space-2);
|
|
2025
1174
|
--ab-cmp-adaptable-statusbar-sub-panel-icon__background-color-hover: var(--ab-color-primary);
|
|
2026
1175
|
--ab-cmp-adaptable-statusbar__color: var(--ab-color-text-on-primary);
|
|
2027
1176
|
--ab-cmp-adaptable-statusbar__font-weight: 400;
|
|
2028
|
-
--ab-cmp-adaptable-statusbar__border: 1px solid var(--ab-color-primary);
|
|
2029
|
-
:root {
|
|
1177
|
+
--ab-cmp-adaptable-statusbar__border: 1px solid var(--ab-color-primary);
|
|
1178
|
+
}:root {
|
|
2030
1179
|
--ab-cmp-adaptable-shared-entity-shared-object__border: 2px solid var(--ab-color-primary);
|
|
2031
|
-
--ab-cmp-adaptable-shared-entity-shared-object__nesting-color: var(--ab-color-primary);
|
|
2032
|
-
:root {
|
|
1180
|
+
--ab-cmp-adaptable-shared-entity-shared-object__nesting-color: var(--ab-color-primary);
|
|
1181
|
+
}:root {
|
|
2033
1182
|
--ab-cmp-adaptable-layout-wizard-column-row-title__border-radious: var(--ab__border-radius);
|
|
2034
1183
|
--ab-cmp-adaptable-layout-wizard-column-row-title__background: var(--ab-color-defaultbackground);
|
|
2035
1184
|
--ab-cmp-adaptable-layout-wizard-column-row-title__color: var(
|
|
@@ -2042,97 +1191,115 @@
|
|
|
2042
1191
|
--ab__border-radius
|
|
2043
1192
|
);
|
|
2044
1193
|
--ab-cmp-adaptable-layout-wizard-column-input__max-width: 200px;
|
|
2045
|
-
--ab-cmp-adaptable-layout-wizard-column-input__width: 100%;
|
|
2046
|
-
.ab-PermitedValuesSelector__PopupContent {
|
|
1194
|
+
--ab-cmp-adaptable-layout-wizard-column-input__width: 100%;
|
|
1195
|
+
}.ab-PermitedValuesSelector__PopupContent {
|
|
2047
1196
|
z-index: 1000;
|
|
2048
1197
|
font-size: var(--ab-cmp-adaptable-permitted-values-selector__font-size);
|
|
2049
1198
|
border: 1px solid var(--ab-cmp-adaptable-permitted-values-selector__border);
|
|
2050
1199
|
background-color: var(--ab-cmp-adaptable-permitted-values-selector__background-color);
|
|
2051
|
-
padding: var(--ab-cmp-adaptable-permitted-values-selector__padding);
|
|
2052
|
-
|
|
1200
|
+
padding: var(--ab-cmp-adaptable-permitted-values-selector__padding);
|
|
1201
|
+
}:root {
|
|
1202
|
+
--ab-cmp-expression-editor-input__background: var(--ab-color-primarylight);
|
|
1203
|
+
--ab-cmp-expression-editor-input__border-radius: var(--ab__border-radius);
|
|
1204
|
+
--ab-cmp-expression-editor-input-dropdown-functions-list__font-size: var(--ab-font-size-2);
|
|
1205
|
+
--ab-cmp-expression-editor-input-dropdown-functions-list__border: 1px solid
|
|
1206
|
+
var(--ab-color-primarydark);
|
|
1207
|
+
--ab-cmp-expression-editor-input-dropdown-functions-list__border-radius: var(--ab__border-radius);
|
|
1208
|
+
--ab-cmp-expression-editor-input__font-family: monospace;
|
|
1209
|
+
--ab-cmp-expression-editor-feedback__border-radius: var(--ab__border-radius);
|
|
1210
|
+
}:root {
|
|
1211
|
+
--ab-cmp-quickfilter__font-size: var(--ab-font-size-1);
|
|
1212
|
+
--ab-cmp-quickfilter__border: 1px solid var(--ab-color-primarydark);
|
|
1213
|
+
--ab-cmp-quickfilter__background: var(--ab-color-defaultbackground);
|
|
1214
|
+
}.ab-Radio-input:focus + svg rect {
|
|
2053
1215
|
stroke: var(--ab-color-accent);
|
|
2054
|
-
stroke-width: 2;
|
|
2055
|
-
.ab-Radio-input:focus + svg {
|
|
2056
|
-
outline: 2px solid var(--ab-color-accent);
|
|
2057
|
-
.ab-Radio-input:checked + svg rect,
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
.ab-Radio-input:checked + svg polyline {
|
|
1216
|
+
stroke-width: 2;
|
|
1217
|
+
}.ab-Radio-input:focus + svg {
|
|
1218
|
+
outline: 2px solid var(--ab-color-accent);
|
|
1219
|
+
}.ab-Radio-input:checked + svg rect, .ab-Radio-input:checked + svg polyline {
|
|
1220
|
+
stroke: currentColor;
|
|
1221
|
+
}.ab-Radio-input:checked + svg polyline {
|
|
2061
1222
|
animation: abRadioCheckAnimation 0.5s ease forwards;
|
|
2062
1223
|
stroke-dasharray: 50;
|
|
2063
|
-
stroke-dashoffset: 50;
|
|
2064
|
-
.ab-Radio-input input:focus {
|
|
1224
|
+
stroke-dashoffset: 50;
|
|
1225
|
+
}.ab-Radio-input input:focus {
|
|
2065
1226
|
box-shadow: var(--ab-focus__box-shadow);
|
|
2066
|
-
outline: var(--ab-focus__outline);
|
|
2067
|
-
@keyframes abRadioCheckAnimation {
|
|
1227
|
+
outline: var(--ab-focus__outline);
|
|
1228
|
+
}@keyframes abRadioCheckAnimation {
|
|
2068
1229
|
100% {
|
|
2069
|
-
stroke-dashoffset: 0;
|
|
2070
|
-
|
|
2071
|
-
.ab-Table
|
|
2072
|
-
padding: var(--ab-space-2); }
|
|
1230
|
+
stroke-dashoffset: 0;
|
|
1231
|
+
}
|
|
1232
|
+
}.ab-Table td,
|
|
2073
1233
|
.ab-Table th {
|
|
2074
|
-
|
|
2075
|
-
.ab-Table
|
|
2076
|
-
border-bottom:
|
|
2077
|
-
.ab-
|
|
2078
|
-
|
|
1234
|
+
padding: var(--ab-space-2);
|
|
1235
|
+
}.ab-Table th {
|
|
1236
|
+
border-bottom: 2px solid var(--ab-color-primarydark);
|
|
1237
|
+
}.ab-Table tr:not(last-child) td {
|
|
1238
|
+
border-bottom: 1px solid var(--ab-color-primarylight);
|
|
1239
|
+
}.ab-CheckBox {
|
|
1240
|
+
display: inline-flex;
|
|
1241
|
+
flex-flow: row;
|
|
1242
|
+
align-items: center;
|
|
1243
|
+
cursor: pointer;
|
|
1244
|
+
position: relative;
|
|
1245
|
+
}.ab-CheckBox, .ab-CheckBox *,
|
|
2079
1246
|
.ab-CheckBox *:before,
|
|
2080
1247
|
.ab-CheckBox *:after {
|
|
2081
|
-
box-sizing: border-box;
|
|
2082
|
-
.ab-CheckBox--checked {
|
|
2083
|
-
--ab-cmp-checkbox__background: var(--ab-cmp-checkbox--checked__background);
|
|
2084
|
-
.ab-CheckBox--indeterminate {
|
|
2085
|
-
--ab-cmp-checkbox--check__color: var(--ab-cmp-checkbox--check-indeterminate__color);
|
|
2086
|
-
.ab-CheckBox:focus-within .ab-CheckBox__square,
|
|
1248
|
+
box-sizing: border-box;
|
|
1249
|
+
}.ab-CheckBox--checked {
|
|
1250
|
+
--ab-cmp-checkbox__background: var(--ab-cmp-checkbox--checked__background);
|
|
1251
|
+
}.ab-CheckBox--indeterminate {
|
|
1252
|
+
--ab-cmp-checkbox--check__color: var(--ab-cmp-checkbox--check-indeterminate__color);
|
|
1253
|
+
}.ab-CheckBox:focus-within .ab-CheckBox__square,
|
|
2087
1254
|
.ab-CheckBox:active .ab-CheckBox__square,
|
|
2088
1255
|
.ab-CheckBox input.ab-CheckBox-input:active + .ab-CheckBox__square,
|
|
2089
1256
|
.ab-CheckBox input.ab-CheckBox-input:focus + .ab-CheckBox__square {
|
|
2090
|
-
box-shadow: var(--ab-focus__box-shadow);
|
|
2091
|
-
.ab-CheckBox__square {
|
|
1257
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1258
|
+
}.ab-CheckBox__square {
|
|
2092
1259
|
border-radius: var(--ab__border-radius);
|
|
2093
1260
|
border-width: 1px;
|
|
2094
1261
|
border-style: solid;
|
|
2095
1262
|
border-color: var(--ab-cmp-checkbox__border-color);
|
|
2096
1263
|
background: var(--ab-cmp-checkbox__background);
|
|
2097
|
-
height: var(--ab-cmp-checkbox--check-size);
|
|
2098
|
-
width: var(--ab-cmp-checkbox--check-size);
|
|
1264
|
+
min-height: var(--ab-cmp-checkbox--check-size);
|
|
1265
|
+
min-width: var(--ab-cmp-checkbox--check-size);
|
|
2099
1266
|
line-height: 0;
|
|
2100
1267
|
font-size: 0;
|
|
2101
1268
|
position: relative;
|
|
2102
|
-
pointer-events: none;
|
|
2103
|
-
.ab-CheckBox__square:after {
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
.ab-CheckBox__square--unchecked::after {
|
|
2118
|
-
|
|
2119
|
-
.ab-CheckBox__square--indeterminate:after {
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
.ab-CheckBox--disabled {
|
|
2132
|
-
opacity: 0.5;
|
|
2133
|
-
.ab-CheckBox--readonly .ab-CheckBox__square {
|
|
2134
|
-
opacity: 0.5;
|
|
2135
|
-
.ab-CheckBox-input:not(.ag-checkbox-input) {
|
|
1269
|
+
pointer-events: none;
|
|
1270
|
+
}.ab-CheckBox__square:after {
|
|
1271
|
+
opacity: 1;
|
|
1272
|
+
transition-duration: 0.1s;
|
|
1273
|
+
transition-timing-function: ease-in;
|
|
1274
|
+
transition-property: opacity;
|
|
1275
|
+
content: "";
|
|
1276
|
+
display: block;
|
|
1277
|
+
margin: auto;
|
|
1278
|
+
width: calc((var(--ab-cmp-checkbox--check-size) - 4px) / 2);
|
|
1279
|
+
height: calc(var(--ab-cmp-checkbox--check-size) - 4px);
|
|
1280
|
+
border: solid var(--ab-cmp-checkbox--check__color);
|
|
1281
|
+
border-width: 0 2px 2px 0;
|
|
1282
|
+
transform: rotate(45deg);
|
|
1283
|
+
border-radius: 1px;
|
|
1284
|
+
}.ab-CheckBox__square--unchecked::after {
|
|
1285
|
+
opacity: 0;
|
|
1286
|
+
}.ab-CheckBox__square--indeterminate:after {
|
|
1287
|
+
transform: rotate(0deg);
|
|
1288
|
+
position: absolute;
|
|
1289
|
+
top: 2px;
|
|
1290
|
+
bottom: 2px;
|
|
1291
|
+
right: 2px;
|
|
1292
|
+
left: 2px;
|
|
1293
|
+
border: none;
|
|
1294
|
+
width: auto;
|
|
1295
|
+
height: auto;
|
|
1296
|
+
background: var(--ab-cmp-checkbox--check__color);
|
|
1297
|
+
border-radius: var(--ab-cmp-checkbox--check-indeterminate-radius);
|
|
1298
|
+
}.ab-CheckBox--disabled {
|
|
1299
|
+
opacity: 0.5;
|
|
1300
|
+
}.ab-CheckBox--readonly .ab-CheckBox__square {
|
|
1301
|
+
opacity: 0.5;
|
|
1302
|
+
}.ab-CheckBox-input:not(.ag-checkbox-input) {
|
|
2136
1303
|
width: 100%;
|
|
2137
1304
|
height: 100%;
|
|
2138
1305
|
line-height: 0;
|
|
@@ -2140,39 +1307,39 @@
|
|
|
2140
1307
|
left: 0;
|
|
2141
1308
|
top: 0;
|
|
2142
1309
|
z-index: 1;
|
|
2143
|
-
position: absolute;
|
|
2144
|
-
.ab-Dialog {
|
|
1310
|
+
position: absolute;
|
|
1311
|
+
}.ab-Dialog {
|
|
2145
1312
|
position: relative;
|
|
2146
1313
|
background: var(--ab-cmp-dialog__background);
|
|
2147
1314
|
fill: var(--ab-color-text-on-primary);
|
|
2148
1315
|
color: var(--ab-cmp-dialog__color);
|
|
2149
1316
|
border-radius: var(--ab-cmp-dialog__border-radius);
|
|
2150
1317
|
display: flex;
|
|
2151
|
-
flex-flow: column;
|
|
2152
|
-
.ab-Dialog:focus-within, .ab-Dialog:focus {
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
.ab-Dialog__close-button {
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
.ab-Dialog-fixed-wrapper {
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
.ab-Dropdown {
|
|
1318
|
+
flex-flow: column;
|
|
1319
|
+
}.ab-Dialog:focus-within, .ab-Dialog:focus {
|
|
1320
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1321
|
+
outline: var(--ab-focus__outline);
|
|
1322
|
+
}.ab-Dialog__close-button {
|
|
1323
|
+
position: absolute;
|
|
1324
|
+
right: 6px;
|
|
1325
|
+
top: 6px;
|
|
1326
|
+
font-size: var(--ab-font-size-3);
|
|
1327
|
+
font-weight: 700;
|
|
1328
|
+
line-height: 1;
|
|
1329
|
+
color: var(--ab-cmp-dialog-close-button__color);
|
|
1330
|
+
text-shadow: 0 1px 0 #fff;
|
|
1331
|
+
cursor: pointer;
|
|
1332
|
+
}.ab-Dialog-fixed-wrapper {
|
|
1333
|
+
position: fixed;
|
|
1334
|
+
margin: auto;
|
|
1335
|
+
left: 0;
|
|
1336
|
+
top: 0;
|
|
1337
|
+
right: 0;
|
|
1338
|
+
bottom: 0;
|
|
1339
|
+
display: flex;
|
|
1340
|
+
align-items: center;
|
|
1341
|
+
justify-content: center;
|
|
1342
|
+
}.ab-Dropdown {
|
|
2176
1343
|
background: var(--ab-color-defaultbackground);
|
|
2177
1344
|
border: var(--ab-cmp-dropdown__border);
|
|
2178
1345
|
border-radius: var(--ab-cmp-dropdown__border-radius);
|
|
@@ -2180,37 +1347,37 @@
|
|
|
2180
1347
|
min-width: 120px;
|
|
2181
1348
|
max-width: 300px;
|
|
2182
1349
|
font-family: var(--ab-cmp-dropdown__font-family);
|
|
2183
|
-
font-size: var(--ab-cmp-dropdown__font-size);
|
|
2184
|
-
.ab-Dropdown--disabled {
|
|
2185
|
-
|
|
2186
|
-
.ab-Dropdown--focused {
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
.ab-Dropdown__text {
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
.ab-Dropdown--empty .ab-Dropdown__text {
|
|
2200
|
-
|
|
2201
|
-
.ab-Dropdown select {
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
.ab-Dropdown .ab-SimpleButton {
|
|
2207
|
-
|
|
2208
|
-
.ab-DropdownButton {
|
|
1350
|
+
font-size: var(--ab-cmp-dropdown__font-size);
|
|
1351
|
+
}.ab-Dropdown--disabled {
|
|
1352
|
+
opacity: 0.5;
|
|
1353
|
+
}.ab-Dropdown--focused {
|
|
1354
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1355
|
+
outline: var(--ab-focus__outline);
|
|
1356
|
+
}.ab-Dropdown__text {
|
|
1357
|
+
color: var(--ab-cmp-dropdown__color);
|
|
1358
|
+
padding: var(--ab-cmp-dropdown__padding);
|
|
1359
|
+
pointer-events: none;
|
|
1360
|
+
position: relative;
|
|
1361
|
+
cursor: pointer;
|
|
1362
|
+
overflow: hidden;
|
|
1363
|
+
text-overflow: ellipsis;
|
|
1364
|
+
white-space: nowrap;
|
|
1365
|
+
flex: 1;
|
|
1366
|
+
}.ab-Dropdown--empty .ab-Dropdown__text {
|
|
1367
|
+
color: var(--ab-color-text-on-defaultbackground);
|
|
1368
|
+
}.ab-Dropdown select {
|
|
1369
|
+
font-family: inherit;
|
|
1370
|
+
font-size: inherit;
|
|
1371
|
+
position: absolute;
|
|
1372
|
+
cursor: pointer;
|
|
1373
|
+
}.ab-Dropdown .ab-SimpleButton {
|
|
1374
|
+
color: var(--ab-cmp-dropdown__color) !important;
|
|
1375
|
+
}.ab-DropdownButton {
|
|
2209
1376
|
position: relative;
|
|
2210
1377
|
overflow: visible;
|
|
2211
1378
|
outline: none;
|
|
2212
|
-
--ab-overlay-horizontal-align: left;
|
|
2213
|
-
.ab-DropdownButton__list {
|
|
1379
|
+
--ab-overlay-horizontal-align: left;
|
|
1380
|
+
}.ab-DropdownButton__list {
|
|
2214
1381
|
text-align: start;
|
|
2215
1382
|
padding: var(--ab-space-1) 0;
|
|
2216
1383
|
box-shadow: var(--ab-cmp-dropdownbutton-list__box-shadow);
|
|
@@ -2218,30 +1385,30 @@
|
|
|
2218
1385
|
border: var(--ab-cmp-dropdownbutton-list__border);
|
|
2219
1386
|
border-radius: var(--ab-cmp-dropdownbutton-list__border-radius);
|
|
2220
1387
|
z-index: var(--ab-cmp-dropdownbutton-list__z-index);
|
|
2221
|
-
background: var(--ab-cmp-dropdownbutton-list__background);
|
|
2222
|
-
.ab-DropdownButton__content {
|
|
1388
|
+
background: var(--ab-cmp-dropdownbutton-list__background);
|
|
1389
|
+
}.ab-DropdownButton__content {
|
|
2223
1390
|
font-family: var(--ab__font-family);
|
|
2224
1391
|
font-size: var(--ab-font-size-2);
|
|
2225
1392
|
max-width: 100%;
|
|
2226
1393
|
width: 100%;
|
|
2227
|
-
border-spacing: 0;
|
|
2228
|
-
.ab-DropdownButton__list-item {
|
|
1394
|
+
border-spacing: 0;
|
|
1395
|
+
}.ab-DropdownButton__list-item {
|
|
2229
1396
|
fill: currentColor;
|
|
2230
|
-
color: var(--ab-cmp-dropdownbutton-list-item__color);
|
|
2231
|
-
.ab-DropdownButton__list-item--disabled {
|
|
2232
|
-
|
|
2233
|
-
.ab-DropdownButton__list-item--not-clickable {
|
|
2234
|
-
cursor: auto;
|
|
2235
|
-
.ab-DropdownButton__list-item--clickable:hover {
|
|
1397
|
+
color: var(--ab-cmp-dropdownbutton-list-item__color);
|
|
1398
|
+
}.ab-DropdownButton__list-item--disabled {
|
|
1399
|
+
opacity: 0.5;
|
|
1400
|
+
}.ab-DropdownButton__list-item--not-clickable {
|
|
1401
|
+
cursor: auto;
|
|
1402
|
+
}.ab-DropdownButton__list-item--clickable:hover {
|
|
2236
1403
|
background: var(--ab-cmp-dropdownbutton-list-item-hover__background);
|
|
2237
1404
|
color: var(--ab-cmp-dropdownbutton-list-item-hover__color);
|
|
2238
1405
|
fill: currentColor;
|
|
2239
|
-
cursor: pointer;
|
|
2240
|
-
.ab-DropdownButton__list-item--clickable:hover .glyphicon.glyphicon {
|
|
2241
|
-
|
|
2242
|
-
.ab-DropdownButton__separator td {
|
|
2243
|
-
border-bottom: var(--ab-cmp-dropdownbutton-list-separator__border);
|
|
2244
|
-
.ab-EmptyContent {
|
|
1406
|
+
cursor: pointer;
|
|
1407
|
+
}.ab-DropdownButton__list-item--clickable:hover .glyphicon.glyphicon {
|
|
1408
|
+
color: inherit;
|
|
1409
|
+
}.ab-DropdownButton__separator td {
|
|
1410
|
+
border-bottom: var(--ab-cmp-dropdownbutton-list-separator__border);
|
|
1411
|
+
}.ab-EmptyContent {
|
|
2245
1412
|
position: absolute;
|
|
2246
1413
|
top: 0;
|
|
2247
1414
|
bottom: 0;
|
|
@@ -2249,57 +1416,53 @@
|
|
|
2249
1416
|
right: 0;
|
|
2250
1417
|
font-size: var(--ab-font-size-3);
|
|
2251
1418
|
text-align: center;
|
|
2252
|
-
padding: var(--ab-space-4);
|
|
2253
|
-
.ab-EmptyContent p {
|
|
2254
|
-
|
|
2255
|
-
.ab-EmptyContent__wrapper {
|
|
1419
|
+
padding: var(--ab-space-4);
|
|
1420
|
+
}.ab-EmptyContent p {
|
|
1421
|
+
color: var(--ab-color-text-on-primary);
|
|
1422
|
+
}.ab-EmptyContent__wrapper {
|
|
2256
1423
|
position: relative;
|
|
2257
1424
|
width: 100%;
|
|
2258
|
-
height: 100%;
|
|
2259
|
-
.ab-ErrorBox {
|
|
1425
|
+
height: 100%;
|
|
1426
|
+
}.ab-ErrorBox {
|
|
2260
1427
|
padding: var(--ab-cmp-error-box__padding);
|
|
2261
1428
|
border-radius: var(--ab-cmp-error-box__border-radius);
|
|
2262
1429
|
background: var(--ab-cmp-error-box__background);
|
|
2263
|
-
color: var(--ab-cmp-error-box__color);
|
|
2264
|
-
.ab-FieldWrap {
|
|
1430
|
+
color: var(--ab-cmp-error-box__color);
|
|
1431
|
+
}.ab-FieldWrap {
|
|
2265
1432
|
border: 1px solid var(--ab-color-inputborder);
|
|
2266
1433
|
color: 1px solid var(--ab-color-inputcolor);
|
|
2267
1434
|
border-radius: var(--ab-cmp-field-wrap__border-radius);
|
|
2268
1435
|
background: var(--ab-cmp-field-wrap__background);
|
|
2269
1436
|
overflow: hidden;
|
|
2270
|
-
fill: var(--ab-cmp-field-wrap__fill);
|
|
2271
|
-
.ab-FieldWrap:focus-within {
|
|
2272
|
-
|
|
2273
|
-
.ab-FieldWrap input,
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
.ab-FieldWrap .ab-Dropdown {
|
|
2281
|
-
outline: none !important;
|
|
2282
|
-
box-shadow: none !important; }
|
|
2283
|
-
.ab-FormLayout {
|
|
1437
|
+
fill: var(--ab-cmp-field-wrap__fill);
|
|
1438
|
+
}.ab-FieldWrap:focus-within {
|
|
1439
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1440
|
+
}.ab-FieldWrap input, .ab-FieldWrap select, .ab-FieldWrap > * {
|
|
1441
|
+
border: none;
|
|
1442
|
+
flex: 1;
|
|
1443
|
+
}.ab-FieldWrap input, .ab-FieldWrap select, .ab-FieldWrap .ab-Dropdown {
|
|
1444
|
+
outline: none !important;
|
|
1445
|
+
box-shadow: none !important;
|
|
1446
|
+
}.ab-FormLayout {
|
|
2284
1447
|
display: grid;
|
|
2285
|
-
align-items: center;
|
|
2286
|
-
.ab-FormLayout_column--label {
|
|
2287
|
-
text-align: end;
|
|
2288
|
-
.ab-HelpBlock {
|
|
1448
|
+
align-items: center;
|
|
1449
|
+
}.ab-FormLayout_column--label {
|
|
1450
|
+
text-align: end;
|
|
1451
|
+
}.ab-HelpBlock {
|
|
2289
1452
|
padding: var(--ab-cmp-help-block__padding);
|
|
2290
1453
|
background: var(--ab-cmp-help-block__background);
|
|
2291
1454
|
border-radius: var(--ab-cmp-help-block__border-radius);
|
|
2292
|
-
color: var(--ab-cmp-help-block__color);
|
|
2293
|
-
.ab-CodeBlock {
|
|
1455
|
+
color: var(--ab-cmp-help-block__color);
|
|
1456
|
+
}.ab-CodeBlock {
|
|
2294
1457
|
padding: var(--ab-cmp-code-block__padding);
|
|
2295
1458
|
background: var(--ab-cmp-code-block__background);
|
|
2296
1459
|
border-radius: var(--ab-cmp-code-block__border-radius);
|
|
2297
|
-
color: var(--ab-cmp-code-block__color);
|
|
2298
|
-
input.ab-Input {
|
|
2299
|
-
background: var(--ab-cmp-input__background);
|
|
2300
|
-
input.ab-Input[disabled] {
|
|
2301
|
-
|
|
2302
|
-
.ab-Input {
|
|
1460
|
+
color: var(--ab-cmp-code-block__color);
|
|
1461
|
+
}input.ab-Input {
|
|
1462
|
+
background: var(--ab-cmp-input__background);
|
|
1463
|
+
}input.ab-Input[disabled] {
|
|
1464
|
+
background: var(--ab-cmp-input--disabled__background);
|
|
1465
|
+
}.ab-Input {
|
|
2303
1466
|
position: relative;
|
|
2304
1467
|
padding: var(--ab-cmp-input__padding);
|
|
2305
1468
|
color: var(--ab-cmp-input__color);
|
|
@@ -2312,31 +1475,30 @@ input.ab-Input[disabled] {
|
|
|
2312
1475
|
/* Firefox 19+ */
|
|
2313
1476
|
/* IE 10-11 */
|
|
2314
1477
|
/* Edge */
|
|
2315
|
-
/* MODERN BROWSER */
|
|
2316
|
-
.ab-Input:focus {
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
.ab-Input::-webkit-input-placeholder {
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
.ab-Input:-moz-placeholder {
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
.ab-Input::-moz-placeholder {
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
.ab-Input:-ms-input-placeholder {
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
.ab-Input::-ms-input-placeholder {
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
.ab-Input::placeholder {
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
/* Spin Buttons modified */
|
|
2338
|
-
input[type=
|
|
2339
|
-
input[type='number'].ab-Input::-webkit-inner-spin-button {
|
|
1478
|
+
/* MODERN BROWSER */
|
|
1479
|
+
}.ab-Input:focus {
|
|
1480
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1481
|
+
outline: var(--ab-focus__outline);
|
|
1482
|
+
}.ab-Input::-webkit-input-placeholder {
|
|
1483
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1484
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
1485
|
+
}.ab-Input:-moz-placeholder {
|
|
1486
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1487
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
1488
|
+
}.ab-Input::-moz-placeholder {
|
|
1489
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1490
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
1491
|
+
}.ab-Input:-ms-input-placeholder {
|
|
1492
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1493
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
1494
|
+
}.ab-Input::-ms-input-placeholder {
|
|
1495
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1496
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
1497
|
+
}.ab-Input::placeholder {
|
|
1498
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1499
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
1500
|
+
}/* Spin Buttons modified */input[type=number].ab-Input::-webkit-outer-spin-button,
|
|
1501
|
+
input[type=number].ab-Input::-webkit-inner-spin-button {
|
|
2340
1502
|
-webkit-appearance: none;
|
|
2341
1503
|
width: 1em;
|
|
2342
1504
|
opacity: 0;
|
|
@@ -2344,16 +1506,16 @@ input[type='number'].ab-Input::-webkit-inner-spin-button {
|
|
|
2344
1506
|
top: 0;
|
|
2345
1507
|
right: 0;
|
|
2346
1508
|
bottom: 0;
|
|
2347
|
-
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="20" viewBox="4 0 18 18" version="1.1"><path fill="%23656565" d="M7 10l5 5 5-5z" transform="translate(0, 2)"/><path fill="%23656565" d="M7 14l5-5 5 5z" transform="translate(0, -6)"/></svg>') no-repeat center center;
|
|
2348
|
-
input[type=
|
|
2349
|
-
input[type=
|
|
2350
|
-
input[type=
|
|
2351
|
-
opacity: 1;
|
|
2352
|
-
.ab-ListGroup {
|
|
1509
|
+
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="20" viewBox="4 0 18 18" version="1.1"><path fill="%23656565" d="M7 10l5 5 5-5z" transform="translate(0, 2)"/><path fill="%23656565" d="M7 14l5-5 5 5z" transform="translate(0, -6)"/></svg>') no-repeat center center;
|
|
1510
|
+
}input[type=number].ab-Input:focus::-webkit-inner-spin-button, input[type=number].ab-Input:focus::-webkit-inner-spin-button:active,
|
|
1511
|
+
input[type=number].ab-Input:hover::-webkit-inner-spin-button,
|
|
1512
|
+
input[type=number].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
1513
|
+
opacity: 1;
|
|
1514
|
+
}.ab-ListGroup {
|
|
2353
1515
|
display: flex;
|
|
2354
1516
|
flex-flow: column;
|
|
2355
|
-
align-items: flex-start;
|
|
2356
|
-
:root {
|
|
1517
|
+
align-items: flex-start;
|
|
1518
|
+
}:root {
|
|
2357
1519
|
--ab-cmp-listgroupitem__width: 100%;
|
|
2358
1520
|
--ab-cmp-listgroupitem__background: var(--ab-color-primary);
|
|
2359
1521
|
--ab-cmp-listgroupitem__color: var(--ab-color-text-on-primary);
|
|
@@ -2361,137 +1523,137 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2361
1523
|
--ab-cmp-listgroupitem--odd__background: var(--ab-color-primarylight);
|
|
2362
1524
|
--ab-cmp-listgroupitem--odd__color: var(--ab-color-text-on-primary);
|
|
2363
1525
|
--ab-cmp-listgroupitem--active__background: var(--ab-color-secondarylight);
|
|
2364
|
-
--ab-cmp-listgroupitem--active__color: var(--ab-color-text-on-secondarylight);
|
|
2365
|
-
.ab-Modal {
|
|
1526
|
+
--ab-cmp-listgroupitem--active__color: var(--ab-color-text-on-secondarylight);
|
|
1527
|
+
}.ab-Modal {
|
|
2366
1528
|
position: fixed;
|
|
2367
1529
|
top: 0;
|
|
2368
1530
|
left: 0;
|
|
2369
1531
|
right: 0;
|
|
2370
1532
|
bottom: 0;
|
|
2371
1533
|
z-index: 1000;
|
|
2372
|
-
font-family: var(--ab__font-family);
|
|
2373
|
-
.ab-Modal.ab-Modal--resizable-and-movable {
|
|
2374
|
-
position: relative;
|
|
2375
|
-
.ab-Modal-backdrop {
|
|
1534
|
+
font-family: var(--ab__font-family);
|
|
1535
|
+
}.ab-Modal.ab-Modal--resizable-and-movable {
|
|
1536
|
+
position: relative;
|
|
1537
|
+
}.ab-Modal-backdrop {
|
|
2376
1538
|
background: var(--ab-cmp-modal-backdrop__background);
|
|
2377
1539
|
z-index: 900;
|
|
2378
1540
|
position: fixed;
|
|
2379
1541
|
left: 0;
|
|
2380
1542
|
right: 0;
|
|
2381
1543
|
top: 0;
|
|
2382
|
-
bottom: 0;
|
|
2383
|
-
.ab-Tabs {
|
|
1544
|
+
bottom: 0;
|
|
1545
|
+
}.ab-Tabs {
|
|
2384
1546
|
display: flex;
|
|
2385
|
-
flex-direction: column;
|
|
2386
|
-
.ab-Tabs[data-selected-index=
|
|
1547
|
+
flex-direction: column;
|
|
1548
|
+
}.ab-Tabs[data-selected-index="0"] .ab-Tabs__Filler:first-child,
|
|
2387
1549
|
.ab-Tabs__Tab--before-active {
|
|
2388
|
-
border-bottom-right-radius: var(--ab__border-radius);
|
|
2389
|
-
.ab-Tabs__Strip {
|
|
1550
|
+
border-bottom-right-radius: var(--ab__border-radius);
|
|
1551
|
+
}.ab-Tabs__Strip {
|
|
2390
1552
|
z-index: 10;
|
|
2391
|
-
overflow: visible;
|
|
2392
|
-
.ab-Tabs__Tab {
|
|
1553
|
+
overflow: visible;
|
|
1554
|
+
}.ab-Tabs__Tab {
|
|
2393
1555
|
cursor: pointer;
|
|
2394
|
-
background: var(--ab-cmp-tabs-strip__background);
|
|
2395
|
-
.ab-Tabs__Tab:focus {
|
|
2396
|
-
|
|
2397
|
-
.ab-Tabs__Tab:focus:after {
|
|
2398
|
-
|
|
2399
|
-
.ab-Tabs__Filler {
|
|
2400
|
-
background: var(--ab-cmp-tabs-strip__background);
|
|
2401
|
-
.ab-Tabs__Tab--active + .ab-Tabs__Filler,
|
|
1556
|
+
background: var(--ab-cmp-tabs-strip__background);
|
|
1557
|
+
}.ab-Tabs__Tab:focus {
|
|
1558
|
+
outline: none;
|
|
1559
|
+
}.ab-Tabs__Tab:focus:after {
|
|
1560
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1561
|
+
}.ab-Tabs__Filler {
|
|
1562
|
+
background: var(--ab-cmp-tabs-strip__background);
|
|
1563
|
+
}.ab-Tabs__Tab--active + .ab-Tabs__Filler,
|
|
2402
1564
|
.ab-Tabs__Tab--active + .ab-Tabs__Tab {
|
|
2403
|
-
border-bottom-left-radius: var(--ab__border-radius);
|
|
2404
|
-
.ab-Tabs__Tab--active {
|
|
1565
|
+
border-bottom-left-radius: var(--ab__border-radius);
|
|
1566
|
+
}.ab-Tabs__Tab--active {
|
|
2405
1567
|
position: relative;
|
|
2406
|
-
z-index: 30;
|
|
2407
|
-
.ab-Tabs__Tab--active:after {
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
.ab-Tabs__Tab--active:before {
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
.ab-Tabs__Strip {
|
|
2431
|
-
background: var(--ab-cmp-tabs-active__background);
|
|
2432
|
-
.ab-Tabs__Body {
|
|
1568
|
+
z-index: 30;
|
|
1569
|
+
}.ab-Tabs__Tab--active:after {
|
|
1570
|
+
content: "";
|
|
1571
|
+
pointer-events: none;
|
|
1572
|
+
position: absolute;
|
|
1573
|
+
top: 0;
|
|
1574
|
+
bottom: 5px;
|
|
1575
|
+
right: 0;
|
|
1576
|
+
left: 0;
|
|
1577
|
+
z-index: -2;
|
|
1578
|
+
border-top-left-radius: var(--ab__border-radius);
|
|
1579
|
+
border-top-right-radius: var(--ab__border-radius);
|
|
1580
|
+
}.ab-Tabs__Tab--active:before {
|
|
1581
|
+
content: "";
|
|
1582
|
+
position: absolute;
|
|
1583
|
+
pointer-events: none;
|
|
1584
|
+
border-top-left-radius: var(--ab__border-radius);
|
|
1585
|
+
border-top-right-radius: var(--ab__border-radius);
|
|
1586
|
+
z-index: -1;
|
|
1587
|
+
left: 0;
|
|
1588
|
+
top: 0;
|
|
1589
|
+
width: 100%;
|
|
1590
|
+
height: 100%;
|
|
1591
|
+
background: var(--ab-cmp-tabs-active__background);
|
|
1592
|
+
}.ab-Tabs__Strip {
|
|
1593
|
+
background: var(--ab-cmp-tabs-active__background);
|
|
1594
|
+
}.ab-Tabs__Body {
|
|
2433
1595
|
background: var(--ab-cmp-tabs-active__background);
|
|
2434
1596
|
border-radius: var(--ab__border-radius);
|
|
2435
1597
|
flex: 1;
|
|
2436
1598
|
overflow: auto;
|
|
2437
1599
|
display: flex;
|
|
2438
|
-
flex-flow: column;
|
|
2439
|
-
.ab-Tabs[data-selected-index=
|
|
2440
|
-
border-top-left-radius: 0;
|
|
2441
|
-
.ab-Panel {
|
|
1600
|
+
flex-flow: column;
|
|
1601
|
+
}.ab-Tabs[data-selected-index="0"] .ab-Tabs__Body {
|
|
1602
|
+
border-top-left-radius: 0;
|
|
1603
|
+
}.ab-Panel {
|
|
2442
1604
|
display: flex;
|
|
2443
1605
|
flex-flow: column;
|
|
2444
1606
|
max-height: var(--ab-cmp-panel__max-height);
|
|
2445
1607
|
overflow: auto;
|
|
2446
|
-
font-size: var(--ab-cmp-panel__font-size);
|
|
2447
|
-
.ab-Panel .glyphicon {
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
.ab-Panel--variant-modern {
|
|
2451
|
-
|
|
2452
|
-
.ab-Panel__header {
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
.ab-Panel__header--variant-primary {
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
.ab-Panel__header--variant-modern {
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
.ab-Panel__body {
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
.ab-Panel__body--scroll-auto {
|
|
2478
|
-
|
|
2479
|
-
.ab-Panel__body--variant-modern {
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
.ab-Panel--with-header > .ab-Panel__body {
|
|
2483
|
-
|
|
2484
|
-
.ab-Panel--no-header > .ab-Panel__body {
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
.ab-SimpleButton {
|
|
1608
|
+
font-size: var(--ab-cmp-panel__font-size);
|
|
1609
|
+
}.ab-Panel .glyphicon {
|
|
1610
|
+
-webkit-text-fill-color: var(--ab-cmp-panel-icon__fill);
|
|
1611
|
+
fill: var(--ab-cmp-panel-icon__fill);
|
|
1612
|
+
}.ab-Panel--variant-modern {
|
|
1613
|
+
--ab-cmp-panel__border-radius: var(--ab-space-1);
|
|
1614
|
+
}.ab-Panel__header {
|
|
1615
|
+
flex: none;
|
|
1616
|
+
background: var(--ab-cmp-panel_header__background);
|
|
1617
|
+
color: var(--ab-cmp-panel_header__color);
|
|
1618
|
+
font-size: var(--ab-cmp-panel_header__font-size);
|
|
1619
|
+
padding: var(--ab-cmp-panel_header__padding);
|
|
1620
|
+
border-top-left-radius: var(--ab-cmp-panel__border-radius);
|
|
1621
|
+
border-top-right-radius: var(--ab-cmp-panel__border-radius);
|
|
1622
|
+
border: var(--ab-cmp-panel__border);
|
|
1623
|
+
}.ab-Panel__header--variant-primary {
|
|
1624
|
+
background: var(--ab-cmp-panel_header--variant-primary__background);
|
|
1625
|
+
color: var(--ab-cmp-panel_header--variant-primary__color);
|
|
1626
|
+
fill: currentColor;
|
|
1627
|
+
}.ab-Panel__header--variant-modern {
|
|
1628
|
+
border: none;
|
|
1629
|
+
background: var(--ab-cmp-panel_header--variant-modern__background);
|
|
1630
|
+
}.ab-Panel__body {
|
|
1631
|
+
position: relative;
|
|
1632
|
+
padding: var(--ab-cmp-panel__padding);
|
|
1633
|
+
border: var(--ab-cmp-panel__border);
|
|
1634
|
+
background: var(--ab-cmp-panel_body__background);
|
|
1635
|
+
color: var(--ab-cmp-panel_body__color);
|
|
1636
|
+
flex: 1;
|
|
1637
|
+
border-bottom-left-radius: var(--ab-cmp-panel__border-radius);
|
|
1638
|
+
border-bottom-right-radius: var(--ab-cmp-panel__border-radius);
|
|
1639
|
+
}.ab-Panel__body--scroll-auto {
|
|
1640
|
+
overflow: auto;
|
|
1641
|
+
}.ab-Panel__body--variant-modern {
|
|
1642
|
+
border: none;
|
|
1643
|
+
background: var(--ab-cmp-panel_body--variant-modern__background);
|
|
1644
|
+
}.ab-Panel--with-header > .ab-Panel__body {
|
|
1645
|
+
border-top: none;
|
|
1646
|
+
}.ab-Panel--no-header > .ab-Panel__body {
|
|
1647
|
+
border-top-left-radius: var(--ab-cmp-panel__border-radius);
|
|
1648
|
+
border-top-right-radius: var(--ab-cmp-panel__border-radius);
|
|
1649
|
+
}.ab-SimpleButton {
|
|
2488
1650
|
padding: var(--ab-cmp-simple-button__padding);
|
|
2489
1651
|
font-family: var(--ab-cmp-simple-button__font-family);
|
|
2490
|
-
font-size: var(--ab-cmp-simple-button__font-size);
|
|
2491
|
-
.ab-SimpleButton:focus {
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
.ab-SimpleButton.ab-SimpleButton {
|
|
1652
|
+
font-size: var(--ab-cmp-simple-button__font-size);
|
|
1653
|
+
}.ab-SimpleButton:focus {
|
|
1654
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1655
|
+
outline: var(--ab-focus__outline);
|
|
1656
|
+
}.ab-SimpleButton.ab-SimpleButton {
|
|
2495
1657
|
vertical-align: middle;
|
|
2496
1658
|
border-radius: var(--ab-cmp-simple-button__border-radius);
|
|
2497
1659
|
color: var(--ab-color-text-on-primary);
|
|
@@ -2501,138 +1663,138 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2501
1663
|
flex-flow: row;
|
|
2502
1664
|
flex: none;
|
|
2503
1665
|
align-items: center;
|
|
2504
|
-
fill: currentColor;
|
|
2505
|
-
.ab-SimpleButton.ab-SimpleButton > * {
|
|
2506
|
-
|
|
2507
|
-
.ab-SimpleButton.ab-SimpleButton svg {
|
|
2508
|
-
|
|
2509
|
-
.ab-SimpleButton.ab-SimpleButton--tone-neutral {
|
|
2510
|
-
|
|
2511
|
-
.ab-SimpleButton.ab-SimpleButton--tone-none {
|
|
2512
|
-
|
|
2513
|
-
.ab-SimpleButton.ab-SimpleButton--tone-success {
|
|
2514
|
-
|
|
2515
|
-
.ab-SimpleButton.ab-SimpleButton--tone-accent {
|
|
2516
|
-
|
|
2517
|
-
.ab-SimpleButton.ab-SimpleButton--tone-error {
|
|
2518
|
-
|
|
2519
|
-
.ab-SimpleButton.ab-SimpleButton--tone-warning {
|
|
2520
|
-
|
|
2521
|
-
.ab-SimpleButton.ab-SimpleButton--tone-info {
|
|
2522
|
-
|
|
2523
|
-
.ab-SimpleButton.ab-SimpleButton--disabled {
|
|
2524
|
-
|
|
2525
|
-
.ab-SimpleButton.ab-SimpleButton:before {
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
.ab-SimpleButton.ab-SimpleButton--variant-outlined, .ab-SimpleButton.ab-SimpleButton--variant-text {
|
|
2537
|
-
|
|
2538
|
-
.ab-SimpleButton.ab-SimpleButton--variant-outlined:before, .ab-SimpleButton.ab-SimpleButton--variant-text:before {
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
.ab-SimpleButton.ab-SimpleButton--variant-outlined:hover:not(.ab-SimpleButton--disabled), .ab-SimpleButton.ab-SimpleButton--variant-text:hover:not(.ab-SimpleButton--disabled) {
|
|
2543
|
-
|
|
2544
|
-
.ab-SimpleButton.ab-SimpleButton--variant-outlined:hover:not(.ab-SimpleButton--disabled):before, .ab-SimpleButton.ab-SimpleButton--variant-text:hover:not(.ab-SimpleButton--disabled):before {
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
.ab-SimpleButton.ab-SimpleButton--variant-text {
|
|
2548
|
-
|
|
2549
|
-
.ab-SimpleButton.ab-SimpleButton--variant-outlined {
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised {
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised:focus {
|
|
2557
|
-
|
|
2558
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised:hover {
|
|
2559
|
-
|
|
2560
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised:hover:not(.ab-SimpleButton--disabled) {
|
|
2561
|
-
|
|
2562
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-success {
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-success:not(.ab-SimpleButton--disabled) {
|
|
2566
|
-
|
|
2567
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-accent {
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-accent:not(.ab-SimpleButton--disabled) {
|
|
2571
|
-
|
|
2572
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-none {
|
|
2573
|
-
|
|
2574
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-none:not(.ab-SimpleButton--disabled) {
|
|
2575
|
-
|
|
2576
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-neutral {
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-neutral:not(.ab-SimpleButton--disabled) {
|
|
2580
|
-
|
|
2581
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-error {
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-error:not(.ab-SimpleButton--disabled) {
|
|
2585
|
-
|
|
2586
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-warning {
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-warning:not(.ab-SimpleButton--disabled) {
|
|
2590
|
-
|
|
2591
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-info {
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-info:not(.ab-SimpleButton--disabled) {
|
|
2595
|
-
|
|
2596
|
-
.ab-SimpleButton.ab-SimpleButton--font-weight\=normal {
|
|
2597
|
-
font-weight: normal;
|
|
2598
|
-
.ab-SimpleButton.ab-SimpleButton--font-weight\=bold,
|
|
1666
|
+
fill: currentColor;
|
|
1667
|
+
}.ab-SimpleButton.ab-SimpleButton > * {
|
|
1668
|
+
z-index: 1;
|
|
1669
|
+
}.ab-SimpleButton.ab-SimpleButton svg {
|
|
1670
|
+
vertical-align: middle;
|
|
1671
|
+
}.ab-SimpleButton.ab-SimpleButton--tone-neutral {
|
|
1672
|
+
color: var(--ab-color-text-on-primary);
|
|
1673
|
+
}.ab-SimpleButton.ab-SimpleButton--tone-none {
|
|
1674
|
+
color: inherit;
|
|
1675
|
+
}.ab-SimpleButton.ab-SimpleButton--tone-success {
|
|
1676
|
+
color: var(--ab-color-success);
|
|
1677
|
+
}.ab-SimpleButton.ab-SimpleButton--tone-accent {
|
|
1678
|
+
color: var(--ab-color-text-on-secondary);
|
|
1679
|
+
}.ab-SimpleButton.ab-SimpleButton--tone-error {
|
|
1680
|
+
color: var(--ab-color-error);
|
|
1681
|
+
}.ab-SimpleButton.ab-SimpleButton--tone-warning {
|
|
1682
|
+
color: var(--ab-color-warn);
|
|
1683
|
+
}.ab-SimpleButton.ab-SimpleButton--tone-info {
|
|
1684
|
+
color: var(--ab-color-info);
|
|
1685
|
+
}.ab-SimpleButton.ab-SimpleButton--disabled {
|
|
1686
|
+
opacity: 0.5;
|
|
1687
|
+
}.ab-SimpleButton.ab-SimpleButton:before {
|
|
1688
|
+
content: "";
|
|
1689
|
+
position: absolute;
|
|
1690
|
+
display: block;
|
|
1691
|
+
left: 0;
|
|
1692
|
+
right: 0;
|
|
1693
|
+
top: 0;
|
|
1694
|
+
bottom: 0;
|
|
1695
|
+
pointer-events: none;
|
|
1696
|
+
z-index: 0;
|
|
1697
|
+
border-radius: inherit;
|
|
1698
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-outlined, .ab-SimpleButton.ab-SimpleButton--variant-text {
|
|
1699
|
+
transition: opacity 0.2s;
|
|
1700
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-outlined:before, .ab-SimpleButton.ab-SimpleButton--variant-text:before {
|
|
1701
|
+
content: "";
|
|
1702
|
+
opacity: 0;
|
|
1703
|
+
transition: opacity 0.2s;
|
|
1704
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-outlined:hover:not(.ab-SimpleButton--disabled), .ab-SimpleButton.ab-SimpleButton--variant-text:hover:not(.ab-SimpleButton--disabled) {
|
|
1705
|
+
cursor: pointer;
|
|
1706
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-outlined:hover:not(.ab-SimpleButton--disabled):before, .ab-SimpleButton.ab-SimpleButton--variant-text:hover:not(.ab-SimpleButton--disabled):before {
|
|
1707
|
+
opacity: 0.15;
|
|
1708
|
+
background-color: currentColor;
|
|
1709
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-text {
|
|
1710
|
+
background: transparent;
|
|
1711
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-outlined {
|
|
1712
|
+
background: var(--ab-cmp-simple-button--outlined__background);
|
|
1713
|
+
border: var(--ab-cmp-simple-button--outlined__border);
|
|
1714
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised {
|
|
1715
|
+
color: var(--ab-color-text-on-primary);
|
|
1716
|
+
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
1717
|
+
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
|
1718
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised:focus {
|
|
1719
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1720
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised:hover {
|
|
1721
|
+
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
1722
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised:hover:not(.ab-SimpleButton--disabled) {
|
|
1723
|
+
cursor: pointer;
|
|
1724
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-success {
|
|
1725
|
+
background: var(--ab-color-success);
|
|
1726
|
+
color: var(--ab-color-text-on-success);
|
|
1727
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-success:not(.ab-SimpleButton--disabled) {
|
|
1728
|
+
opacity: 1;
|
|
1729
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-accent {
|
|
1730
|
+
background: var(--ab-color-secondary);
|
|
1731
|
+
color: var(--ab-color-text-on-secondary);
|
|
1732
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-accent:not(.ab-SimpleButton--disabled) {
|
|
1733
|
+
opacity: 1;
|
|
1734
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-none {
|
|
1735
|
+
background: transparent;
|
|
1736
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-none:not(.ab-SimpleButton--disabled) {
|
|
1737
|
+
opacity: 1;
|
|
1738
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-neutral {
|
|
1739
|
+
background: var(--ab-color-primary);
|
|
1740
|
+
color: var(--ab-color-text-on-primary);
|
|
1741
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-neutral:not(.ab-SimpleButton--disabled) {
|
|
1742
|
+
opacity: 1;
|
|
1743
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-error {
|
|
1744
|
+
background: var(--ab-color-error);
|
|
1745
|
+
color: var(--ab-color-text-on-error);
|
|
1746
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-error:not(.ab-SimpleButton--disabled) {
|
|
1747
|
+
opacity: 1;
|
|
1748
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-warning {
|
|
1749
|
+
background: var(--ab-color-warn);
|
|
1750
|
+
color: var(--ab-color-text-on-warn);
|
|
1751
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-warning:not(.ab-SimpleButton--disabled) {
|
|
1752
|
+
opacity: 1;
|
|
1753
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-info {
|
|
1754
|
+
background: var(--ab-color-info);
|
|
1755
|
+
color: var(--ab-color-text-on-info);
|
|
1756
|
+
}.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-info:not(.ab-SimpleButton--disabled) {
|
|
1757
|
+
opacity: 1;
|
|
1758
|
+
}.ab-SimpleButton.ab-SimpleButton--font-weight\=normal {
|
|
1759
|
+
font-weight: normal;
|
|
1760
|
+
}.ab-SimpleButton.ab-SimpleButton--font-weight\=bold,
|
|
2599
1761
|
.ab-SimpleButton.ab-SimpleButton--font-weight\=700 {
|
|
2600
|
-
font-weight: 700;
|
|
2601
|
-
.ab-SimpleButton.ab-SimpleButton--font-weight\=bolder {
|
|
2602
|
-
font-weight: 800;
|
|
2603
|
-
.ab-Textarea {
|
|
1762
|
+
font-weight: 700;
|
|
1763
|
+
}.ab-SimpleButton.ab-SimpleButton--font-weight\=bolder {
|
|
1764
|
+
font-weight: 800;
|
|
1765
|
+
}.ab-Textarea {
|
|
2604
1766
|
padding: var(--ab-cmp-textarea__padding);
|
|
2605
1767
|
border-radius: var(--ab-cmp-textarea__border-radius);
|
|
2606
1768
|
border: var(--ab-cmp-textarea__border);
|
|
2607
1769
|
color: var(--ab-cmp-textarea__color);
|
|
2608
1770
|
font-family: var(--ab-cmp-textarea__font-family);
|
|
2609
1771
|
font-size: var(--ab-cmp-textarea__font-size);
|
|
2610
|
-
background: var(--ab-cmp-textarea__background);
|
|
2611
|
-
.ab-Textarea[disabled] {
|
|
2612
|
-
|
|
2613
|
-
.ab-Textarea:focus {
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
.ab-Tooltip {
|
|
1772
|
+
background: var(--ab-cmp-textarea__background);
|
|
1773
|
+
}.ab-Textarea[disabled] {
|
|
1774
|
+
background: var(--ab-cmp-textarea--disabled__background);
|
|
1775
|
+
}.ab-Textarea:focus {
|
|
1776
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1777
|
+
outline: var(--ab-focus__outline);
|
|
1778
|
+
}.ab-Tooltip {
|
|
2617
1779
|
pointer-events: none;
|
|
2618
1780
|
padding: var(--ab-space-1) var(--ab-space-2);
|
|
2619
|
-
box-shadow: 2px 2px 10px
|
|
1781
|
+
box-shadow: 2px 2px 10px hsla(0deg, 0%, 0%, 0.1);
|
|
2620
1782
|
white-space: nowrap;
|
|
2621
1783
|
font-size: var(--ab-cmp-tooltip__font-size);
|
|
2622
|
-
color: var(--ab-cmp-tooltip__color);
|
|
2623
|
-
.ab-Tooltip:before {
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
.ab-FileDroppable {
|
|
1784
|
+
color: var(--ab-cmp-tooltip__color);
|
|
1785
|
+
}.ab-Tooltip:before {
|
|
1786
|
+
border: var(--ab-cmp-tooltip__border);
|
|
1787
|
+
content: "";
|
|
1788
|
+
position: absolute;
|
|
1789
|
+
border-radius: var(--ab__border-radius);
|
|
1790
|
+
width: 100%;
|
|
1791
|
+
height: 100%;
|
|
1792
|
+
left: 0;
|
|
1793
|
+
top: 0;
|
|
1794
|
+
opacity: var(--ab-cmp-tooltip__opacity);
|
|
1795
|
+
background: var(--ab-cmp-tooltip__background);
|
|
1796
|
+
z-index: -1;
|
|
1797
|
+
}.ab-FileDroppable {
|
|
2636
1798
|
align-items: center;
|
|
2637
1799
|
justify-content: center;
|
|
2638
1800
|
position: relative;
|
|
@@ -2641,250 +1803,251 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2641
1803
|
transition: fill 0.15s ease-in-out, color 0.15s ease-in-out, outline-offset 0.15s ease-in-out, background-color 0.15s linear;
|
|
2642
1804
|
outline: var(--ab-cmp-file-droppable__outline);
|
|
2643
1805
|
outline-offset: var(--ab-cmp-file-droppable__outline-offset);
|
|
2644
|
-
background: var(--ab-cmp-file-droppable__background);
|
|
2645
|
-
.ab-FileDroppable,
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
.ab-FileDroppable,
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
.ab-FileDroppable.ab-FileDroppable--drag-over {
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
.ab-FileDroppable.ab-FileDroppable--drag-over * {
|
|
2661
|
-
|
|
2662
|
-
.ab-FileDroppable,
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
.ab-WizardPanel > .ab-Panel__body {
|
|
1806
|
+
background: var(--ab-cmp-file-droppable__background);
|
|
1807
|
+
}.ab-FileDroppable,
|
|
1808
|
+
.ab-FileDroppable input,
|
|
1809
|
+
.ab-FileDroppable button,
|
|
1810
|
+
.ab-FileDroppable .ab-SimpleButton {
|
|
1811
|
+
transition: fill 0.15s ease-in-out, color 0.15s ease-in-out, outline-offset 0.15s ease-in-out, background-color 0.15s linear;
|
|
1812
|
+
fill: currentColor;
|
|
1813
|
+
}.ab-FileDroppable,
|
|
1814
|
+
.ab-FileDroppable input,
|
|
1815
|
+
.ab-FileDroppable button {
|
|
1816
|
+
color: var(--ab-cmp-file-droppable__color);
|
|
1817
|
+
}.ab-FileDroppable.ab-FileDroppable--drag-over {
|
|
1818
|
+
outline-offset: var(--ab-cmp-file-droppable--drag-over__outline-offset);
|
|
1819
|
+
outline: var(--ab-cmp-file-droppable--drag-over__outline);
|
|
1820
|
+
background: var(--ab-cmp-file-droppable--drag-over__background);
|
|
1821
|
+
color: var(--ab-cmp-file-droppable--drag-over__color);
|
|
1822
|
+
}.ab-FileDroppable.ab-FileDroppable--drag-over * {
|
|
1823
|
+
pointer-events: none;
|
|
1824
|
+
}.ab-FileDroppable,
|
|
1825
|
+
.ab-FileDroppable *,
|
|
1826
|
+
.ab-FileDroppable *:before,
|
|
1827
|
+
.ab-FileDroppable *:after {
|
|
1828
|
+
box-sizing: border-box;
|
|
1829
|
+
}.ab-WizardPanel > .ab-Panel__body {
|
|
2668
1830
|
display: flex;
|
|
2669
|
-
flex-flow: column;
|
|
2670
|
-
.ab-Dashboard {
|
|
1831
|
+
flex-flow: column;
|
|
1832
|
+
}.ab-Dashboard {
|
|
2671
1833
|
z-index: 1000;
|
|
2672
1834
|
user-select: none;
|
|
2673
1835
|
background: var(--ab-dashboard-gap__background);
|
|
2674
1836
|
color: var(--ab-dashboard__color);
|
|
2675
|
-
font-family: var(--ab-dashboard__font-family);
|
|
2676
|
-
.ab-Dashboard--inline:not(.ab-Dashboard--collapsed) {
|
|
2677
|
-
|
|
2678
|
-
.ab-Dashboard__header {
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
.ab-Dashboard__header-left, .ab-Dashboard__header-right {
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
.ab-Dashboard__header-left {
|
|
2690
|
-
|
|
2691
|
-
.ab-Dashboard__header-right {
|
|
2692
|
-
|
|
2693
|
-
.ab-Dashboard__title {
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
.ab-Dashboard__tabs {
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
.ab-Dashboard__tab {
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
.ab-Dashboard__tab--active {
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
.ab-Dashboard__content {
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
.ab-Dashboard__container {
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
.ab-Dashboard__content-buttons {
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
.ab-Dashboard__toolbar {
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
.ab-Dashboard__toolbar-content {
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
.ab-Dashboard__toolbar-title {
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
.ab-Dashboard__toolbar.ab-Dashboard__home-toolbar {
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
.ab-Dashboard__toolbar.ab-Dashboard__home-toolbar .ab-Dashboard__toolbar-title {
|
|
2753
|
-
|
|
2754
|
-
.ab-Dashboard .ab-Input {
|
|
2755
|
-
|
|
2756
|
-
.ab-Dashboard .ab-DashboardToolbar__Export__wrap {
|
|
2757
|
-
|
|
2758
|
-
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
2759
|
-
|
|
2760
|
-
.ab-Dashboard .ab-StateManagement__Clear-Button,
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
.ab-GridList {
|
|
2765
|
-
--at-grid__background: transparent;
|
|
2766
|
-
.ab-GridList .AT-GridCell_content,
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
.ab-GridList .AT-GridHeader {
|
|
2771
|
-
|
|
2772
|
-
.ab-GridList.ab-padding-horizontal-0 .AT-GridColumnCell {
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
.ab-GridList .AT-GridRow--odd {
|
|
1837
|
+
font-family: var(--ab-dashboard__font-family);
|
|
1838
|
+
}.ab-Dashboard--inline:not(.ab-Dashboard--collapsed) {
|
|
1839
|
+
display: flex;
|
|
1840
|
+
}.ab-Dashboard__header {
|
|
1841
|
+
display: flex;
|
|
1842
|
+
align-items: stretch;
|
|
1843
|
+
background: var(--ab-dashboard-header__background);
|
|
1844
|
+
color: var(--ab-dashboard-header__color);
|
|
1845
|
+
height: 40px;
|
|
1846
|
+
padding: 0 var(--ab-space-2);
|
|
1847
|
+
}.ab-Dashboard__header-left, .ab-Dashboard__header-right {
|
|
1848
|
+
display: flex;
|
|
1849
|
+
align-items: center;
|
|
1850
|
+
flex: 1;
|
|
1851
|
+
}.ab-Dashboard__header-left {
|
|
1852
|
+
justify-content: flex-start;
|
|
1853
|
+
}.ab-Dashboard__header-right {
|
|
1854
|
+
justify-content: flex-end;
|
|
1855
|
+
}.ab-Dashboard__title {
|
|
1856
|
+
display: flex;
|
|
1857
|
+
align-items: center;
|
|
1858
|
+
padding: 0 var(--ab-space-3);
|
|
1859
|
+
font-weight: bold;
|
|
1860
|
+
font-size: var(--ab-font-size-4);
|
|
1861
|
+
}.ab-Dashboard__tabs {
|
|
1862
|
+
align-self: flex-end;
|
|
1863
|
+
margin-left: var(--ab-space-2);
|
|
1864
|
+
}.ab-Dashboard__tab {
|
|
1865
|
+
border: none;
|
|
1866
|
+
outline: none;
|
|
1867
|
+
cursor: pointer;
|
|
1868
|
+
font-size: var(--ab-font-size-3);
|
|
1869
|
+
border-radius: var(--ab__border-radius) var(--ab__border-radius) 0 0;
|
|
1870
|
+
padding: 8px 12px 12px 12px;
|
|
1871
|
+
color: var(--ab-dashboard-header__color);
|
|
1872
|
+
background: var(--ab-dashboard-header__background);
|
|
1873
|
+
}.ab-Dashboard__tab--active {
|
|
1874
|
+
color: var(--ab-dashboard__color);
|
|
1875
|
+
background: var(--ab-dashboard__background);
|
|
1876
|
+
}.ab-Dashboard__content {
|
|
1877
|
+
display: flex;
|
|
1878
|
+
grid-gap: var(--ab-dashboard-gap-size);
|
|
1879
|
+
flex-flow: var(--ab-dashboard-wrap);
|
|
1880
|
+
align-items: stretch;
|
|
1881
|
+
flex: 1;
|
|
1882
|
+
overflow-x: auto;
|
|
1883
|
+
padding: var(--ab-dashboard-gap-size);
|
|
1884
|
+
}.ab-Dashboard__container {
|
|
1885
|
+
display: flex;
|
|
1886
|
+
flex-shrink: 0;
|
|
1887
|
+
background: var(--ab-dashboard__background);
|
|
1888
|
+
}.ab-Dashboard__content-buttons {
|
|
1889
|
+
display: flex;
|
|
1890
|
+
flex-direction: column;
|
|
1891
|
+
align-self: stretch;
|
|
1892
|
+
padding: var(--ab-space-2);
|
|
1893
|
+
border-left: 1px solid var(--ab-dashboard__border);
|
|
1894
|
+
}.ab-Dashboard__toolbar {
|
|
1895
|
+
display: flex;
|
|
1896
|
+
flex-direction: column;
|
|
1897
|
+
justify-content: space-between;
|
|
1898
|
+
font-size: var(--ab-font-size-3);
|
|
1899
|
+
}.ab-Dashboard__toolbar-content {
|
|
1900
|
+
padding: var(--ab-space-2) var(--ab-space-2) var(--ab-space-1) var(--ab-space-2);
|
|
1901
|
+
display: flex;
|
|
1902
|
+
}.ab-Dashboard__toolbar-title {
|
|
1903
|
+
display: flex;
|
|
1904
|
+
align-items: center;
|
|
1905
|
+
justify-content: center;
|
|
1906
|
+
font-size: var(--ab-font-size-2);
|
|
1907
|
+
padding: 0 var(--ab-space-1) 2px var(--ab-space-2);
|
|
1908
|
+
opacity: 0.7;
|
|
1909
|
+
}.ab-Dashboard__toolbar.ab-Dashboard__home-toolbar {
|
|
1910
|
+
color: var(--ab-dashboard-header__color);
|
|
1911
|
+
background: var(--ab-dashboard-header__background);
|
|
1912
|
+
padding-top: var(--ab-dashboard-gap-size);
|
|
1913
|
+
padding-bottom: var(--ab-dashboard-gap-size);
|
|
1914
|
+
}.ab-Dashboard__toolbar.ab-Dashboard__home-toolbar .ab-Dashboard__toolbar-title {
|
|
1915
|
+
opacity: 1;
|
|
1916
|
+
}.ab-Dashboard .ab-Input {
|
|
1917
|
+
border: none;
|
|
1918
|
+
}.ab-Dashboard .ab-DashboardToolbar__Export__wrap {
|
|
1919
|
+
white-space: nowrap;
|
|
1920
|
+
}.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
1921
|
+
padding: var(--ab-space-1);
|
|
1922
|
+
}.ab-Dashboard .ab-StateManagement__Clear-Button,
|
|
1923
|
+
.ab-Dashboard .ab-StateManagement__Load-Button,
|
|
1924
|
+
.ab-Dashboard .ab-StateManagement__Export-Dropdown {
|
|
1925
|
+
margin-left: var(--ab-space-1);
|
|
1926
|
+
}.ab-GridList {
|
|
1927
|
+
--at-grid__background: transparent;
|
|
1928
|
+
}.ab-GridList .AT-GridCell_content,
|
|
1929
|
+
.ab-GridList .ab-ListGroupItem,
|
|
1930
|
+
.ab-GridList .AT-GridColumnCell {
|
|
1931
|
+
width: 100%;
|
|
1932
|
+
}.ab-GridList .AT-GridHeader {
|
|
1933
|
+
display: none;
|
|
1934
|
+
}.ab-GridList.ab-padding-horizontal-0 .AT-GridColumnCell {
|
|
1935
|
+
padding-left: 0;
|
|
1936
|
+
padding-right: 0;
|
|
1937
|
+
}.ab-GridList .AT-GridRow--odd {
|
|
2776
1938
|
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
2777
|
-
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
2778
|
-
.ab-GridList .AT-GridRow--even {
|
|
1939
|
+
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
1940
|
+
}.ab-GridList .AT-GridRow--even {
|
|
2779
1941
|
background: var(--ab-cmp-listgroupitem__background);
|
|
2780
|
-
color: var(--ab-cmp-listgroupitem__color);
|
|
2781
|
-
.ab-GridList .ab-ListGroupItem {
|
|
1942
|
+
color: var(--ab-cmp-listgroupitem__color);
|
|
1943
|
+
}.ab-GridList .ab-ListGroupItem {
|
|
2782
1944
|
--ab-cmp-listgroupitem__background: transparent;
|
|
2783
|
-
--ab-cmp-listgroupitem--odd__background: transparent;
|
|
2784
|
-
:root {
|
|
1945
|
+
--ab-cmp-listgroupitem--odd__background: transparent;
|
|
1946
|
+
}:root {
|
|
2785
1947
|
--rdp-cell-size: var(--ab-cmp-datepicker__cell-size);
|
|
2786
1948
|
--rdp-accent-color: var(--ab-cmp-datepicker__selected-color);
|
|
2787
1949
|
--rdp-background-color: var(--ab-cmp-datepicker__hover-color);
|
|
2788
|
-
--rdp-outline: 2px solid var(--ab-cmp-datepicker__selected-color);
|
|
2789
|
-
.ab-Datepicker-Overlay {
|
|
1950
|
+
--rdp-outline: 2px solid var(--ab-cmp-datepicker__selected-color);
|
|
1951
|
+
}.ab-Datepicker-Overlay {
|
|
2790
1952
|
border: var(--ab-cmp-datepicker__border);
|
|
2791
1953
|
background: var(--ab-cmp-datepicker__background);
|
|
2792
1954
|
z-index: 1000;
|
|
2793
1955
|
box-shadow: var(--ab-focus__box-shadow);
|
|
2794
1956
|
outline: var(--ab-focus__outline);
|
|
2795
|
-
border-radius: var(--ab__border-radius);
|
|
2796
|
-
.ab-Datepicker-Overlay .rdp {
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
.ab-Datepicker-Overlay .rdp .rdp-weeknumber,
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
.ab-Datepicker-Overlay .rdp .rdp-day_selected:not([disabled]),
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
.ab-Datepicker-Overlay .rdp .rdp-caption_label {
|
|
2809
|
-
|
|
2810
|
-
.ab-Datepicker-Overlay .rdp .rdp-nav_button {
|
|
2811
|
-
|
|
2812
|
-
.ab-Datepicker-Overlay .rdp .rdp-table {
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
.ab-Datepicker-Overlay .rdp .rdp-day_outside {
|
|
2816
|
-
|
|
2817
|
-
.ab-Datepicker-Overlay .rdp .rdp-day_today {
|
|
2818
|
-
|
|
2819
|
-
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(8),
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
.ab-Datepicker-Overlay .rdp.rdp-with_weeknumber .rdp-row td:nth-child(8) {
|
|
2828
|
-
|
|
2829
|
-
.ab-ToggleButton {
|
|
1957
|
+
border-radius: var(--ab__border-radius);
|
|
1958
|
+
}.ab-Datepicker-Overlay .rdp {
|
|
1959
|
+
font-size: var(--ab-cmp-datepicker__font-size);
|
|
1960
|
+
font-family: var(--ab-cmp-datepicker__font-family);
|
|
1961
|
+
}.ab-Datepicker-Overlay .rdp .rdp-weeknumber,
|
|
1962
|
+
.ab-Datepicker-Overlay .rdp .rdp-day {
|
|
1963
|
+
border-radius: var(--ab-cmp-datepicker__day-border-radius);
|
|
1964
|
+
}.ab-Datepicker-Overlay .rdp .rdp-day_selected:not([disabled]),
|
|
1965
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_selected:focus:not([disabled]),
|
|
1966
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_selected:active:not([disabled]),
|
|
1967
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_selected:hover:not([disabled]) {
|
|
1968
|
+
color: var(--ab-cmp-datepicker__selected-text-color);
|
|
1969
|
+
border-radius: var(--ab-cmp-datepicker__selected-border-radius);
|
|
1970
|
+
}.ab-Datepicker-Overlay .rdp .rdp-caption_label {
|
|
1971
|
+
font-size: 120%;
|
|
1972
|
+
}.ab-Datepicker-Overlay .rdp .rdp-nav_button {
|
|
1973
|
+
color: var(--ab-color-text-on-primary);
|
|
1974
|
+
}.ab-Datepicker-Overlay .rdp .rdp-table {
|
|
1975
|
+
width: 100%;
|
|
1976
|
+
max-width: none;
|
|
1977
|
+
}.ab-Datepicker-Overlay .rdp .rdp-day_outside {
|
|
1978
|
+
opacity: 0.4;
|
|
1979
|
+
}.ab-Datepicker-Overlay .rdp .rdp-day_today {
|
|
1980
|
+
border: var(--rdp-outline);
|
|
1981
|
+
}.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(8),
|
|
1982
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(9),
|
|
1983
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(10),
|
|
1984
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(11),
|
|
1985
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(12),
|
|
1986
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(13),
|
|
1987
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(14) {
|
|
1988
|
+
display: none;
|
|
1989
|
+
}.ab-Datepicker-Overlay .rdp.rdp-with_weeknumber .rdp-row td:nth-child(8) {
|
|
1990
|
+
display: table-cell;
|
|
1991
|
+
}.ab-ToggleButton {
|
|
1992
|
+
user-select: none;
|
|
2830
1993
|
position: relative;
|
|
2831
1994
|
display: inline-block;
|
|
2832
1995
|
min-width: 40px;
|
|
2833
1996
|
width: 77px;
|
|
2834
|
-
height: 32px;
|
|
2835
|
-
.ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
.ab-ToggleButton__input {
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
.ab-ToggleButton__slider {
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
.ab-ToggleButton__slider:before {
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider {
|
|
2863
|
-
|
|
2864
|
-
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
|
|
2865
|
-
|
|
2866
|
-
.ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
|
|
2867
|
-
|
|
2868
|
-
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
2869
|
-
|
|
2870
|
-
.ab-ToggleButton .ab-ToggleButton__text {
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
.ab-ToggleButton--checked .ab-ToggleButton__text {
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
.ab-Loader {
|
|
1997
|
+
height: 32px;
|
|
1998
|
+
}.ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
|
|
1999
|
+
cursor: pointer;
|
|
2000
|
+
opacity: 0.85;
|
|
2001
|
+
}.ab-ToggleButton__input {
|
|
2002
|
+
opacity: 0;
|
|
2003
|
+
width: 0;
|
|
2004
|
+
height: 0;
|
|
2005
|
+
}.ab-ToggleButton__slider {
|
|
2006
|
+
position: absolute;
|
|
2007
|
+
top: 0;
|
|
2008
|
+
left: 0;
|
|
2009
|
+
right: 0;
|
|
2010
|
+
bottom: 0;
|
|
2011
|
+
background-color: var(--ab-cmp-toggle-button__background);
|
|
2012
|
+
transition: 0.1s;
|
|
2013
|
+
border-radius: var(--ab__border-radius);
|
|
2014
|
+
}.ab-ToggleButton__slider:before {
|
|
2015
|
+
position: absolute;
|
|
2016
|
+
content: "";
|
|
2017
|
+
width: 24px;
|
|
2018
|
+
height: 24px;
|
|
2019
|
+
left: 4px;
|
|
2020
|
+
top: 4px;
|
|
2021
|
+
border-radius: var(--ab__border-radius);
|
|
2022
|
+
background-color: #fff;
|
|
2023
|
+
-webkit-transition: 0.4s;
|
|
2024
|
+
transition: 0.2s;
|
|
2025
|
+
}.ab-ToggleButton__input:checked + .ab-ToggleButton__slider {
|
|
2026
|
+
background-color: var(--ab-cmp-toggle-button--active__background);
|
|
2027
|
+
}.ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
|
|
2028
|
+
transform: translateX(45px);
|
|
2029
|
+
}.ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
|
|
2030
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2031
|
+
}.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
2032
|
+
opacity: 0.5;
|
|
2033
|
+
}.ab-ToggleButton .ab-ToggleButton__text {
|
|
2034
|
+
font-size: var(--ab-cmp-toggle-button__font-size);
|
|
2035
|
+
padding-right: var(--ab-space-2);
|
|
2036
|
+
color: var(--ab-cmp-toggle-button__color);
|
|
2037
|
+
font-weight: 600;
|
|
2038
|
+
}.ab-ToggleButton--checked .ab-ToggleButton__text {
|
|
2039
|
+
padding-left: var(--ab-space-2);
|
|
2040
|
+
color: var(--ab-cmp-toggle-button--checked__color);
|
|
2041
|
+
}.ab-Loader {
|
|
2879
2042
|
font-size: var(--ab-cmp-loader__font-size);
|
|
2880
2043
|
margin-top: 8px;
|
|
2881
|
-
font-style: italic;
|
|
2882
|
-
.ab-Loader__text,
|
|
2883
|
-
.ab-Loader__Spinner {
|
|
2884
|
-
vertical-align: middle; }
|
|
2885
|
-
.ab-Loader .ab-Loader__Spinner {
|
|
2886
|
-
margin-right: 5px; }
|
|
2044
|
+
font-style: italic;
|
|
2045
|
+
}.ab-Loader__text,
|
|
2887
2046
|
.ab-Loader__Spinner {
|
|
2047
|
+
vertical-align: middle;
|
|
2048
|
+
}.ab-Loader .ab-Loader__Spinner {
|
|
2049
|
+
margin-right: 5px;
|
|
2050
|
+
}.ab-Loader__Spinner {
|
|
2888
2051
|
display: inline-block;
|
|
2889
2052
|
border-radius: 50%;
|
|
2890
2053
|
border: 2px solid var(--ab-cmp-loader__background);
|
|
@@ -2892,13 +2055,15 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2892
2055
|
width: 10px;
|
|
2893
2056
|
height: 10px;
|
|
2894
2057
|
bottom: 0;
|
|
2895
|
-
animation: spin 1.5s linear infinite;
|
|
2896
|
-
@keyframes spin {
|
|
2058
|
+
animation: spin 1.5s linear infinite;
|
|
2059
|
+
}@keyframes spin {
|
|
2897
2060
|
0% {
|
|
2898
|
-
transform: rotate(0deg);
|
|
2061
|
+
transform: rotate(0deg);
|
|
2062
|
+
}
|
|
2899
2063
|
100% {
|
|
2900
|
-
transform: rotate(360deg);
|
|
2901
|
-
|
|
2064
|
+
transform: rotate(360deg);
|
|
2065
|
+
}
|
|
2066
|
+
}.ab-progress-indicator-wrapper {
|
|
2902
2067
|
align-items: center;
|
|
2903
2068
|
display: flex;
|
|
2904
2069
|
justify-content: center;
|
|
@@ -2911,40 +2076,40 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2911
2076
|
opacity: 0;
|
|
2912
2077
|
transition-delay: var(--ab-cmp-progress-indicator__delay);
|
|
2913
2078
|
transition-property: opacity;
|
|
2914
|
-
transition-duration: 0.3s;
|
|
2915
|
-
.ab-progress-indicator-wrapper--visible {
|
|
2916
|
-
|
|
2917
|
-
.ab-progress-indicator-wrapper .ab-progress-indicator-body {
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
:root {
|
|
2929
|
-
--ab-cmp-Tag__font-size: var(--ab-font-size-3);
|
|
2930
|
-
.ab-Tag {
|
|
2079
|
+
transition-duration: 0.3s;
|
|
2080
|
+
}.ab-progress-indicator-wrapper--visible {
|
|
2081
|
+
opacity: 1;
|
|
2082
|
+
}.ab-progress-indicator-wrapper .ab-progress-indicator-body {
|
|
2083
|
+
padding: var(--ab-cmp-progress-indicator__padding);
|
|
2084
|
+
background: var(--ab-cmp-progress-indicator__background);
|
|
2085
|
+
color: var(--ab-cmp-progress-indicator__color);
|
|
2086
|
+
border-style: none;
|
|
2087
|
+
border-width: 0px;
|
|
2088
|
+
border-radius: var(--ab__border-radius);
|
|
2089
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2090
|
+
font-size: var(--ab-cmp-progress-indicator__font-size);
|
|
2091
|
+
font-style: var(--ab-cmp-progress-indicator__font-style);
|
|
2092
|
+
font-family: var(--ab-cmp-progress-indicator__font-family);
|
|
2093
|
+
}:root {
|
|
2094
|
+
--ab-cmp-Tag__font-size: var(--ab-font-size-3);
|
|
2095
|
+
}.ab-Tag {
|
|
2931
2096
|
display: inline-flex;
|
|
2932
2097
|
font-size: var(--ab-cmp-Tag__font-size);
|
|
2933
|
-
max-width: 100%;
|
|
2934
|
-
.ab-ModuleSelector__TabItem {
|
|
2098
|
+
max-width: 100%;
|
|
2099
|
+
}.ab-ModuleSelector__TabItem {
|
|
2935
2100
|
display: flex;
|
|
2936
2101
|
flex-direction: column;
|
|
2937
2102
|
box-sizing: border-box;
|
|
2938
2103
|
margin-right: var(--ab-space-2);
|
|
2939
2104
|
width: var(--ab-cmp-module-module-selector__tab-item__width);
|
|
2940
2105
|
border: var(--ab-cmp-module-module-selector__tab-item__border);
|
|
2941
|
-
border-radius: var(--ab-cmp-module-module-selector__tab-item__border-radius);
|
|
2942
|
-
.ab-ModuleSelector__TabItem__header {
|
|
2106
|
+
border-radius: var(--ab-cmp-module-module-selector__tab-item__border-radius);
|
|
2107
|
+
}.ab-ModuleSelector__TabItem__header {
|
|
2943
2108
|
display: flex;
|
|
2944
2109
|
align-items: center;
|
|
2945
2110
|
padding: var(--ab-space-1);
|
|
2946
|
-
border-bottom: var(--ab-cmp-module-module-selector__tab-item__border);
|
|
2947
|
-
.ab-ModuleSelector__TabItem__header-input {
|
|
2111
|
+
border-bottom: var(--ab-cmp-module-module-selector__tab-item__border);
|
|
2112
|
+
}.ab-ModuleSelector__TabItem__header-input {
|
|
2948
2113
|
flex: 1;
|
|
2949
2114
|
width: 100%;
|
|
2950
2115
|
margin-left: var(--ab-space-1);
|
|
@@ -2952,198 +2117,287 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2952
2117
|
align-self: stretch;
|
|
2953
2118
|
background: transparent;
|
|
2954
2119
|
border: none;
|
|
2955
|
-
color: var(--ab-cmp-module-module-selector__tab-item__header-input__color);
|
|
2956
|
-
.ab-ModuleSelector__ToolbarList {
|
|
2120
|
+
color: var(--ab-cmp-module-module-selector__tab-item__header-input__color);
|
|
2121
|
+
}.ab-ModuleSelector__ToolbarList {
|
|
2957
2122
|
flex: 1;
|
|
2958
2123
|
padding: 4px;
|
|
2959
2124
|
padding-bottom: 0;
|
|
2960
|
-
min-height: 200px;
|
|
2961
|
-
.ab-ModuleSelector__ToolbarItem {
|
|
2125
|
+
min-height: 200px;
|
|
2126
|
+
}.ab-ModuleSelector__ToolbarItem {
|
|
2962
2127
|
border: var(--ab-cmp-module-module-selector__toolbar-item__border);
|
|
2963
|
-
|
|
2964
|
-
margin-bottom: var(--ab-space-1); }
|
|
2965
|
-
.ab-ModuleSelector__UnusedPanel {
|
|
2966
|
-
margin-bottom: var(--ab-space-2);
|
|
2967
|
-
padding-bottom: var(--ab-space-1);
|
|
2128
|
+
}.ab-ModuleSelector__UnusedPanel {
|
|
2968
2129
|
border: var(--ab-cmp-module-selector__unused-panel__border);
|
|
2969
2130
|
border-radius: var(--ab-cmp-module-selector__unused-panel__border-radius);
|
|
2970
|
-
background-color: var(--ab-cmp-module-selector__unused-panel__background);
|
|
2971
|
-
.ab-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2131
|
+
background-color: var(--ab-cmp-module-selector__unused-panel__background);
|
|
2132
|
+
}.ab-ColorPicker-range {
|
|
2133
|
+
/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
|
|
2134
|
+
how to remove the virtical space around the range & in IE*/
|
|
2135
|
+
}.ab-ColorPicker-range[type=range] {
|
|
2136
|
+
width: 120px;
|
|
2137
|
+
margin: 0px 0;
|
|
2138
|
+
height: 20px;
|
|
2139
|
+
padding: 0;
|
|
2140
|
+
background-color: transparent;
|
|
2141
|
+
-webkit-appearance: none;
|
|
2142
|
+
}.ab-ColorPicker-range[type=range]:focus {
|
|
2143
|
+
outline: none;
|
|
2144
|
+
}.ab-ColorPicker-range[type=range]::-webkit-slider-runnable-track {
|
|
2145
|
+
background: none;
|
|
2146
|
+
border: 0;
|
|
2147
|
+
width: 100%;
|
|
2148
|
+
height: 20px;
|
|
2149
|
+
cursor: pointer;
|
|
2150
|
+
}.ab-ColorPicker-range[type=range]::-webkit-slider-thumb {
|
|
2151
|
+
margin-top: 0px;
|
|
2152
|
+
width: 20px;
|
|
2153
|
+
height: 20px;
|
|
2154
|
+
background: #ffffff;
|
|
2155
|
+
border: 1px solid #000000;
|
|
2156
|
+
border-radius: 20px;
|
|
2157
|
+
cursor: pointer;
|
|
2158
|
+
-webkit-appearance: none;
|
|
2159
|
+
}.ab-ColorPicker-range[type=range]:focus::-webkit-slider-runnable-track {
|
|
2160
|
+
background: none;
|
|
2161
|
+
}.ab-ColorPicker-range[type=range]::-moz-range-track {
|
|
2162
|
+
background: none;
|
|
2163
|
+
border: 0;
|
|
2164
|
+
width: 100%;
|
|
2165
|
+
height: 20px;
|
|
2166
|
+
cursor: pointer;
|
|
2167
|
+
}.ab-ColorPicker-range[type=range]::-moz-range-thumb {
|
|
2168
|
+
width: 20px;
|
|
2169
|
+
height: 20px;
|
|
2170
|
+
background: #ffffff;
|
|
2171
|
+
border: 1px solid #000000;
|
|
2172
|
+
border-radius: 20px;
|
|
2173
|
+
cursor: pointer;
|
|
2174
|
+
}.ab-ColorPicker-range[type=range]::-ms-track {
|
|
2175
|
+
background: transparent;
|
|
2176
|
+
border-color: transparent;
|
|
2177
|
+
border-width: 1px 0;
|
|
2178
|
+
color: transparent;
|
|
2179
|
+
width: 100%;
|
|
2180
|
+
height: 20px;
|
|
2181
|
+
cursor: pointer;
|
|
2182
|
+
}.ab-ColorPicker-range[type=range]::-ms-fill-lower {
|
|
2183
|
+
background: #43429e;
|
|
2184
|
+
border: 0;
|
|
2185
|
+
}.ab-ColorPicker-range[type=range]::-ms-fill-upper {
|
|
2186
|
+
background: none;
|
|
2187
|
+
border: 0;
|
|
2188
|
+
}.ab-ColorPicker-range[type=range]::-ms-thumb {
|
|
2189
|
+
width: 20px;
|
|
2190
|
+
height: 20px;
|
|
2191
|
+
background: #ffffff;
|
|
2192
|
+
border: 1px solid #000000;
|
|
2193
|
+
border-radius: 20px;
|
|
2194
|
+
cursor: pointer;
|
|
2195
|
+
margin-top: 0px;
|
|
2196
|
+
/*Needed to keep the Edge thumb centred*/
|
|
2197
|
+
}.ab-ColorPicker-range[type=range]:focus::-ms-fill-lower {
|
|
2198
|
+
background: none;
|
|
2199
|
+
}.ab-ColorPicker-range[type=range]:focus::-ms-fill-upper {
|
|
2200
|
+
background: none;
|
|
2201
|
+
}@supports (-ms-ime-align: auto) {
|
|
2202
|
+
.ab-ColorPicker-range {
|
|
2203
|
+
/* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
|
|
2204
|
+
}
|
|
2205
|
+
.ab-ColorPicker-range[type=range] {
|
|
2206
|
+
margin: 0;
|
|
2207
|
+
/*Edge starts the margin from the thumb, not the track as other browsers do*/
|
|
2208
|
+
}
|
|
2209
|
+
}.ab-AdaptableOptions {
|
|
2210
|
+
background: var(--ab-cmp-adaptable-options__background-color);
|
|
2211
|
+
}.ab-GridOptions {
|
|
2212
|
+
background: var(--ab-cmp-grid-options__background-color);
|
|
2213
|
+
}.ab-GridSummary {
|
|
2214
|
+
background: var(--ab-cmp-grid-summary__background-color);
|
|
2215
|
+
}.ab-SystemStatus-Popup-List {
|
|
2216
|
+
background: var(--ab-cmp-system-status-list__background-color);
|
|
2217
|
+
}.ab-DashboardToolbar__SystemStatus__text {
|
|
2218
|
+
border-radius: var(--ab-cmp-system-status-list-text__border-radius);
|
|
2219
|
+
font-weight: var(--ab-cmp-system-status-list-text__font-weight);
|
|
2220
|
+
font-size: var(--ab-cmp-system-status-list-text__font-size);
|
|
2221
|
+
color: var(--ab-cmp-system-status-list-text__color);
|
|
2222
|
+
padding: var(--ab-cmp-system-status-list-text__padding);
|
|
2223
|
+
margin-right: var(--ab-space-2);
|
|
2224
|
+
}.ab-DashboardToolbar__SystemStatus__text--expandable {
|
|
2225
|
+
cursor: pointer;
|
|
2226
|
+
}.ab-DashboardToolbar__SystemStatus__further-information {
|
|
2227
|
+
white-space: normal;
|
|
2228
|
+
}.ab-ObjectCollection__list > * {
|
|
2980
2229
|
background: var(--ab-cmp-listgroupitem__background);
|
|
2981
|
-
color: var(--ab-cmp-listgroupitem__color);
|
|
2982
|
-
.ab-ObjectCollection__list > *:nth-child(2n
|
|
2230
|
+
color: var(--ab-cmp-listgroupitem__color);
|
|
2231
|
+
}.ab-ObjectCollection__list > *:nth-child(2n+1) {
|
|
2983
2232
|
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
2984
|
-
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
2985
|
-
.ab-AdaptableObjectRow {
|
|
2233
|
+
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
2234
|
+
}.ab-AdaptableObjectRow {
|
|
2986
2235
|
align-items: center;
|
|
2987
2236
|
padding: var(--ab-cmp-listgroupitem__padding);
|
|
2988
2237
|
margin: var(--ab-cmp-listgroupitem__margin);
|
|
2989
2238
|
background: var(--ab-cmp-listgroupitem__background);
|
|
2990
2239
|
color: var(--ab-cmp-listgroupitem__color);
|
|
2991
|
-
border-radius: var(--ab-cmp-listgroupitem__border-radius);
|
|
2992
|
-
.ab-AdaptableObjectRow:nth-child(2n
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
.ab-AdaptableObjectRow--is-suspended {
|
|
2996
|
-
|
|
2997
|
-
.ab-
|
|
2240
|
+
border-radius: var(--ab-cmp-listgroupitem__border-radius);
|
|
2241
|
+
}.ab-AdaptableObjectRow:nth-child(2n+1) {
|
|
2242
|
+
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
2243
|
+
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
2244
|
+
}.ab-AdaptableObjectRow--is-suspended {
|
|
2245
|
+
text-decoration: line-through;
|
|
2246
|
+
}.ab-AdaptableObjectRow__cell {
|
|
2247
|
+
white-space: nowrap;
|
|
2248
|
+
text-overflow: ellipsis;
|
|
2249
|
+
overflow: hidden;
|
|
2250
|
+
font-size: var(--ab-cmp-listgroupitem-cell__font-size);
|
|
2251
|
+
}.ab-ListBoxFilterForm {
|
|
2998
2252
|
overflow-y: auto;
|
|
2999
2253
|
overflow-x: hidden;
|
|
3000
2254
|
--ab-grid-row-height: 26px;
|
|
3001
|
-
margin-bottom: 0;
|
|
3002
|
-
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
3003
|
-
|
|
3004
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
|
|
2255
|
+
margin-bottom: 0;
|
|
2256
|
+
}.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
2257
|
+
overflow-x: hidden;
|
|
2258
|
+
}.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
|
|
3005
2259
|
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style {
|
|
3006
2260
|
--ab-cmp-dropdown__border-radius: 0;
|
|
3007
2261
|
--ab-cmp-input__border-radius: 0;
|
|
3008
2262
|
--ab-cmp-input__padding: 0;
|
|
3009
2263
|
--ab-cmp-dropdown__padding: 3px;
|
|
3010
|
-
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent);
|
|
3011
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap,
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
2264
|
+
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent);
|
|
2265
|
+
}.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap,
|
|
2266
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap {
|
|
2267
|
+
border-radius: 0;
|
|
2268
|
+
}html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
3015
2269
|
--ab-color-inputborder: white;
|
|
3016
|
-
--ab-cmp-dropdown__border: 1px solid white;
|
|
3017
|
-
.ab-Popover {
|
|
2270
|
+
--ab-cmp-dropdown__border: 1px solid white;
|
|
2271
|
+
}.ab-Popover {
|
|
3018
2272
|
border-radius: var(--ab-cmp-popover__border-radius);
|
|
3019
2273
|
border: var(--ab-cmp-popover__border);
|
|
3020
2274
|
background: var(--ab-cmp-popover__background);
|
|
3021
2275
|
color: var(--ab-cmp-popover__color);
|
|
3022
2276
|
box-shadow: var(--ab-cmp-popover__box-shadow);
|
|
3023
2277
|
font-size: var(--ab-font-size-2);
|
|
3024
|
-
font-family: var(--ab__font-family);
|
|
3025
|
-
.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
3026
|
-
content:
|
|
2278
|
+
font-family: var(--ab__font-family);
|
|
2279
|
+
}.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
2280
|
+
content: "";
|
|
3027
2281
|
position: absolute;
|
|
3028
2282
|
width: 0;
|
|
3029
2283
|
height: 0;
|
|
3030
|
-
border-style: solid;
|
|
3031
|
-
.ab-Overlay--position-bottom.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
2284
|
+
border-style: solid;
|
|
2285
|
+
}.ab-Overlay--position-bottom.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
3032
2286
|
border-width: 0 5px 10px 5px;
|
|
3033
2287
|
border-color: transparent transparent var(--ab-cmp-popover__background) transparent;
|
|
3034
2288
|
left: 50%;
|
|
3035
2289
|
top: -10px;
|
|
3036
|
-
transform: translate3d(-5px, 0px, 0px);
|
|
3037
|
-
.ab-Overlay--position-top.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
2290
|
+
transform: translate3d(-5px, 0px, 0px);
|
|
2291
|
+
}.ab-Overlay--position-top.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
3038
2292
|
border-width: 10px 5px 0 5px;
|
|
3039
2293
|
border-color: var(--ab-cmp-popover__background) transparent transparent transparent;
|
|
3040
2294
|
left: 50%;
|
|
3041
2295
|
bottom: -10px;
|
|
3042
|
-
transform: translate3d(-5px, 0px, 0px);
|
|
3043
|
-
.ab-NocodeWizard {
|
|
2296
|
+
transform: translate3d(-5px, 0px, 0px);
|
|
2297
|
+
}.ab-NocodeWizard {
|
|
3044
2298
|
padding: var(--ab-cmp-wizard__padding);
|
|
3045
2299
|
margin: var(--ab-cmp-wizard__margin);
|
|
3046
2300
|
background: var(--ab-cmp-wizard__background);
|
|
3047
2301
|
color: var(--ab-cmp-wizard__color);
|
|
3048
|
-
height: 100%;
|
|
3049
|
-
.ab-NocodeWizard,
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
.ab-NocodeWizardFormBox {
|
|
2302
|
+
height: 100%;
|
|
2303
|
+
}.ab-NocodeWizard,
|
|
2304
|
+
.ab-NocodeWizard *,
|
|
2305
|
+
.ab-NocodeWizard *:before,
|
|
2306
|
+
.ab-NocodeWizard *:after {
|
|
2307
|
+
box-sizing: border-box;
|
|
2308
|
+
}.ab-NocodeWizardFormBox {
|
|
3055
2309
|
border: 1px solid var(--ab-color-primarydark);
|
|
3056
2310
|
border-radius: var(--ab__border-radius);
|
|
3057
|
-
background-color: var(--ab-color-defaultbackground);
|
|
3058
|
-
.ab-AvailableDropZone .placeholder,
|
|
2311
|
+
background-color: var(--ab-color-defaultbackground);
|
|
2312
|
+
}.ab-AvailableDropZone .placeholder,
|
|
3059
2313
|
.ab-SelectedDropZone .placeholder {
|
|
3060
|
-
width: 100%;
|
|
3061
|
-
.ab-AvailableDropZone .placeholder:before,
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
.ab-Button.ab-Button {
|
|
2314
|
+
width: 100%;
|
|
2315
|
+
}.ab-AvailableDropZone .placeholder:before,
|
|
2316
|
+
.ab-SelectedDropZone .placeholder:before {
|
|
2317
|
+
content: "DROPS HERE";
|
|
2318
|
+
}.ab-Button.ab-Button {
|
|
3065
2319
|
border-radius: var(--ab-cmp-button-border-radius);
|
|
3066
|
-
padding: var(--ab-space-2);
|
|
3067
|
-
.ab-Button.ab-Button--enabled {
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
.ab-Button.ab-Button--disabled {
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
.ab-DashboardPanel .ab-CheckBox:not(.ab-dd-checkbox),
|
|
2320
|
+
padding: var(--ab-space-2);
|
|
2321
|
+
}.ab-Button.ab-Button--enabled {
|
|
2322
|
+
cursor: pointer;
|
|
2323
|
+
background: var(--ab-cmp-button-background);
|
|
2324
|
+
}.ab-Button.ab-Button--disabled {
|
|
2325
|
+
opacity: var(--ab-cmp-button-disabled-opacity);
|
|
2326
|
+
background: var(--ab-cmp-button-disabled-background);
|
|
2327
|
+
}.ab-DashboardPanel .ab-CheckBox:not(.ab-dd-checkbox),
|
|
3074
2328
|
.ab-DashboardPanel .ab-SimpleButton.ab-SimpleButton--tone-neutral:not(.ab-DropdownButton) {
|
|
3075
2329
|
fill: currentColor;
|
|
3076
2330
|
color: var(--ab-cmp-dashboardpanel_header__color);
|
|
3077
|
-
border-color: currentColor;
|
|
3078
|
-
.ab-DashboardPanel .glyphicon.glyphicon {
|
|
3079
|
-
color: var(--ab-cmp-dashboardpanel__fill);
|
|
3080
|
-
.ab-FilterFormPanel {
|
|
3081
|
-
--ab-cmp-panel_body__background: var(--ag-control-panel-background-color);
|
|
3082
|
-
.ab-Dashboard__application-icon {
|
|
3083
|
-
margin-right: var(--ab-space-2);
|
|
3084
|
-
.ab-Dashboard-Popup__Module-Selector {
|
|
3085
|
-
background: var(--ab-cmp-dashboard-module-selector-background);
|
|
3086
|
-
.ab-ToolPanel {
|
|
2331
|
+
border-color: currentColor;
|
|
2332
|
+
}.ab-DashboardPanel .glyphicon.glyphicon {
|
|
2333
|
+
color: var(--ab-cmp-dashboardpanel__fill);
|
|
2334
|
+
}.ab-FilterFormPanel {
|
|
2335
|
+
--ab-cmp-panel_body__background: var(--ag-control-panel-background-color);
|
|
2336
|
+
}.ab-Dashboard__application-icon {
|
|
2337
|
+
margin-right: var(--ab-space-2);
|
|
2338
|
+
}.ab-Dashboard-Popup__Module-Selector {
|
|
2339
|
+
background: var(--ab-cmp-dashboard-module-selector-background);
|
|
2340
|
+
}.ab-ToolPanel {
|
|
3087
2341
|
flex: 1 1 0;
|
|
3088
2342
|
min-width: 0;
|
|
3089
2343
|
color: var(--ab-cmp-toolpanel__color);
|
|
3090
|
-
font-family: var(--ab-cmp-toolpanel__font-family);
|
|
3091
|
-
.ab-ToolPanel .ab-ToolPanel__header {
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
.ab-ToolPanel .ab-ToolPanel__header__buttons {
|
|
3095
|
-
|
|
3096
|
-
.ab-ToolPanel .ab-ToolPanel__custom-content__buttons {
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
.ab-ToolPanel .ab-StateManagement__Clear-Button,
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
.ab-ToolPanel .ab-StateManagement__Clear-Button,
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
3110
|
-
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size);
|
|
3111
|
-
.ab-Adaptable-Popup {
|
|
2344
|
+
font-family: var(--ab-cmp-toolpanel__font-family);
|
|
2345
|
+
}.ab-ToolPanel .ab-ToolPanel__header {
|
|
2346
|
+
background: var(--ab-cmp-toolpanel-header__background);
|
|
2347
|
+
color: var(--ab-cmp-toolpanel-header__color);
|
|
2348
|
+
}.ab-ToolPanel .ab-ToolPanel__header__buttons {
|
|
2349
|
+
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap);
|
|
2350
|
+
}.ab-ToolPanel .ab-ToolPanel__custom-content__buttons {
|
|
2351
|
+
display: flex;
|
|
2352
|
+
flex-direction: row;
|
|
2353
|
+
flex-wrap: wrap;
|
|
2354
|
+
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap);
|
|
2355
|
+
}.ab-ToolPanel .ab-StateManagement__Clear-Button,
|
|
2356
|
+
.ab-ToolPanel .ab-StateManagement__Load-Button {
|
|
2357
|
+
justify-content: center;
|
|
2358
|
+
flex: 1;
|
|
2359
|
+
}.ab-ToolPanel .ab-StateManagement__Clear-Button,
|
|
2360
|
+
.ab-ToolPanel .ab-StateManagement__Load-Button,
|
|
2361
|
+
.ab-ToolPanel .ab-StateManagement__Export-Dropdown {
|
|
2362
|
+
margin-bottom: var(--ab-space-1);
|
|
2363
|
+
}.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
2364
|
+
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size);
|
|
2365
|
+
}.ab-Adaptable-Popup {
|
|
3112
2366
|
background: var(--ab-cmp-adaptable-popup__background);
|
|
3113
|
-
max-height: var(--ab-cmp-adaptable-popup__max-height);
|
|
3114
|
-
.ab-Adaptable-Popup--window {
|
|
3115
|
-
|
|
3116
|
-
.ab-Adaptable-Popup__Navigation {
|
|
2367
|
+
max-height: var(--ab-cmp-adaptable-popup__max-height);
|
|
2368
|
+
}.ab-Adaptable-Popup--window {
|
|
2369
|
+
box-shadow: var(--ab-cmp-adaptable-popup__box-shadow);
|
|
2370
|
+
}.ab-Adaptable-Popup__Navigation {
|
|
3117
2371
|
padding-top: 10px;
|
|
3118
2372
|
overflow: auto;
|
|
3119
2373
|
border-right: var(--ab-cmp-adaptable-popup-navigation-list__border-right);
|
|
3120
|
-
font-family: var(--ab__font-family);
|
|
3121
|
-
.ab-Adaptable-Popup__Navigation__List {
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
.ab-Adaptable-Popup__Navigation__List__Item {
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
.ab-Adaptable-Popup__Navigation__List__Item__Separator {
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
.ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
.ab-Adaptable-Popup__Navigation__List__Item__Icon {
|
|
3142
|
-
|
|
3143
|
-
.ab-Adaptable-Popup__Navigation__List__Item--active .ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
.ab-Adaptable-Popup__TopBar {
|
|
2374
|
+
font-family: var(--ab__font-family);
|
|
2375
|
+
}.ab-Adaptable-Popup__Navigation__List {
|
|
2376
|
+
list-style: none;
|
|
2377
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list__padding);
|
|
2378
|
+
margin: 0;
|
|
2379
|
+
font-size: var(--ab-cmp-adaptable-popup-navigation-list__font-size);
|
|
2380
|
+
}.ab-Adaptable-Popup__Navigation__List__Item {
|
|
2381
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item__padding);
|
|
2382
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom);
|
|
2383
|
+
}.ab-Adaptable-Popup__Navigation__List__Item__Separator {
|
|
2384
|
+
border-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__border);
|
|
2385
|
+
margin: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__margin);
|
|
2386
|
+
}.ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
2387
|
+
background: none;
|
|
2388
|
+
border: none;
|
|
2389
|
+
width: 100%;
|
|
2390
|
+
text-align: left;
|
|
2391
|
+
cursor: pointer;
|
|
2392
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item-button__padding);
|
|
2393
|
+
border-radius: var(--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius);
|
|
2394
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__color);
|
|
2395
|
+
}.ab-Adaptable-Popup__Navigation__List__Item__Icon {
|
|
2396
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right);
|
|
2397
|
+
}.ab-Adaptable-Popup__Navigation__List__Item--active .ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
2398
|
+
background: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--active);
|
|
2399
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--color);
|
|
2400
|
+
}.ab-Adaptable-Popup__TopBar {
|
|
3147
2401
|
display: flex;
|
|
3148
2402
|
align-items: center;
|
|
3149
2403
|
background: var(--ab-cmp-adaptable-popup-topbar__background);
|
|
@@ -3151,196 +2405,236 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3151
2405
|
color: var(--ab-cmp-adaptable-popup-topbar__color);
|
|
3152
2406
|
font-weight: var(--ab-cmp-adaptable-popup-topbar__font-weight);
|
|
3153
2407
|
padding: var(--ab-cmp-adaptable-popup-topbar__padding);
|
|
3154
|
-
box-sizing: border-box;
|
|
3155
|
-
.ab-Adaptable-Popup__TopBar__Icon {
|
|
3156
|
-
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right);
|
|
3157
|
-
.ab-Adaptable-Popup__TopBar__Close .ab-Icon {
|
|
3158
|
-
color: var(--ab-cmp-adaptable-popup-topbar-icon__color);
|
|
3159
|
-
.ab-Adaptable-Popup--settings-popup {
|
|
3160
|
-
height: var(--ab-cmp-adaptable-popup--settings__height);
|
|
3161
|
-
.ab-Adaptable-Popup--settings-popup .ab-Dialog__close-button {
|
|
3162
|
-
|
|
3163
|
-
.ab-Adaptable-Popup--settings-popup .ab-Adaptable-Popup__Body {
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
.ab-Adaptable-Popup__Panel {
|
|
3167
|
-
width: 100%;
|
|
3168
|
-
.ab-Adaptable-Popup__Panel__Header {
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
.ab-Adaptable-Popup__Panel__Header__Title {
|
|
3174
|
-
|
|
3175
|
-
.ab-Adaptable-Popup__Panel__Body {
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
.ab-Adaptable-Popup--window .ab-Adaptable-Popup__TopBar {
|
|
3181
|
-
cursor: move;
|
|
3182
|
-
.ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
|
|
3183
|
-
cursor: move;
|
|
3184
|
-
.ab-Window-Modal .ab-Panel__header {
|
|
3185
|
-
cursor: move;
|
|
3186
|
-
.ab-Window-Modal {
|
|
2408
|
+
box-sizing: border-box;
|
|
2409
|
+
}.ab-Adaptable-Popup__TopBar__Icon {
|
|
2410
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right);
|
|
2411
|
+
}.ab-Adaptable-Popup__TopBar__Close .ab-Icon {
|
|
2412
|
+
color: var(--ab-cmp-adaptable-popup-topbar-icon__color);
|
|
2413
|
+
}.ab-Adaptable-Popup--settings-popup {
|
|
2414
|
+
height: var(--ab-cmp-adaptable-popup--settings__height);
|
|
2415
|
+
}.ab-Adaptable-Popup--settings-popup .ab-Dialog__close-button {
|
|
2416
|
+
top: 9px;
|
|
2417
|
+
}.ab-Adaptable-Popup--settings-popup .ab-Adaptable-Popup__Body {
|
|
2418
|
+
padding: var(--ab-cmp-adaptable-popup--settings__padding);
|
|
2419
|
+
min-width: 0;
|
|
2420
|
+
}.ab-Adaptable-Popup__Panel {
|
|
2421
|
+
width: 100%;
|
|
2422
|
+
}.ab-Adaptable-Popup__Panel__Header {
|
|
2423
|
+
display: flex;
|
|
2424
|
+
padding: 0 var(--ab-cmp-adaptable-popup-panel__padding);
|
|
2425
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-panel__margin-bottom);
|
|
2426
|
+
margin-top: var(--ab-cmp-adaptable-popup-panel__margin-top);
|
|
2427
|
+
}.ab-Adaptable-Popup__Panel__Header__Title {
|
|
2428
|
+
font-size: var(--ab-cmp-adaptable-popup-panel-title__font-size);
|
|
2429
|
+
}.ab-Adaptable-Popup__Panel__Body {
|
|
2430
|
+
padding: var(--ab-cmp-adaptable-popup-panel-body__padding);
|
|
2431
|
+
flex: 1 1 0;
|
|
2432
|
+
min-height: 0;
|
|
2433
|
+
overflow: auto;
|
|
2434
|
+
}.ab-Adaptable-Popup--window .ab-Adaptable-Popup__TopBar {
|
|
2435
|
+
cursor: move;
|
|
2436
|
+
}.ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
|
|
2437
|
+
cursor: move;
|
|
2438
|
+
}.ab-Window-Modal .ab-Panel__header {
|
|
2439
|
+
cursor: move;
|
|
2440
|
+
}.ab-Window-Modal {
|
|
3187
2441
|
max-height: 100%;
|
|
3188
|
-
box-shadow: var(--ab-cmp-adaptable-window-popup__box-shadow);
|
|
3189
|
-
.ab-Window-Modal .ab-Dialog__close-button {
|
|
3190
|
-
|
|
3191
|
-
.ab-Window-Modal .ab-Panel {
|
|
3192
|
-
|
|
3193
|
-
.ab-Adaptable-Object-List {
|
|
2442
|
+
box-shadow: var(--ab-cmp-adaptable-window-popup__box-shadow);
|
|
2443
|
+
}.ab-Window-Modal .ab-Dialog__close-button {
|
|
2444
|
+
top: 3px;
|
|
2445
|
+
}.ab-Window-Modal .ab-Panel {
|
|
2446
|
+
max-height: initial;
|
|
2447
|
+
}.ab-Adaptable-Object-List {
|
|
3194
2448
|
list-style: none;
|
|
3195
|
-
padding: 0;
|
|
3196
|
-
.ab-Adaptable-Object-List__Item {
|
|
2449
|
+
padding: 0;
|
|
2450
|
+
}.ab-Adaptable-Object-List__Item {
|
|
3197
2451
|
background-color: var(--ab-cmp-adaptable-object-list-item__background-color);
|
|
3198
2452
|
padding: var(--ab-cmp-adaptable-object-list-item__padding);
|
|
3199
|
-
margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom);
|
|
3200
|
-
.ab-Adaptable-Object-List__Item__edit-property {
|
|
3201
|
-
|
|
3202
|
-
.ab-Adaptable-Object-List__Item__values {
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
.ab-Adaptable-Object-List__Item__buttons {
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
.ab-Adaptable-Object-List__Item__label {
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
.ab-Adaptable-Object-List__Item__label:hover .ab-Adaptable-Object-List__Item__edit-property {
|
|
3214
|
-
|
|
3215
|
-
.ab-Adaptable-Object-List__Item .ab-Tag {
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
.ab-Adaptable-Object-Compact-List {
|
|
2453
|
+
margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom);
|
|
2454
|
+
}.ab-Adaptable-Object-List__Item__edit-property {
|
|
2455
|
+
visibility: hidden;
|
|
2456
|
+
}.ab-Adaptable-Object-List__Item__values {
|
|
2457
|
+
min-width: 0;
|
|
2458
|
+
word-break: break-all;
|
|
2459
|
+
}.ab-Adaptable-Object-List__Item__buttons {
|
|
2460
|
+
padding-left: var(--ab-space-2);
|
|
2461
|
+
min-width: 80px;
|
|
2462
|
+
text-align: right;
|
|
2463
|
+
margin-left: var(--ab-space-3);
|
|
2464
|
+
}.ab-Adaptable-Object-List__Item__label {
|
|
2465
|
+
padding-top: var(--ab-cmp-adaptable-object-list-item-label__padding-top);
|
|
2466
|
+
width: var(--ab-cmp-adaptable-object-list-item-label__width);
|
|
2467
|
+
}.ab-Adaptable-Object-List__Item__label:hover .ab-Adaptable-Object-List__Item__edit-property {
|
|
2468
|
+
visibility: visible;
|
|
2469
|
+
}.ab-Adaptable-Object-List__Item .ab-Tag {
|
|
2470
|
+
margin-right: var(--ab-cmp-adaptable-object-list-tag__margin-right);
|
|
2471
|
+
margin-top: var(--ab-cmp-adaptable-object-list-tag__margin-top);
|
|
2472
|
+
padding: var(--ab-cmp-adaptable-object-list-item-tag__padding);
|
|
2473
|
+
}.ab-Adaptable-Object-Compact-List {
|
|
3220
2474
|
padding: var(--ab-cmp-adaptable-object-compact-list__padding);
|
|
3221
2475
|
background: var(--ab-cmp-adaptable-object-compact-list__background);
|
|
3222
|
-
max-height: 70vh;
|
|
3223
|
-
.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Header {
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Title {
|
|
3227
|
-
|
|
3228
|
-
.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Body {
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Item {
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Item:last-child {
|
|
3236
|
-
|
|
3237
|
-
.ab-Adaptable-Object-Compact-List__Item__Name {
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
.ab-StatusBar {
|
|
2476
|
+
max-height: 70vh;
|
|
2477
|
+
}.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Header {
|
|
2478
|
+
padding: var(--ab-cmp-adaptable-object-compact-list__header__padding);
|
|
2479
|
+
margin-bottom: var(--ab-cmp-adaptable-object-compact-list__header__margin-bottom);
|
|
2480
|
+
}.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Title {
|
|
2481
|
+
font-size: var(--ab-font-size-4);
|
|
2482
|
+
}.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Body {
|
|
2483
|
+
overflow: auto;
|
|
2484
|
+
height: 100%;
|
|
2485
|
+
}.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Item {
|
|
2486
|
+
padding: var(--ab-cmp-adaptable-object-compact-list-item__padding);
|
|
2487
|
+
margin-bottom: var(--ab-cmp-adaptable-object-compact-list-item__margin-bottom);
|
|
2488
|
+
background: var(--ab-cmp-adaptable-object-compact-list-item__background);
|
|
2489
|
+
}.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Item:last-child {
|
|
2490
|
+
margin-bottom: 0;
|
|
2491
|
+
}.ab-Adaptable-Object-Compact-List__Item__Name {
|
|
2492
|
+
width: var(--ab-cmp-adaptable-object-compact-list-item-name__width);
|
|
2493
|
+
padding: var(--ab-cmp-adaptable-object-compact-list-item-name__padding);
|
|
2494
|
+
margin-right: var(--ab-cmp-adaptable-object-compact-list-item-name__margin-right);
|
|
2495
|
+
font-size: var(--ab-cmp-adaptable-object-compact-list-item-name__font-size);
|
|
2496
|
+
}.ab-StatusBar {
|
|
3243
2497
|
display: flex;
|
|
3244
2498
|
border-right: var(--ab-cmp-adaptable-statusbar__border);
|
|
3245
|
-
border-left: var(--ab-cmp-adaptable-statusbar__border);
|
|
3246
|
-
.ab-StatusBar__SubPanel {
|
|
2499
|
+
border-left: var(--ab-cmp-adaptable-statusbar__border);
|
|
2500
|
+
}.ab-StatusBar__SubPanel {
|
|
3247
2501
|
padding: var(--ab-cmp-adaptable-statusbar-sub-panel__padding);
|
|
3248
2502
|
border: 0;
|
|
3249
2503
|
background: none;
|
|
3250
2504
|
font-weight: 400;
|
|
3251
|
-
border-right: var(--ab-cmp-adaptable-statusbar__border);
|
|
3252
|
-
.ab-StatusBar__SubPanel:last-child {
|
|
3253
|
-
|
|
3254
|
-
.ab-StatusBar__SubPanel,
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
button.ab-StatusBar__SubPanel:hover {
|
|
2505
|
+
border-right: var(--ab-cmp-adaptable-statusbar__border);
|
|
2506
|
+
}.ab-StatusBar__SubPanel:last-child {
|
|
2507
|
+
border-right: 0;
|
|
2508
|
+
}.ab-StatusBar__SubPanel,
|
|
2509
|
+
.ab-StatusBar__SubPanel .ab-SimpleButton {
|
|
2510
|
+
color: var(--ab-cmp-adaptable-statusbar__color);
|
|
2511
|
+
}button.ab-StatusBar__SubPanel:hover {
|
|
3258
2512
|
background-color: var(--ab-cmp-adaptable-statusbar-sub-panel-icon__background-color-hover);
|
|
3259
|
-
cursor: pointer;
|
|
3260
|
-
.ab-Shared-Entity-Shared-Object {
|
|
3261
|
-
border: var(--ab-cmp-adaptable-shared-entity-shared-object__border);
|
|
3262
|
-
.ab-Layout-Wizard__ColumnRow__Header {
|
|
3263
|
-
cursor: pointer;
|
|
3264
|
-
.ab-Layout-Wizard__ColumnRow__Title {
|
|
2513
|
+
cursor: pointer;
|
|
2514
|
+
}.ab-Shared-Entity-Shared-Object {
|
|
2515
|
+
border: var(--ab-cmp-adaptable-shared-entity-shared-object__border);
|
|
2516
|
+
}.ab-Layout-Wizard__ColumnRow__Header {
|
|
2517
|
+
cursor: pointer;
|
|
2518
|
+
}.ab-Layout-Wizard__ColumnRow__Title {
|
|
3265
2519
|
border-radius: var(--ab-cmp-adaptable-layout-wizard-column-row-title__border-radious);
|
|
3266
2520
|
background: var(--ab-cmp-adaptable-layout-wizard-column-row-title__background);
|
|
3267
|
-
color: var(--ab-cmp-adaptable-layout-wizard-column-row-title__color);
|
|
3268
|
-
.ab-Layout-Wizard__ColumnRow__Expanded-Container {
|
|
2521
|
+
color: var(--ab-cmp-adaptable-layout-wizard-column-row-title__color);
|
|
2522
|
+
}.ab-Layout-Wizard__ColumnRow__Expanded-Container {
|
|
3269
2523
|
background: var(--ab-cmp-adaptable-layout-wizard-column-row-expanded-container__background);
|
|
3270
|
-
border-radius: var(--ab-cmp-adaptable-layout-wizard-column-row-expanded-container__border-radius);
|
|
3271
|
-
.ab-Layout-Wizard__ColumnRow__Input {
|
|
2524
|
+
border-radius: var(--ab-cmp-adaptable-layout-wizard-column-row-expanded-container__border-radius);
|
|
2525
|
+
}.ab-Layout-Wizard__ColumnRow__Input {
|
|
3272
2526
|
max-width: var(--ab-cmp-adaptable-layout-wizard-column-input__max-width);
|
|
3273
|
-
width: var(--ab-cmp-adaptable-layout-wizard-column-input__width);
|
|
3274
|
-
:root {
|
|
2527
|
+
width: var(--ab-cmp-adaptable-layout-wizard-column-input__width);
|
|
2528
|
+
}:root {
|
|
3275
2529
|
--ab-cmp-adaptable-permitted-values-selector__font-size: var(--ab-font-size-2);
|
|
3276
2530
|
--ab-cmp-adaptable-permitted-values-selector__border: 1px solid var(--ab-color-primarydark);
|
|
3277
2531
|
--ab-cmp-adaptable-permitted-values-selector__background-color: var(--ab-color-defaultbackground);
|
|
3278
|
-
--ab-cmp-adaptable-permitted-values-selector__padding: var(--ab-space-1);
|
|
3279
|
-
.ab-ValueSelector {
|
|
3280
|
-
overflow: hidden;
|
|
3281
|
-
.ab-ValueSelector__option {
|
|
3282
|
-
|
|
3283
|
-
.ab-ValueSelector__show-selected-only-checkbox {
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
.ab-ValueSelector__show-selected-only-checkbox__text {
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
.ab-
|
|
3298
|
-
|
|
3299
|
-
.ab-
|
|
3300
|
-
|
|
3301
|
-
|
|
2532
|
+
--ab-cmp-adaptable-permitted-values-selector__padding: var(--ab-space-1);
|
|
2533
|
+
}.ab-ValueSelector {
|
|
2534
|
+
overflow: hidden;
|
|
2535
|
+
}.ab-ValueSelector__option {
|
|
2536
|
+
border-radius: "var(--ab__border-radius)";
|
|
2537
|
+
}.ab-ValueSelector__show-selected-only-checkbox {
|
|
2538
|
+
position: sticky;
|
|
2539
|
+
top: 0;
|
|
2540
|
+
z-index: 10000;
|
|
2541
|
+
}.ab-ValueSelector__show-selected-only-checkbox__text {
|
|
2542
|
+
position: absolute;
|
|
2543
|
+
top: 2px;
|
|
2544
|
+
right: 4px;
|
|
2545
|
+
overflow: hidden;
|
|
2546
|
+
border-radius: var(--ab__border-radius);
|
|
2547
|
+
margin-right: var(--ab-space-1);
|
|
2548
|
+
margin-top: var(--ab-space-1);
|
|
2549
|
+
padding: 0 var(--ab-space-2);
|
|
2550
|
+
font-size: var(--ab-font-size-2);
|
|
2551
|
+
}.ab-ExpressionEditor {
|
|
2552
|
+
overflow: auto;
|
|
2553
|
+
}.ab-ExpressionEditor__column-picker {
|
|
2554
|
+
overflow: auto;
|
|
2555
|
+
min-width: 255px;
|
|
2556
|
+
height: 100%;
|
|
2557
|
+
}.ab-ExpressionEditorInput {
|
|
2558
|
+
background: var(--ab-cmp-expression-editor-input__background);
|
|
2559
|
+
border-radius: var(--ab-cmp-expression-editor-input__border-radius);
|
|
2560
|
+
width: 100%;
|
|
2561
|
+
--ab-overlay-horizontal-align: left;
|
|
2562
|
+
}.ab-ExpressionEditorInput__info-button {
|
|
2563
|
+
margin-right: 5px;
|
|
2564
|
+
}.ab-ExpressionEditorInput__dropdown-functions-list-wrapper {
|
|
2565
|
+
border: var(--ab-cmp-expression-editor-input-dropdown-functions-list__border);
|
|
2566
|
+
border-radius: var(--ab-cmp-expression-editor-input-dropdown-functions-list__border-radius);
|
|
2567
|
+
background: var(--ab-cmp-expression-editor-input__background);
|
|
2568
|
+
}.ab-ExpressionEditorInput__dropdown-functions-list {
|
|
2569
|
+
font-size: var(--ab-cmp-expression-editor-input-dropdown-functions-list__font-size);
|
|
2570
|
+
z-index: 1000;
|
|
2571
|
+
max-height: 300;
|
|
2572
|
+
overflow: auto;
|
|
2573
|
+
}.ab-ExpressionEditorInput__textarea {
|
|
2574
|
+
width: 100%;
|
|
2575
|
+
min-height: 100px;
|
|
2576
|
+
font-family: var(--ab-cmp-expression-editor-input__font-family);
|
|
2577
|
+
resize: vertical;
|
|
2578
|
+
font-size: 1rem;
|
|
2579
|
+
padding: var(--ab-space-2);
|
|
2580
|
+
}.ab-ExpressionEditorInput__editor-feedback {
|
|
2581
|
+
background: var(--ab-cmp-expression-editor-input__background);
|
|
2582
|
+
border-radius: var(--ab-cmp-expression-editor-feedback__border-radius);
|
|
2583
|
+
}.ab-QuickFilter {
|
|
2584
|
+
overflow-y: auto;
|
|
2585
|
+
font-size: var(--ab-cmp-quickfilter__font-size);
|
|
2586
|
+
border: var(--ab-cmp-quickfilter__border);
|
|
2587
|
+
background: var(--ab-cmp-quickfilter__background);
|
|
2588
|
+
}.ab-QuickFilter__dropdown {
|
|
2589
|
+
white-space: nowrap;
|
|
2590
|
+
max-height: 60vh;
|
|
2591
|
+
overflow-y: auto;
|
|
2592
|
+
}.ab-alert--error {
|
|
2593
|
+
background: var(--ab-color-error);
|
|
2594
|
+
}.ab-alert--success {
|
|
2595
|
+
background: var(--ab-color-success);
|
|
2596
|
+
}.ab-alert--warn,
|
|
3302
2597
|
.ab-alert--warning {
|
|
3303
|
-
background: var(--ab-color-warn);
|
|
3304
|
-
.ab-alert--info {
|
|
3305
|
-
background: var(--ab-color-info);
|
|
3306
|
-
.ab-cell--align-left {
|
|
3307
|
-
text-align: left;
|
|
3308
|
-
.ab-cell--align-right {
|
|
3309
|
-
text-align: right;
|
|
3310
|
-
.ab-cell--align-center {
|
|
3311
|
-
text-align: center;
|
|
3312
|
-
.popover-content {
|
|
3313
|
-
padding: 1px;
|
|
3314
|
-
/* Styles for the coloured cell render
|
|
3315
|
-
|
|
3316
|
-
.ab_div-colour-render-bar {
|
|
2598
|
+
background: var(--ab-color-warn);
|
|
2599
|
+
}.ab-alert--info {
|
|
2600
|
+
background: var(--ab-color-info);
|
|
2601
|
+
}.ab-cell--align-left {
|
|
2602
|
+
text-align: left;
|
|
2603
|
+
}.ab-cell--align-right {
|
|
2604
|
+
text-align: right;
|
|
2605
|
+
}.ab-cell--align-center {
|
|
2606
|
+
text-align: center;
|
|
2607
|
+
}.popover-content {
|
|
2608
|
+
padding: 1px;
|
|
2609
|
+
}/* Styles for the coloured cell render
|
|
2610
|
+
*/.ab_div-colour-render-bar {
|
|
3317
2611
|
display: inline-block;
|
|
3318
2612
|
height: 100%;
|
|
3319
2613
|
position: relative;
|
|
3320
|
-
z-index: 0;
|
|
3321
|
-
.ab_div-colour-render-text {
|
|
2614
|
+
z-index: 0;
|
|
2615
|
+
}.ab_div-colour-render-text {
|
|
3322
2616
|
position: absolute;
|
|
3323
2617
|
font-weight: normal;
|
|
3324
2618
|
font-size: 12px;
|
|
3325
|
-
z-index: 100;
|
|
3326
|
-
.ab_div-colour-render-div {
|
|
2619
|
+
z-index: 100;
|
|
2620
|
+
}.ab_div-colour-render-div {
|
|
3327
2621
|
display: inline-block;
|
|
3328
2622
|
height: 100%;
|
|
3329
|
-
width: 100%;
|
|
3330
|
-
.ab-ActionColumn {
|
|
2623
|
+
width: 100%;
|
|
2624
|
+
}.ab-ActionColumn {
|
|
3331
2625
|
height: 100%;
|
|
3332
2626
|
display: flex;
|
|
3333
|
-
column-gap: var(--ab-space-1);
|
|
3334
|
-
.ab-ActionColumn > button.ab-SimpleButton {
|
|
3335
|
-
|
|
3336
|
-
.adaptableRowActionButtons.ag-cell {
|
|
3337
|
-
padding: 0;
|
|
3338
|
-
.adaptableRowActionButtons.ag-cell .ab-ActionColumn {
|
|
3339
|
-
|
|
3340
|
-
.Toastify__toast-container {
|
|
2627
|
+
column-gap: var(--ab-space-1);
|
|
2628
|
+
}.ab-ActionColumn > button.ab-SimpleButton {
|
|
2629
|
+
height: 100%;
|
|
2630
|
+
}.adaptableRowActionButtons.ag-cell {
|
|
2631
|
+
padding: 0;
|
|
2632
|
+
}.adaptableRowActionButtons.ag-cell .ab-ActionColumn {
|
|
2633
|
+
column-gap: 0;
|
|
2634
|
+
}.Toastify__toast-container {
|
|
3341
2635
|
border-style: none;
|
|
3342
|
-
border-width: 0px;
|
|
3343
|
-
.Toastify__toast {
|
|
2636
|
+
border-width: 0px;
|
|
2637
|
+
}.Toastify__toast {
|
|
3344
2638
|
padding: 0;
|
|
3345
2639
|
padding-bottom: 5px;
|
|
3346
2640
|
color: var(--ab-color-text-on-primary);
|
|
@@ -3355,18 +2649,18 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
3355
2649
|
--toastify-color-info: var(--ab-color-info);
|
|
3356
2650
|
--toastify-color-success: var(--ab-color-success);
|
|
3357
2651
|
--toastify-color-warning: var(--ab-color-warn);
|
|
3358
|
-
--toastify-color-error: var(--ab-color-error);
|
|
3359
|
-
.Toastify__toast-body {
|
|
3360
|
-
padding: 0;
|
|
3361
|
-
.Toastify__toast--info {
|
|
3362
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-info);
|
|
3363
|
-
.Toastify__toast--success {
|
|
3364
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-success);
|
|
3365
|
-
.Toastify__toast--warning {
|
|
3366
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-warn);
|
|
3367
|
-
.Toastify__toast--error {
|
|
3368
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-error);
|
|
3369
|
-
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar,
|
|
2652
|
+
--toastify-color-error: var(--ab-color-error);
|
|
2653
|
+
}.Toastify__toast-body {
|
|
2654
|
+
padding: 0;
|
|
2655
|
+
}.Toastify__toast--info {
|
|
2656
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-info);
|
|
2657
|
+
}.Toastify__toast--success {
|
|
2658
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-success);
|
|
2659
|
+
}.Toastify__toast--warning {
|
|
2660
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-warn);
|
|
2661
|
+
}.Toastify__toast--error {
|
|
2662
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-error);
|
|
2663
|
+
}.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar,
|
|
3370
2664
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar,
|
|
3371
2665
|
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar,
|
|
3372
2666
|
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar,
|
|
@@ -3375,8 +2669,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
3375
2669
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar,
|
|
3376
2670
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar {
|
|
3377
2671
|
background-color: rgba(0, 0, 0, 0);
|
|
3378
|
-
border-radius: 100px;
|
|
3379
|
-
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:vertical,
|
|
2672
|
+
border-radius: 100px;
|
|
2673
|
+
}.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:vertical,
|
|
3380
2674
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:vertical,
|
|
3381
2675
|
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:vertical,
|
|
3382
2676
|
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:vertical,
|
|
@@ -3384,8 +2678,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
3384
2678
|
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:vertical,
|
|
3385
2679
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:vertical,
|
|
3386
2680
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:vertical {
|
|
3387
|
-
width: var(--ab-custom-scrollbar-size);
|
|
3388
|
-
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:horizontal,
|
|
2681
|
+
width: var(--ab-custom-scrollbar-size);
|
|
2682
|
+
}.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:horizontal,
|
|
3389
2683
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:horizontal,
|
|
3390
2684
|
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:horizontal,
|
|
3391
2685
|
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:horizontal,
|
|
@@ -3393,8 +2687,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
3393
2687
|
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:horizontal,
|
|
3394
2688
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:horizontal,
|
|
3395
2689
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:horizontal {
|
|
3396
|
-
height: var(--ab-custom-scrollbar-size);
|
|
3397
|
-
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:hover,
|
|
2690
|
+
height: var(--ab-custom-scrollbar-size);
|
|
2691
|
+
}.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:hover,
|
|
3398
2692
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:hover,
|
|
3399
2693
|
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:hover,
|
|
3400
2694
|
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:hover,
|
|
@@ -3402,8 +2696,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
3402
2696
|
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:hover,
|
|
3403
2697
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:hover,
|
|
3404
2698
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:hover {
|
|
3405
|
-
background-color: rgba(0, 0, 0, 0.09);
|
|
3406
|
-
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb,
|
|
2699
|
+
background-color: rgba(0, 0, 0, 0.09);
|
|
2700
|
+
}.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb,
|
|
3407
2701
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb,
|
|
3408
2702
|
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb,
|
|
3409
2703
|
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb,
|
|
@@ -3414,8 +2708,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
3414
2708
|
background: rgba(0, 0, 0, 0.5);
|
|
3415
2709
|
border-radius: 100px;
|
|
3416
2710
|
background-clip: padding-box;
|
|
3417
|
-
border: 2px solid rgba(0, 0, 0, 0);
|
|
3418
|
-
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:vertical,
|
|
2711
|
+
border: 2px solid rgba(0, 0, 0, 0);
|
|
2712
|
+
}.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:vertical,
|
|
3419
2713
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:vertical,
|
|
3420
2714
|
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:vertical,
|
|
3421
2715
|
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:vertical,
|
|
@@ -3423,8 +2717,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
3423
2717
|
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:vertical,
|
|
3424
2718
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:vertical,
|
|
3425
2719
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:vertical {
|
|
3426
|
-
min-height: var(--ab-custom-scrollbar-size);
|
|
3427
|
-
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:horizontal,
|
|
2720
|
+
min-height: var(--ab-custom-scrollbar-size);
|
|
2721
|
+
}.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:horizontal,
|
|
3428
2722
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:horizontal,
|
|
3429
2723
|
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:horizontal,
|
|
3430
2724
|
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:horizontal,
|
|
@@ -3432,8 +2726,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
3432
2726
|
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:horizontal,
|
|
3433
2727
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:horizontal,
|
|
3434
2728
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:horizontal {
|
|
3435
|
-
min-width: var(--ab-custom-scrollbar-size);
|
|
3436
|
-
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:active,
|
|
2729
|
+
min-width: var(--ab-custom-scrollbar-size);
|
|
2730
|
+
}.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:active,
|
|
3437
2731
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:active,
|
|
3438
2732
|
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:active,
|
|
3439
2733
|
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:active,
|
|
@@ -3442,13 +2736,14 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
3442
2736
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:active,
|
|
3443
2737
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:active {
|
|
3444
2738
|
background: rgba(0, 0, 0, 0.61);
|
|
3445
|
-
border-radius: 100px;
|
|
3446
|
-
.ag-details-row {
|
|
2739
|
+
border-radius: 100px;
|
|
2740
|
+
}.ag-details-row {
|
|
3447
2741
|
display: flex;
|
|
3448
|
-
flex-flow: column;
|
|
3449
|
-
.ag-details-row .ag-details-grid {
|
|
3450
|
-
|
|
3451
|
-
.ab-wait-for-progress-indicator.ab-Grid {
|
|
3452
|
-
pointer-events: none;
|
|
2742
|
+
flex-flow: column;
|
|
2743
|
+
}.ag-details-row .ag-details-grid {
|
|
2744
|
+
flex: 1;
|
|
2745
|
+
}.ab-wait-for-progress-indicator.ab-Grid {
|
|
2746
|
+
pointer-events: none;
|
|
2747
|
+
}
|
|
3453
2748
|
|
|
3454
2749
|
/*# sourceMappingURL=base.css.map */
|