@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/index.css
CHANGED
|
@@ -348,902 +348,395 @@ template {
|
|
|
348
348
|
display: none;
|
|
349
349
|
}
|
|
350
350
|
|
|
351
|
-
|
|
351
|
+
: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}
|
|
352
352
|
|
|
353
|
-
:root
|
|
354
|
-
--infinite-space-0: 0rem;
|
|
355
|
-
--infinite-space-1: 0.125rem;
|
|
356
|
-
--infinite-space-2: 0.25rem;
|
|
357
|
-
--infinite-space-3: 0.5rem;
|
|
358
|
-
--infinite-space-4: 0.75rem;
|
|
359
|
-
--infinite-space-5: 1rem;
|
|
360
|
-
--infinite-space-6: 1.25rem;
|
|
361
|
-
--infinite-space-7: 1.5rem;
|
|
362
|
-
--infinite-space-8: 2.25rem;
|
|
363
|
-
--infinite-space-9: 3rem;
|
|
364
|
-
--infinite-space-10: 4rem;
|
|
365
|
-
--infinite-font-size-0: 0.5rem;
|
|
366
|
-
--infinite-font-size-1: 0.625rem;
|
|
367
|
-
--infinite-font-size-2: 0.75rem;
|
|
368
|
-
--infinite-font-size-3: 0.875rem;
|
|
369
|
-
--infinite-font-size-4: 1rem;
|
|
370
|
-
--infinite-font-size-5: 1.25rem;
|
|
371
|
-
--infinite-font-size-6: 1.5rem;
|
|
372
|
-
--infinite-font-size-7: 2.25rem;
|
|
373
|
-
--infinite-font-family: inherit;
|
|
374
|
-
--infinite-color: #484848;
|
|
375
|
-
--infinite-accent-color: #ff7043;
|
|
376
|
-
--infinite-error-color: #ff0000;
|
|
377
|
-
--infinite-border-radius: var(--infinite-space-2);
|
|
378
|
-
--infinite-background: white;
|
|
379
|
-
--infinite-min-height: 100px;
|
|
380
|
-
--infinite-load-mask-text-background: rgba(255,255,255,0.8);
|
|
381
|
-
--infinite-load-mask-overlay-background: gray;
|
|
382
|
-
--infinite-load-mask-overlay-opacity: 0.3;
|
|
383
|
-
--infinite-load-mask-color: inherit;
|
|
384
|
-
--infinite-load-mask-padding: var(--infinite-space-5);
|
|
385
|
-
--infinite-load-mask-border-radius: var(--infinite-border-radius);
|
|
386
|
-
--infinite-resize-handle-active-area-width: 20px;
|
|
387
|
-
--infinite-resize-handle-width: 2px;
|
|
388
|
-
--infinite-resize-handle-hover-background: #6bff6b;
|
|
389
|
-
--infinite-resize-handle-constrained-hover-background: var(--infinite-error-color);
|
|
390
|
-
--infinite-header-cell-background: #ededed;
|
|
391
|
-
--infinite-header-cell-hover-background: #dfdfdf;
|
|
392
|
-
--infinite-header-cell-padding-x: var(--infinite-space-3);
|
|
393
|
-
--infinite-header-cell-padding-y: var(--infinite-space-3);
|
|
394
|
-
--infinite-header-cell-padding: var(--infinite-header-cell-padding-y) var(--infinite-header-cell-padding-x) ;
|
|
395
|
-
--infinite-header-cell-icon-size: 16px;
|
|
396
|
-
--infinite-header-cell-sort-icon-margin: 16px;
|
|
397
|
-
--infinite-header-background: var(--infinite-header-cell-background);
|
|
398
|
-
--infinite-header-color: #6f6f6f;
|
|
399
|
-
--infinite-column-header-height: 30px;
|
|
400
|
-
--infinite-cell-color: currentColor;
|
|
401
|
-
--infinite-cell-border-width: 1px;
|
|
402
|
-
--infinite-cell-padding: var(--infinite-space-2) var(--infinite-space-3);
|
|
403
|
-
--infinite-cell-border: var(--infinite-cell-border-width) solid #c6c6c6;
|
|
404
|
-
--infinite-pinned-cell-border: var(--infinite-cell-border-width) solid #2a323d;
|
|
405
|
-
--infinite-cell-border-invisible: none;
|
|
406
|
-
--infinite-cell-border-radius: var(--infinite-space-2);
|
|
407
|
-
--infinite-column-reorder-effect-duration: .2s;
|
|
408
|
-
--infinite-active-cell-border-style: dashed;
|
|
409
|
-
--infinite-active-cell-border-width: 1px;
|
|
410
|
-
--infinite-active-cell-border-color--r: 77;
|
|
411
|
-
--infinite-active-cell-border-color--g: 149;
|
|
412
|
-
--infinite-active-cell-border-color--b: 215;
|
|
413
|
-
--infinite-active-cell-background-alpha: 0.25;
|
|
414
|
-
--infinite-active-cell-background-alpha--table-unfocused: 0.1;
|
|
415
|
-
--infinite-row-background: var(--infinite-background);
|
|
416
|
-
--infinite-row-odd-background: #f6f6f6;
|
|
417
|
-
--infinite-group-row-background: #cbc5c5;
|
|
418
|
-
--infinite-group-row-column-nesting: 30px;
|
|
419
|
-
--infinite-row-hover-background: #dbdbdb;
|
|
420
|
-
--infinite-row-pointer-events-while-scrolling: auto;
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
.light,
|
|
424
|
-
.infinite-light,
|
|
425
|
-
.light:root,
|
|
426
|
-
.infinite-light:root {
|
|
427
|
-
--infinite-space-0: 0rem;
|
|
428
|
-
--infinite-space-1: 0.125rem;
|
|
429
|
-
--infinite-space-2: 0.25rem;
|
|
430
|
-
--infinite-space-3: 0.5rem;
|
|
431
|
-
--infinite-space-4: 0.75rem;
|
|
432
|
-
--infinite-space-5: 1rem;
|
|
433
|
-
--infinite-space-6: 1.25rem;
|
|
434
|
-
--infinite-space-7: 1.5rem;
|
|
435
|
-
--infinite-space-8: 2.25rem;
|
|
436
|
-
--infinite-space-9: 3rem;
|
|
437
|
-
--infinite-space-10: 4rem;
|
|
438
|
-
--infinite-font-size-0: 0.5rem;
|
|
439
|
-
--infinite-font-size-1: 0.625rem;
|
|
440
|
-
--infinite-font-size-2: 0.75rem;
|
|
441
|
-
--infinite-font-size-3: 0.875rem;
|
|
442
|
-
--infinite-font-size-4: 1rem;
|
|
443
|
-
--infinite-font-size-5: 1.25rem;
|
|
444
|
-
--infinite-font-size-6: 1.5rem;
|
|
445
|
-
--infinite-font-size-7: 2.25rem;
|
|
446
|
-
--infinite-font-family: inherit;
|
|
447
|
-
--infinite-color: #484848;
|
|
448
|
-
--infinite-accent-color: #ff7043;
|
|
449
|
-
--infinite-error-color: #ff0000;
|
|
450
|
-
--infinite-border-radius: var(--infinite-space-2);
|
|
451
|
-
--infinite-background: white;
|
|
452
|
-
--infinite-min-height: 100px;
|
|
453
|
-
--infinite-load-mask-text-background: rgba(255,255,255,0.8);
|
|
454
|
-
--infinite-load-mask-overlay-background: gray;
|
|
455
|
-
--infinite-load-mask-overlay-opacity: 0.3;
|
|
456
|
-
--infinite-load-mask-color: inherit;
|
|
457
|
-
--infinite-load-mask-padding: var(--infinite-space-5);
|
|
458
|
-
--infinite-load-mask-border-radius: var(--infinite-border-radius);
|
|
459
|
-
--infinite-resize-handle-active-area-width: 20px;
|
|
460
|
-
--infinite-resize-handle-width: 2px;
|
|
461
|
-
--infinite-resize-handle-hover-background: #6bff6b;
|
|
462
|
-
--infinite-resize-handle-constrained-hover-background: var(--infinite-error-color);
|
|
463
|
-
--infinite-header-cell-background: #ededed;
|
|
464
|
-
--infinite-header-cell-hover-background: #dfdfdf;
|
|
465
|
-
--infinite-header-cell-padding-x: var(--infinite-space-3);
|
|
466
|
-
--infinite-header-cell-padding-y: var(--infinite-space-3);
|
|
467
|
-
--infinite-header-cell-padding: var(--infinite-header-cell-padding-y) var(--infinite-header-cell-padding-x) ;
|
|
468
|
-
--infinite-header-cell-icon-size: 16px;
|
|
469
|
-
--infinite-header-cell-sort-icon-margin: 16px;
|
|
470
|
-
--infinite-header-background: var(--infinite-header-cell-background);
|
|
471
|
-
--infinite-header-color: #6f6f6f;
|
|
472
|
-
--infinite-column-header-height: 30px;
|
|
473
|
-
--infinite-cell-color: currentColor;
|
|
474
|
-
--infinite-cell-border-width: 1px;
|
|
475
|
-
--infinite-cell-padding: var(--infinite-space-2) var(--infinite-space-3);
|
|
476
|
-
--infinite-cell-border: var(--infinite-cell-border-width) solid #c6c6c6;
|
|
477
|
-
--infinite-pinned-cell-border: var(--infinite-cell-border-width) solid #2a323d;
|
|
478
|
-
--infinite-cell-border-invisible: none;
|
|
479
|
-
--infinite-cell-border-radius: var(--infinite-space-2);
|
|
480
|
-
--infinite-column-reorder-effect-duration: .2s;
|
|
481
|
-
--infinite-active-cell-border-style: dashed;
|
|
482
|
-
--infinite-active-cell-border-width: 1px;
|
|
483
|
-
--infinite-active-cell-border-color--r: 77;
|
|
484
|
-
--infinite-active-cell-border-color--g: 149;
|
|
485
|
-
--infinite-active-cell-border-color--b: 215;
|
|
486
|
-
--infinite-active-cell-background-alpha: 0.25;
|
|
487
|
-
--infinite-active-cell-background-alpha--table-unfocused: 0.1;
|
|
488
|
-
--infinite-row-background: var(--infinite-background);
|
|
489
|
-
--infinite-row-odd-background: #f6f6f6;
|
|
490
|
-
--infinite-group-row-background: #cbc5c5;
|
|
491
|
-
--infinite-group-row-column-nesting: 30px;
|
|
492
|
-
--infinite-row-hover-background: #dbdbdb;
|
|
493
|
-
--infinite-row-pointer-events-while-scrolling: auto;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
.dark,
|
|
497
|
-
.infinite-dark {
|
|
498
|
-
--infinite-background: #101419;
|
|
499
|
-
--infinite-cell-border: 1px solid #2a323d;
|
|
500
|
-
--infinite-header-color: #c3c3c3;
|
|
501
|
-
--infinite-header-cell-background: #1b2129;
|
|
502
|
-
--infinite-header-cell-hover-background: #222932;
|
|
503
|
-
--infinite-header-background: var(--infinite-header-cell-background);
|
|
504
|
-
--infinite-row-hover-background: #3b4754;
|
|
505
|
-
--infinite-row-background: var(--infinite-background);
|
|
506
|
-
--infinite-row-odd-background: #242a31;
|
|
507
|
-
--infinite-cell-color: #c3c3c3;
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
@media (prefers-color-scheme: dark) {
|
|
511
|
-
:root {
|
|
512
|
-
--infinite-background: #101419;
|
|
513
|
-
--infinite-cell-border: 1px solid #2a323d;
|
|
514
|
-
--infinite-header-color: #c3c3c3;
|
|
515
|
-
--infinite-header-cell-background: #1b2129;
|
|
516
|
-
--infinite-header-cell-hover-background: #222932;
|
|
517
|
-
--infinite-header-background: var(--infinite-header-cell-background);
|
|
518
|
-
--infinite-row-hover-background: #3b4754;
|
|
519
|
-
--infinite-row-background: var(--infinite-background);
|
|
520
|
-
--infinite-row-odd-background: #242a31;
|
|
521
|
-
--infinite-cell-color: #c3c3c3;
|
|
522
|
-
}
|
|
523
|
-
}
|
|
353
|
+
.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}
|
|
524
354
|
|
|
525
|
-
|
|
355
|
+
.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}
|
|
526
356
|
|
|
527
|
-
|
|
528
|
-
box-sizing: border-box;
|
|
529
|
-
}
|
|
357
|
+
@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}}
|
|
530
358
|
|
|
531
|
-
._16lm1iw0:
|
|
532
|
-
box-sizing: border-box;
|
|
533
|
-
}
|
|
359
|
+
._16lm1iw0{box-sizing:border-box}
|
|
534
360
|
|
|
535
|
-
._16lm1iw0:
|
|
536
|
-
box-sizing: border-box;
|
|
537
|
-
}
|
|
361
|
+
._16lm1iw0:before{box-sizing:border-box}
|
|
538
362
|
|
|
539
|
-
._16lm1iw0
|
|
540
|
-
box-sizing: border-box;
|
|
541
|
-
}
|
|
363
|
+
._16lm1iw0:after{box-sizing:border-box}
|
|
542
364
|
|
|
543
|
-
._16lm1iw0
|
|
544
|
-
box-sizing: border-box;
|
|
545
|
-
}
|
|
365
|
+
._16lm1iw0 *{box-sizing:border-box}
|
|
546
366
|
|
|
547
|
-
._16lm1iw0 *:
|
|
548
|
-
box-sizing: border-box;
|
|
549
|
-
}
|
|
367
|
+
._16lm1iw0 *:before{box-sizing:border-box}
|
|
550
368
|
|
|
551
|
-
.
|
|
552
|
-
position: relative;
|
|
553
|
-
}
|
|
369
|
+
._16lm1iw0 *:after{box-sizing:border-box}
|
|
554
370
|
|
|
555
|
-
.
|
|
556
|
-
position: absolute;
|
|
557
|
-
}
|
|
371
|
+
._16lm1iw1{position:relative}
|
|
558
372
|
|
|
559
|
-
.
|
|
560
|
-
position: -webkit-sticky;
|
|
561
|
-
position: sticky;
|
|
562
|
-
}
|
|
373
|
+
._16lm1iw2{position:absolute}
|
|
563
374
|
|
|
564
|
-
.
|
|
565
|
-
position: fixed;
|
|
566
|
-
}
|
|
375
|
+
._16lm1iw3{position:sticky}
|
|
567
376
|
|
|
568
|
-
.
|
|
569
|
-
fill: currentColor;
|
|
570
|
-
}
|
|
377
|
+
._16lm1iw4{position:fixed}
|
|
571
378
|
|
|
572
|
-
.
|
|
573
|
-
fill: var(--infinite-accent-color);
|
|
574
|
-
}
|
|
379
|
+
._16lm1iw5{fill:currentColor}
|
|
575
380
|
|
|
576
|
-
.
|
|
577
|
-
stroke: currentColor;
|
|
578
|
-
}
|
|
381
|
+
._16lm1iw6{fill:var(--infinite-accent-color)}
|
|
579
382
|
|
|
580
|
-
.
|
|
581
|
-
stroke: var(--infinite-accent-color);
|
|
582
|
-
}
|
|
383
|
+
._16lm1iw7{margin:0}
|
|
583
384
|
|
|
584
|
-
.
|
|
585
|
-
background: inherit;
|
|
586
|
-
}
|
|
385
|
+
._16lm1iw8{stroke:currentColor}
|
|
587
386
|
|
|
588
|
-
.
|
|
589
|
-
transform: translate3d(0, 0, 0);
|
|
590
|
-
}
|
|
387
|
+
._16lm1iw9{stroke:var(--infinite-accent-color)}
|
|
591
388
|
|
|
592
|
-
.
|
|
593
|
-
transform: translate3d(0, 0, 0);
|
|
594
|
-
}
|
|
389
|
+
._16lm1iwa{background:inherit}
|
|
595
390
|
|
|
596
|
-
.
|
|
597
|
-
transform: rotate(90deg);
|
|
598
|
-
}
|
|
391
|
+
._16lm1iwb{transform:translate(0)}
|
|
599
392
|
|
|
600
|
-
.
|
|
601
|
-
cursor: pointer;
|
|
602
|
-
}
|
|
393
|
+
._16lm1iwc{transform:translate(0)}
|
|
603
394
|
|
|
604
|
-
.
|
|
605
|
-
cursor: col-resize;
|
|
606
|
-
}
|
|
395
|
+
._16lm1iwd{transform:rotate(90deg)}
|
|
607
396
|
|
|
608
|
-
.
|
|
609
|
-
pointer-events: none;
|
|
610
|
-
}
|
|
397
|
+
._16lm1iwe{transform:rotate(180deg)}
|
|
611
398
|
|
|
612
|
-
.
|
|
613
|
-
flex: 1;
|
|
614
|
-
}
|
|
399
|
+
._16lm1iwf{cursor:pointer}
|
|
615
400
|
|
|
616
|
-
.
|
|
617
|
-
flex: none;
|
|
618
|
-
}
|
|
401
|
+
._16lm1iwg{cursor:default}
|
|
619
402
|
|
|
620
|
-
.
|
|
621
|
-
z-index: 1;
|
|
622
|
-
}
|
|
403
|
+
._16lm1iwh{cursor:col-resize}
|
|
623
404
|
|
|
624
|
-
.
|
|
625
|
-
z-index: 10;
|
|
626
|
-
}
|
|
405
|
+
._16lm1iwi{pointer-events:none}
|
|
627
406
|
|
|
628
|
-
.
|
|
629
|
-
z-index: 100;
|
|
630
|
-
}
|
|
407
|
+
._16lm1iwj{flex:1}
|
|
631
408
|
|
|
632
|
-
.
|
|
633
|
-
z-index: 1000;
|
|
634
|
-
}
|
|
409
|
+
._16lm1iwk{flex:none}
|
|
635
410
|
|
|
636
|
-
.
|
|
637
|
-
z-index: 10000;
|
|
638
|
-
}
|
|
411
|
+
._16lm1iwl{z-index:1}
|
|
639
412
|
|
|
640
|
-
.
|
|
641
|
-
z-index: 100000;
|
|
642
|
-
}
|
|
413
|
+
._16lm1iwm{z-index:10}
|
|
643
414
|
|
|
644
|
-
.
|
|
645
|
-
z-index: 1000000;
|
|
646
|
-
}
|
|
415
|
+
._16lm1iwn{z-index:100}
|
|
647
416
|
|
|
648
|
-
.
|
|
649
|
-
z-index: 10000000;
|
|
650
|
-
}
|
|
417
|
+
._16lm1iwo{z-index:1000}
|
|
651
418
|
|
|
652
|
-
.
|
|
653
|
-
z-index: 1000;
|
|
654
|
-
}
|
|
419
|
+
._16lm1iwp{z-index:10000}
|
|
655
420
|
|
|
656
|
-
.
|
|
657
|
-
z-index: 10000;
|
|
658
|
-
}
|
|
421
|
+
._16lm1iwq{z-index:100000}
|
|
659
422
|
|
|
660
|
-
.
|
|
661
|
-
z-index: 100000;
|
|
662
|
-
}
|
|
423
|
+
._16lm1iwr{z-index:1000000}
|
|
663
424
|
|
|
664
|
-
.
|
|
665
|
-
display: flex;
|
|
666
|
-
}
|
|
425
|
+
._16lm1iws{z-index:10000000}
|
|
667
426
|
|
|
668
|
-
.
|
|
669
|
-
display: none;
|
|
670
|
-
}
|
|
427
|
+
._16lm1iwt{z-index:1000}
|
|
671
428
|
|
|
672
|
-
.
|
|
673
|
-
display: block;
|
|
674
|
-
}
|
|
429
|
+
._16lm1iwu{z-index:10000}
|
|
675
430
|
|
|
676
|
-
.
|
|
677
|
-
display: inline-block;
|
|
678
|
-
}
|
|
431
|
+
._16lm1iwv{z-index:100000}
|
|
679
432
|
|
|
680
|
-
.
|
|
681
|
-
-webkit-user-select: none;
|
|
682
|
-
-moz-user-select: none;
|
|
683
|
-
-ms-user-select: none;
|
|
684
|
-
user-select: none;
|
|
685
|
-
}
|
|
433
|
+
._16lm1iww{display:flex}
|
|
686
434
|
|
|
687
|
-
.
|
|
688
|
-
height: 0;
|
|
689
|
-
}
|
|
435
|
+
._16lm1iwx{display:contents}
|
|
690
436
|
|
|
691
|
-
.
|
|
692
|
-
height: 100%;
|
|
693
|
-
}
|
|
437
|
+
._16lm1iwy{display:none}
|
|
694
438
|
|
|
695
|
-
.
|
|
696
|
-
width: 0;
|
|
697
|
-
}
|
|
439
|
+
._16lm1iwz{display:block}
|
|
698
440
|
|
|
699
|
-
.
|
|
700
|
-
width: 100%;
|
|
701
|
-
}
|
|
441
|
+
._16lm1iw10{display:grid}
|
|
702
442
|
|
|
703
|
-
.
|
|
704
|
-
top: 0;
|
|
705
|
-
}
|
|
443
|
+
._16lm1iw11{display:inline-block}
|
|
706
444
|
|
|
707
|
-
.
|
|
708
|
-
top: 100%;
|
|
709
|
-
}
|
|
445
|
+
._16lm1iw12{display:inline-flex}
|
|
710
446
|
|
|
711
|
-
.
|
|
712
|
-
left: 0;
|
|
713
|
-
}
|
|
447
|
+
._16lm1iw13{display:inline-grid}
|
|
714
448
|
|
|
715
|
-
.
|
|
716
|
-
left: 100%;
|
|
717
|
-
}
|
|
449
|
+
._16lm1iw14{-webkit-user-select:none;-moz-user-select:none;user-select:none}
|
|
718
450
|
|
|
719
|
-
.
|
|
720
|
-
left: auto;
|
|
721
|
-
}
|
|
451
|
+
._16lm1iw15{height:0}
|
|
722
452
|
|
|
723
|
-
.
|
|
724
|
-
bottom: 0;
|
|
725
|
-
}
|
|
453
|
+
._16lm1iw16{height:100%}
|
|
726
454
|
|
|
727
|
-
.
|
|
728
|
-
bottom: 100%;
|
|
729
|
-
}
|
|
455
|
+
._16lm1iw17{width:0}
|
|
730
456
|
|
|
731
|
-
.
|
|
732
|
-
right: 0;
|
|
733
|
-
}
|
|
457
|
+
._16lm1iw18{width:100%}
|
|
734
458
|
|
|
735
|
-
.
|
|
736
|
-
right: 100%;
|
|
737
|
-
}
|
|
459
|
+
._16lm1iw19{top:0}
|
|
738
460
|
|
|
739
|
-
.
|
|
740
|
-
right: auto;
|
|
741
|
-
}
|
|
461
|
+
._16lm1iw1a{top:100%}
|
|
742
462
|
|
|
743
|
-
.
|
|
744
|
-
flex-flow: column;
|
|
745
|
-
}
|
|
463
|
+
._16lm1iw1b{left:0}
|
|
746
464
|
|
|
747
|
-
.
|
|
748
|
-
flex-flow: row;
|
|
749
|
-
}
|
|
465
|
+
._16lm1iw1c{left:100%}
|
|
750
466
|
|
|
751
|
-
.
|
|
752
|
-
align-items: center;
|
|
753
|
-
}
|
|
467
|
+
._16lm1iw1d{left:auto}
|
|
754
468
|
|
|
755
|
-
.
|
|
756
|
-
align-items: stretch;
|
|
757
|
-
}
|
|
469
|
+
._16lm1iw1e{bottom:0}
|
|
758
470
|
|
|
759
|
-
.
|
|
760
|
-
justify-content: center;
|
|
761
|
-
}
|
|
471
|
+
._16lm1iw1f{bottom:100%}
|
|
762
472
|
|
|
763
|
-
.
|
|
764
|
-
justify-content: flex-start;
|
|
765
|
-
}
|
|
473
|
+
._16lm1iw1g{right:0}
|
|
766
474
|
|
|
767
|
-
.
|
|
768
|
-
justify-content: flex-end;
|
|
769
|
-
}
|
|
475
|
+
._16lm1iw1h{right:100%}
|
|
770
476
|
|
|
771
|
-
.
|
|
772
|
-
overflow: hidden;
|
|
773
|
-
}
|
|
477
|
+
._16lm1iw1i{right:auto}
|
|
774
478
|
|
|
775
|
-
.
|
|
776
|
-
overflow: auto;
|
|
777
|
-
}
|
|
479
|
+
._16lm1iw1j{flex-flow:column}
|
|
778
480
|
|
|
779
|
-
.
|
|
780
|
-
overflow: visible;
|
|
781
|
-
}
|
|
481
|
+
._16lm1iw1k{flex-flow:column-reverse}
|
|
782
482
|
|
|
783
|
-
.
|
|
784
|
-
visibility: visible;
|
|
785
|
-
}
|
|
483
|
+
._16lm1iw1l{flex-flow:row}
|
|
786
484
|
|
|
787
|
-
.
|
|
788
|
-
visibility: hidden;
|
|
789
|
-
}
|
|
485
|
+
._16lm1iw1m{flex-flow:row-reverse}
|
|
790
486
|
|
|
791
|
-
.
|
|
792
|
-
will-change: transform;
|
|
793
|
-
}
|
|
487
|
+
._16lm1iw1n{align-items:center}
|
|
794
488
|
|
|
795
|
-
.
|
|
796
|
-
white-space: nowrap;
|
|
797
|
-
}
|
|
489
|
+
._16lm1iw1o{align-items:stretch}
|
|
798
490
|
|
|
799
|
-
.
|
|
800
|
-
text-overflow: ellipsis;
|
|
801
|
-
}
|
|
491
|
+
._16lm1iw1p{justify-content:center}
|
|
802
492
|
|
|
803
|
-
|
|
493
|
+
._16lm1iw1q{justify-content:space-between}
|
|
804
494
|
|
|
805
|
-
.
|
|
806
|
-
display: inline-block;
|
|
807
|
-
}
|
|
495
|
+
._16lm1iw1r{justify-content:space-around}
|
|
808
496
|
|
|
809
|
-
.
|
|
810
|
-
height: 0;
|
|
811
|
-
width: 0;
|
|
812
|
-
will-change: transform;
|
|
813
|
-
}
|
|
497
|
+
._16lm1iw1s{justify-content:flex-start}
|
|
814
498
|
|
|
815
|
-
|
|
499
|
+
._16lm1iw1t{justify-content:flex-end}
|
|
816
500
|
|
|
817
|
-
.
|
|
818
|
-
-webkit-backface-visibility: hidden;
|
|
819
|
-
backface-visibility: hidden;
|
|
820
|
-
-webkit-overflow-scrolling: touch;
|
|
821
|
-
outline: none;
|
|
822
|
-
position: fixed;
|
|
823
|
-
height: 100%;
|
|
824
|
-
width: 100%;
|
|
825
|
-
left: 0;
|
|
826
|
-
top: 0;
|
|
827
|
-
}
|
|
501
|
+
._16lm1iw1u{overflow:hidden}
|
|
828
502
|
|
|
829
|
-
.
|
|
830
|
-
position: -webkit-sticky;
|
|
831
|
-
position: sticky;
|
|
832
|
-
top: 0;
|
|
833
|
-
left: 0;
|
|
834
|
-
}
|
|
503
|
+
._16lm1iw1v{overflow:auto}
|
|
835
504
|
|
|
836
|
-
.
|
|
837
|
-
overflow: auto;
|
|
838
|
-
}
|
|
505
|
+
._16lm1iw1w{overflow:visible}
|
|
839
506
|
|
|
840
|
-
.
|
|
841
|
-
overflow: hidden;
|
|
842
|
-
}
|
|
507
|
+
._16lm1iw1x{visibility:visible}
|
|
843
508
|
|
|
844
|
-
.
|
|
845
|
-
overflow: visible;
|
|
846
|
-
}
|
|
509
|
+
._16lm1iw1y{visibility:hidden}
|
|
847
510
|
|
|
848
|
-
.
|
|
849
|
-
overflow: auto;
|
|
850
|
-
}
|
|
511
|
+
._16lm1iw1z{will-change:transform}
|
|
851
512
|
|
|
852
|
-
.
|
|
853
|
-
overflow: hidden;
|
|
854
|
-
}
|
|
513
|
+
._16lm1iw20{white-space:nowrap}
|
|
855
514
|
|
|
856
|
-
.
|
|
857
|
-
overflow-x: auto;
|
|
858
|
-
}
|
|
515
|
+
._16lm1iw21{text-overflow:ellipsis}
|
|
859
516
|
|
|
860
|
-
.
|
|
861
|
-
overflow-x: hidden;
|
|
862
|
-
}
|
|
517
|
+
.mlx2t2{display:inline-block}
|
|
863
518
|
|
|
864
|
-
.
|
|
865
|
-
overflow-x: visible;
|
|
866
|
-
}
|
|
519
|
+
.mlx2t3{height:0;width:0;will-change:transform}
|
|
867
520
|
|
|
868
|
-
.
|
|
869
|
-
overflow-x: auto;
|
|
870
|
-
}
|
|
521
|
+
._1ueijco0{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;outline:none;position:fixed;height:100%;width:100%;left:0;top:0}
|
|
871
522
|
|
|
872
|
-
.
|
|
873
|
-
overflow-x: hidden;
|
|
874
|
-
}
|
|
523
|
+
._1ueijco0>:first-child{position:sticky;top:0;left:0}
|
|
875
524
|
|
|
876
|
-
.
|
|
877
|
-
overflow-y: auto;
|
|
878
|
-
}
|
|
525
|
+
._1ueijco1{overflow:auto}
|
|
879
526
|
|
|
880
|
-
.
|
|
881
|
-
overflow-y: hidden;
|
|
882
|
-
}
|
|
527
|
+
._1ueijco2{overflow:hidden}
|
|
883
528
|
|
|
884
|
-
.
|
|
885
|
-
overflow-y: visible;
|
|
886
|
-
}
|
|
529
|
+
._1ueijco3{overflow:visible}
|
|
887
530
|
|
|
888
|
-
.
|
|
889
|
-
overflow-y: auto;
|
|
890
|
-
}
|
|
531
|
+
._1ueijco4{overflow:auto}
|
|
891
532
|
|
|
892
|
-
.
|
|
893
|
-
overflow-y: hidden;
|
|
894
|
-
}
|
|
533
|
+
._1ueijco5{overflow:hidden}
|
|
895
534
|
|
|
896
|
-
|
|
535
|
+
._1ueijco6{overflow-x:auto}
|
|
897
536
|
|
|
898
|
-
.
|
|
899
|
-
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))));
|
|
900
|
-
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)));
|
|
901
|
-
}
|
|
537
|
+
._1ueijco7{overflow-x:hidden}
|
|
902
538
|
|
|
903
|
-
.
|
|
904
|
-
display: block;
|
|
905
|
-
}
|
|
539
|
+
._1ueijco8{overflow-x:visible}
|
|
906
540
|
|
|
907
|
-
.
|
|
908
|
-
display: none;
|
|
909
|
-
}
|
|
541
|
+
._1ueijco9{overflow-x:auto}
|
|
910
542
|
|
|
911
|
-
|
|
543
|
+
._1ueijcoa{overflow-x:hidden}
|
|
912
544
|
|
|
913
|
-
.
|
|
914
|
-
--infinite-active-row-border-style: var(--infinite-active-row-border-style, var(--infinite-active-cell-border-style));
|
|
915
|
-
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))));
|
|
916
|
-
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)))));
|
|
917
|
-
}
|
|
545
|
+
._1ueijcob{overflow-y:auto}
|
|
918
546
|
|
|
919
|
-
.
|
|
920
|
-
display: block;
|
|
921
|
-
}
|
|
547
|
+
._1ueijcoc{overflow-y:hidden}
|
|
922
548
|
|
|
923
|
-
.
|
|
924
|
-
display: none;
|
|
925
|
-
}
|
|
549
|
+
._1ueijcod{overflow-y:visible}
|
|
926
550
|
|
|
927
|
-
|
|
551
|
+
._1ueijcoe{overflow-y:auto}
|
|
928
552
|
|
|
929
|
-
.
|
|
930
|
-
outline: none;
|
|
931
|
-
font-family: var(--infinite-font-family);
|
|
932
|
-
color: var(--infinite-color);
|
|
933
|
-
background: var(--infinite-background);
|
|
934
|
-
min-height: var(--infinite-min-height);
|
|
935
|
-
}
|
|
553
|
+
._1ueijcof{overflow-y:hidden}
|
|
936
554
|
|
|
937
|
-
.
|
|
938
|
-
--infinite-row-pointer-events-while-scrolling: none;
|
|
939
|
-
}
|
|
555
|
+
.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)))}
|
|
940
556
|
|
|
941
|
-
.
|
|
942
|
-
--infinite-active-cell-background-alpha: var(--infinite-active-cell-background-alpha--table-unfocused);
|
|
943
|
-
--infinite-active-row-background-alpha: var(--infinite-active-row-background-alpha--table-unfocused, var(--infinite-active-cell-background-alpha--table-unfocused));
|
|
944
|
-
}
|
|
557
|
+
.nxbq1c2{display:block}
|
|
945
558
|
|
|
946
|
-
.
|
|
947
|
-
border-right: var(--infinite-cell-border);
|
|
948
|
-
}
|
|
559
|
+
.nxbq1c3{display:none}
|
|
949
560
|
|
|
950
|
-
.
|
|
951
|
-
border-left: var(--infinite-cell-border);
|
|
952
|
-
}
|
|
561
|
+
.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)))))}
|
|
953
562
|
|
|
954
|
-
.
|
|
955
|
-
-webkit-user-select: none;
|
|
956
|
-
-moz-user-select: none;
|
|
957
|
-
-ms-user-select: none;
|
|
958
|
-
user-select: none;
|
|
959
|
-
}
|
|
563
|
+
.j26lrx1{display:block}
|
|
960
564
|
|
|
961
|
-
.
|
|
962
|
-
transform: translate3d(-100%, 0px, 0px);
|
|
963
|
-
border-right: var(--infinite-pinned-cell-border);
|
|
964
|
-
bottom: var(--_1slvgu9o);
|
|
965
|
-
}
|
|
565
|
+
.j26lrx2{display:none}
|
|
966
566
|
|
|
967
|
-
.
|
|
968
|
-
left: var(--_1slvgu9f);
|
|
969
|
-
}
|
|
567
|
+
._1yeub2v0{outline:none;font-family:var(--infinite-font-family);color:var(--infinite-color);background:var(--infinite-background);min-height:var(--infinite-min-height)}
|
|
970
568
|
|
|
971
|
-
.
|
|
972
|
-
visibility: visible;
|
|
973
|
-
}
|
|
569
|
+
._1yeub2v1{--infinite-row-pointer-events-while-scrolling: none}
|
|
974
570
|
|
|
975
|
-
.
|
|
976
|
-
left: calc(var(--_1slvgu9j));
|
|
977
|
-
}
|
|
571
|
+
._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))}
|
|
978
572
|
|
|
979
|
-
.
|
|
980
|
-
visibility: visible;
|
|
981
|
-
}
|
|
573
|
+
._1yeub2vi{border-right:var(--infinite-cell-border)}
|
|
982
574
|
|
|
983
|
-
|
|
575
|
+
._1yeub2vj{border-left:var(--infinite-cell-border)}
|
|
984
576
|
|
|
985
|
-
.
|
|
986
|
-
justify-content: center;
|
|
987
|
-
}
|
|
577
|
+
._1yeub2vl{-webkit-user-select:none;-moz-user-select:none;user-select:none}
|
|
988
578
|
|
|
989
|
-
.
|
|
990
|
-
justify-content: flex-start;
|
|
991
|
-
}
|
|
579
|
+
._1yeub2vp{transform:translate(-100%);border-right:var(--infinite-pinned-cell-border);bottom:var(--_1slvgu9m)}
|
|
992
580
|
|
|
993
|
-
.
|
|
994
|
-
justify-content: flex-start;
|
|
995
|
-
flex-flow: row-reverse;
|
|
996
|
-
}
|
|
581
|
+
._1yeub2vq{left:var(--_1slvgu9f)}
|
|
997
582
|
|
|
998
|
-
.
|
|
999
|
-
transition: left 300ms;
|
|
1000
|
-
}
|
|
583
|
+
._1yeub2vn ._1yeub2vq{visibility:visible}
|
|
1001
584
|
|
|
1002
|
-
.
|
|
1003
|
-
transition: none;
|
|
1004
|
-
}
|
|
585
|
+
._1yeub2vr{left:calc(var(--_1slvgu9h))}
|
|
1005
586
|
|
|
1006
|
-
.
|
|
1007
|
-
padding: var(--infinite-cell-padding);
|
|
1008
|
-
border-left: var(--infinite-cell-border-width) solid transparent;
|
|
1009
|
-
border-right: var(--infinite-cell-border-width) solid transparent;
|
|
1010
|
-
}
|
|
587
|
+
._1yeub2vo ._1yeub2vr{visibility:visible}
|
|
1011
588
|
|
|
1012
|
-
.
|
|
1013
|
-
transition: transform var(--infinite-column-reorder-effect-duration);
|
|
1014
|
-
}
|
|
589
|
+
._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)}
|
|
1015
590
|
|
|
1016
|
-
.
|
|
1017
|
-
color: var(--infinite-cell-color);
|
|
1018
|
-
}
|
|
591
|
+
._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)}
|
|
1019
592
|
|
|
1020
|
-
.
|
|
1021
|
-
background: var(--infinite-row-background);
|
|
1022
|
-
}
|
|
593
|
+
._7pupv03{background:var(--infinite-row-background)}
|
|
1023
594
|
|
|
1024
|
-
.
|
|
1025
|
-
background: var(--infinite-row-odd-background);
|
|
1026
|
-
}
|
|
595
|
+
._7pupv04{background:var(--infinite-row-odd-background)}
|
|
1027
596
|
|
|
1028
|
-
.
|
|
1029
|
-
border-top-left-radius: var(--infinite-cell-border-radius);
|
|
1030
|
-
border-bottom-left-radius: var(--infinite-cell-border-radius);
|
|
1031
|
-
}
|
|
597
|
+
._7pupv05{z-index:100}
|
|
1032
598
|
|
|
1033
|
-
.
|
|
1034
|
-
border-top-right-radius: var(--infinite-cell-border-radius);
|
|
1035
|
-
border-bottom-right-radius: var(--infinite-cell-border-radius);
|
|
1036
|
-
}
|
|
599
|
+
._7pupv07{z-index:100}
|
|
1037
600
|
|
|
1038
|
-
|
|
601
|
+
._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))}
|
|
1039
602
|
|
|
1040
|
-
.
|
|
1041
|
-
margin-left: var(--infinite-header-cell-sort-icon-margin);
|
|
1042
|
-
}
|
|
603
|
+
._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))}
|
|
1043
604
|
|
|
1044
|
-
.
|
|
1045
|
-
margin-left: var(--infinite-header-cell-sort-icon-margin);
|
|
1046
|
-
}
|
|
605
|
+
._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))}
|
|
1047
606
|
|
|
1048
|
-
.
|
|
1049
|
-
margin-right: var(--infinite-header-cell-sort-icon-margin);
|
|
1050
|
-
}
|
|
607
|
+
._1eexc2a0{justify-content:center}
|
|
1051
608
|
|
|
1052
|
-
.
|
|
1053
|
-
line-height: 0;
|
|
1054
|
-
font-size: 10px;
|
|
1055
|
-
border-radius: 50%;
|
|
1056
|
-
padding: 1px;
|
|
1057
|
-
position: absolute;
|
|
1058
|
-
transition: top 0.2s;
|
|
1059
|
-
top: 0;
|
|
1060
|
-
right: 2px;
|
|
1061
|
-
}
|
|
609
|
+
._1eexc2a1{justify-content:flex-start}
|
|
1062
610
|
|
|
1063
|
-
.
|
|
1064
|
-
background: var(--infinite-header-background);
|
|
1065
|
-
top: 0;
|
|
1066
|
-
right: 0;
|
|
1067
|
-
bottom: 0;
|
|
1068
|
-
}
|
|
611
|
+
._1eexc2a2{justify-content:flex-start;flex-flow:row-reverse}
|
|
1069
612
|
|
|
1070
|
-
.
|
|
1071
|
-
background: var(--infinite-header-background);
|
|
1072
|
-
color: var(--infinite-header-color);
|
|
1073
|
-
}
|
|
613
|
+
._1eexc2a3{transition:left .3s}
|
|
1074
614
|
|
|
1075
|
-
.
|
|
1076
|
-
z-index: 10;
|
|
1077
|
-
}
|
|
615
|
+
._1eexc2a4{transition:none}
|
|
1078
616
|
|
|
1079
|
-
.
|
|
1080
|
-
background: var(--infinite-header-cell-hover-background);
|
|
1081
|
-
color: var(--infinite-cell-color);
|
|
1082
|
-
opacity: 0.8;
|
|
1083
|
-
padding: var(--infinite-cell-padding);
|
|
1084
|
-
padding-left: 20px;
|
|
1085
|
-
z-index: 2000;
|
|
1086
|
-
}
|
|
617
|
+
._1eexc2a5{padding:var(--infinite-cell-padding);border-left:var(--infinite-cell-border-width) solid transparent;border-right:var(--infinite-cell-border-width) solid transparent}
|
|
1087
618
|
|
|
1088
|
-
.
|
|
1089
|
-
border-left: var(--infinite-cell-border-width) solid transparent;
|
|
1090
|
-
border-right: var(--infinite-cell-border);
|
|
1091
|
-
background: var(--infinite-header-cell-background);
|
|
1092
|
-
padding: 0;
|
|
1093
|
-
}
|
|
619
|
+
._1yeub2vl ._1eexc2a6{transition:transform var(--infinite-column-reorder-effect-duration)}
|
|
1094
620
|
|
|
1095
|
-
.
|
|
1096
|
-
background: var(--infinite-header-cell-hover-background);
|
|
1097
|
-
}
|
|
621
|
+
._1eexc2a7{margin-inline:var(--infinite-selection-checkbox-margin-inline)}
|
|
1098
622
|
|
|
1099
|
-
.
|
|
1100
|
-
border-top-left-radius: var(--infinite-cell-border-radius);
|
|
1101
|
-
border-bottom-left-radius: var(--infinite-cell-border-radius);
|
|
1102
|
-
}
|
|
623
|
+
._1eexc2a8{color:var(--infinite-cell-color)}
|
|
1103
624
|
|
|
1104
|
-
.
|
|
1105
|
-
border-top-right-radius: var(--infinite-cell-border-radius);
|
|
1106
|
-
border-bottom-right-radius: var(--infinite-cell-border-radius);
|
|
1107
|
-
}
|
|
625
|
+
._1eexc2ah{background:var(--infinite-row-background)}
|
|
1108
626
|
|
|
1109
|
-
.
|
|
1110
|
-
z-index: 10;
|
|
1111
|
-
}
|
|
627
|
+
._1eexc2ai{background:var(--infinite-row-odd-background)}
|
|
1112
628
|
|
|
1113
|
-
.
|
|
1114
|
-
--infinite-cell-border: var(--infinite-cell-border-invisible);
|
|
1115
|
-
}
|
|
629
|
+
._1eexc2aj{background:var(--infinite-row-selected-background)}
|
|
1116
630
|
|
|
1117
|
-
.
|
|
1118
|
-
border-right: var(--infinite-cell-border);
|
|
1119
|
-
}
|
|
631
|
+
._1eexc2am{border-top-left-radius:var(--infinite-cell-border-radius);border-bottom-left-radius:var(--infinite-cell-border-radius)}
|
|
1120
632
|
|
|
1121
|
-
.
|
|
1122
|
-
padding: var(--infinite-header-cell-padding);
|
|
1123
|
-
}
|
|
633
|
+
._1eexc2ao{border-top-right-radius:var(--infinite-cell-border-radius);border-bottom-right-radius:var(--infinite-cell-border-radius)}
|
|
1124
634
|
|
|
1125
|
-
.
|
|
1126
|
-
background: var(--infinite-header-background);
|
|
1127
|
-
}
|
|
635
|
+
.qz8ht90[disabled]{opacity:.7}
|
|
1128
636
|
|
|
1129
|
-
.
|
|
1130
|
-
padding: var(--infinite-cell-padding);
|
|
1131
|
-
border-bottom: var(--infinite-cell-border);
|
|
1132
|
-
border-right: var(--infinite-cell-border);
|
|
1133
|
-
background: var(--infinite-header-cell-background);
|
|
1134
|
-
}
|
|
637
|
+
._12zfob11{margin-left:var(--infinite-header-cell-sort-icon-margin)}
|
|
1135
638
|
|
|
1136
|
-
.
|
|
1137
|
-
border-top: var(--infinite-cell-border);
|
|
1138
|
-
}
|
|
639
|
+
._12zfob12{margin-left:var(--infinite-header-cell-sort-icon-margin)}
|
|
1139
640
|
|
|
1140
|
-
|
|
641
|
+
._12zfob13{margin-right:var(--infinite-header-cell-sort-icon-margin)}
|
|
1141
642
|
|
|
1142
|
-
.
|
|
1143
|
-
transform: translateX(50%);
|
|
1144
|
-
width: var(--infinite-resize-handle-active-area-width);
|
|
1145
|
-
}
|
|
643
|
+
._12zfob14{line-height:0;font-size:10px;border-radius:50%;padding:1px;position:absolute;transition:top .2s;top:0;right:2px}
|
|
1146
644
|
|
|
1147
|
-
.
|
|
1148
|
-
overflow: visible;
|
|
1149
|
-
}
|
|
645
|
+
._12zfob15{background:var(--infinite-header-background);top:0;right:0;bottom:0}
|
|
1150
646
|
|
|
1151
|
-
.
|
|
1152
|
-
transform: translateX(-50%);
|
|
1153
|
-
}
|
|
647
|
+
._12zfob16{background:var(--infinite-header-background);color:var(--infinite-header-color)}
|
|
1154
648
|
|
|
1155
|
-
.
|
|
1156
|
-
transform: none;
|
|
1157
|
-
}
|
|
649
|
+
._12zfob1e{z-index:10}
|
|
1158
650
|
|
|
1159
|
-
.
|
|
1160
|
-
transform: none;
|
|
1161
|
-
}
|
|
651
|
+
._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}
|
|
1162
652
|
|
|
1163
|
-
.
|
|
1164
|
-
transform: none;
|
|
1165
|
-
}
|
|
653
|
+
._12zfob1l{border-left:var(--infinite-cell-border-width) solid transparent;border-right:var(--infinite-cell-border);background:var(--infinite-header-cell-background);padding:0}
|
|
1166
654
|
|
|
1167
|
-
.
|
|
1168
|
-
right: calc((var(--infinite-resize-handle-active-area-width) - var(--infinite-resize-handle-width)) / 2);
|
|
1169
|
-
width: var(--infinite-resize-handle-width);
|
|
1170
|
-
}
|
|
655
|
+
._12zfob1l:hover{background:var(--infinite-header-cell-hover-background)}
|
|
1171
656
|
|
|
1172
|
-
.
|
|
1173
|
-
background: var(--infinite-resize-handle-hover-background);
|
|
1174
|
-
}
|
|
657
|
+
._12zfob1z{border-top-left-radius:var(--infinite-cell-border-radius);border-bottom-left-radius:var(--infinite-cell-border-radius)}
|
|
1175
658
|
|
|
1176
|
-
.
|
|
1177
|
-
background: var(--infinite-resize-handle-constrained-hover-background);
|
|
1178
|
-
}
|
|
659
|
+
._12zfob111{border-top-right-radius:var(--infinite-cell-border-radius);border-bottom-right-radius:var(--infinite-cell-border-radius)}
|
|
1179
660
|
|
|
1180
|
-
|
|
661
|
+
._12zfob119{z-index:10}
|
|
1181
662
|
|
|
1182
|
-
.
|
|
1183
|
-
will-change: transform;
|
|
1184
|
-
position: absolute;
|
|
1185
|
-
top: 0;
|
|
1186
|
-
left: 0;
|
|
1187
|
-
pointer-events: var(--infinite-row-pointer-events-while-scrolling);
|
|
1188
|
-
--infinite-column-cell-bg-dont-override: var(--infinite-row-background);
|
|
1189
|
-
}
|
|
663
|
+
._1yeub2va ._12zfob11e{--infinite-cell-border: var(--infinite-cell-border-invisible)}
|
|
1190
664
|
|
|
1191
|
-
.
|
|
1192
|
-
--infinite-row-background: var(--infinite-row-hover-background);
|
|
1193
|
-
--infinite-row-odd-background: var(--infinite-row-hover-background);
|
|
1194
|
-
}
|
|
665
|
+
._12zfob11g{border-right:var(--infinite-cell-border)}
|
|
1195
666
|
|
|
1196
|
-
.
|
|
1197
|
-
background: var(--infinite-row-background);
|
|
1198
|
-
}
|
|
667
|
+
._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)}
|
|
1199
668
|
|
|
1200
|
-
.
|
|
1201
|
-
background: var(--infinite-row-odd-background);
|
|
1202
|
-
}
|
|
669
|
+
._12zfob11h:active{top:1px}
|
|
1203
670
|
|
|
1204
|
-
.
|
|
1205
|
-
z-index: 100;
|
|
1206
|
-
}
|
|
671
|
+
._12zfob1l:hover ._12zfob11h{visibility:visible;display:flex}
|
|
1207
672
|
|
|
1208
|
-
.
|
|
1209
|
-
z-index: 100;
|
|
1210
|
-
}
|
|
673
|
+
._12zfob11j{display:none}
|
|
1211
674
|
|
|
1212
|
-
.
|
|
1213
|
-
-webkit-padding-start: calc(var(--infinite-dont-override-group-row-nesting-length) * var(--infinite-group-row-column-nesting));
|
|
1214
|
-
padding-inline-start: calc(var(--infinite-dont-override-group-row-nesting-length) * var(--infinite-group-row-column-nesting));
|
|
1215
|
-
}
|
|
675
|
+
._12zfob11k{padding:var(--infinite-header-cell-padding)}
|
|
1216
676
|
|
|
1217
|
-
|
|
677
|
+
._12zfob11o{flex-direction:row-reverse}
|
|
1218
678
|
|
|
1219
|
-
.
|
|
1220
|
-
flex-flow: row;
|
|
1221
|
-
align-items: center;
|
|
1222
|
-
justify-content: center;
|
|
1223
|
-
}
|
|
679
|
+
._12zfob11p{justify-content:center}
|
|
1224
680
|
|
|
1225
|
-
.
|
|
1226
|
-
display: flex;
|
|
1227
|
-
}
|
|
681
|
+
._12zfob11q{background:var(--infinite-header-background)}
|
|
1228
682
|
|
|
1229
|
-
.
|
|
1230
|
-
display: none;
|
|
1231
|
-
}
|
|
683
|
+
._12zfob11r{padding:var(--infinite-cell-padding);border-bottom:var(--infinite-cell-border);border-right:var(--infinite-cell-border);background:var(--infinite-header-cell-background)}
|
|
1232
684
|
|
|
1233
|
-
.
|
|
1234
|
-
background: var(--infinite-load-mask-overlay-background);
|
|
1235
|
-
opacity: var(--infinite-load-mask-overlay-opacity);
|
|
1236
|
-
}
|
|
685
|
+
._12zfob11s{border-top:var(--infinite-cell-border)}
|
|
1237
686
|
|
|
1238
|
-
.
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
}
|
|
687
|
+
._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)}
|
|
688
|
+
|
|
689
|
+
.zneyzh0{transform:translate(50%);width:var(--infinite-resize-handle-active-area-width)}
|
|
690
|
+
|
|
691
|
+
.zneyzh0:hover{overflow:visible}
|
|
692
|
+
|
|
693
|
+
.zneyzh2{transform:translate(-50%)}
|
|
694
|
+
|
|
695
|
+
.zneyzh8{transform:none}
|
|
696
|
+
|
|
697
|
+
.zneyzh9{transform:none}
|
|
698
|
+
|
|
699
|
+
.zneyzha{transform:none}
|
|
700
|
+
|
|
701
|
+
.zneyzhb{right:calc((var(--infinite-resize-handle-active-area-width) - var(--infinite-resize-handle-width)) / 2);width:var(--infinite-resize-handle-width)}
|
|
702
|
+
|
|
703
|
+
.zneyzh0:hover .zneyzhb{background:var(--infinite-resize-handle-hover-background)}
|
|
1245
704
|
|
|
1246
|
-
|
|
705
|
+
.zneyzh0:hover .zneyzhd{background:var(--infinite-resize-handle-constrained-hover-background)}
|
|
706
|
+
|
|
707
|
+
.qy58ya0{flex-flow:row;align-items:center;justify-content:center}
|
|
708
|
+
|
|
709
|
+
.qy58ya1{display:flex}
|
|
710
|
+
|
|
711
|
+
.qy58ya2{display:none}
|
|
712
|
+
|
|
713
|
+
.qy58ya3{background:var(--infinite-load-mask-overlay-background);opacity:var(--infinite-load-mask-overlay-opacity)}
|
|
714
|
+
|
|
715
|
+
.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)}
|
|
716
|
+
|
|
717
|
+
.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)}
|
|
718
|
+
|
|
719
|
+
.db3arf1{display:contents}
|
|
720
|
+
|
|
721
|
+
.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}
|
|
722
|
+
|
|
723
|
+
.db3arf3{opacity:var(--infinite-menu-item-disabled-opacity);background:var(--infinite-menu-item-disabled-background)}
|
|
724
|
+
|
|
725
|
+
.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))))}
|
|
726
|
+
|
|
727
|
+
.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))))}
|
|
728
|
+
|
|
729
|
+
.db3arf0:focus-within>.db3arf1>.db3arf9:first-child{border-right-color:transparent}
|
|
730
|
+
|
|
731
|
+
.db3arf0:focus-within>.db3arf1>.db3arf9:last-child{border-left-color:transparent}
|
|
732
|
+
|
|
733
|
+
.db3arf0:focus-within>.db3arf1>.db3arf9:not(:first-child):not(:last-child){border-left-color:transparent;border-right-color:transparent}
|
|
734
|
+
|
|
735
|
+
.db3arfb{background:var(--infinite-menu-item-active-background);opacity:var(--infinite-menu-item-active-opacity)}
|
|
736
|
+
|
|
737
|
+
.db3arfc{background:var(--infinite-menu-item-pressed-background);opacity:var(--infinite-menu-item-pressed-opacity)}
|
|
738
|
+
|
|
739
|
+
.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)}
|
|
1247
740
|
|
|
1248
741
|
/**********************************
|
|
1249
742
|
** ADAPTABLE BASE STYLES **
|
|
@@ -2305,7 +1798,8 @@ template {
|
|
|
2305
1798
|
--ab-icon-fill: currentColor;
|
|
2306
1799
|
--ab-custom-scrollbar-size: 10px;
|
|
2307
1800
|
--ab-grid-row-height: 40px;
|
|
2308
|
-
--ab-loaded: 777;
|
|
1801
|
+
--ab-loaded: 777;
|
|
1802
|
+
}
|
|
2309
1803
|
|
|
2310
1804
|
:root {
|
|
2311
1805
|
--ITableHeader__color: var(--ab-color-text-on-primary);
|
|
@@ -2314,17 +1808,21 @@ template {
|
|
|
2314
1808
|
--ITableRow__color: var(--ab-color-text-on-primary);
|
|
2315
1809
|
--ITable__background: var(--ab-color-primarylight);
|
|
2316
1810
|
--ITableRow__background: var(--ab-color-defaultbackground);
|
|
2317
|
-
--ITableRow--odd__background: var(--ab-color-primarylight);
|
|
1811
|
+
--ITableRow--odd__background: var(--ab-color-primarylight);
|
|
1812
|
+
}
|
|
2318
1813
|
|
|
2319
|
-
.ab-style__list-group-item:nth-child(2n
|
|
2320
|
-
background: var(--ab-color-primarylight);
|
|
1814
|
+
.ab-style__list-group-item:nth-child(2n+1) {
|
|
1815
|
+
background: var(--ab-color-primarylight);
|
|
1816
|
+
}
|
|
2321
1817
|
|
|
2322
|
-
.ab-Grid .ag-header-cell input[type=
|
|
2323
|
-
margin-inline-start: 0px;
|
|
1818
|
+
.ab-Grid .ag-header-cell input[type=date i]::-webkit-calendar-picker-indicator {
|
|
1819
|
+
margin-inline-start: 0px;
|
|
1820
|
+
}
|
|
2324
1821
|
|
|
2325
1822
|
.ab-Grid.ab-Grid--indicate-filtered-columns .ag-header-cell-filtered {
|
|
2326
1823
|
font-weight: bolder;
|
|
2327
|
-
background: var(--ab-gridheader--filtered__background);
|
|
1824
|
+
background: var(--ab-gridheader--filtered__background);
|
|
1825
|
+
}
|
|
2328
1826
|
|
|
2329
1827
|
:root {
|
|
2330
1828
|
--ab-cmp-checkbox__border-color: var(--ab-color-inputborder);
|
|
@@ -2333,7 +1831,8 @@ template {
|
|
|
2333
1831
|
--ab-cmp-checkbox--check-size: 16px;
|
|
2334
1832
|
--ab-cmp-checkbox--check__color: white;
|
|
2335
1833
|
--ab-cmp-checkbox--check-indeterminate__color: var(--ab-color-focus);
|
|
2336
|
-
--ab-cmp-checkbox--check-indeterminate-radius: 2px;
|
|
1834
|
+
--ab-cmp-checkbox--check-indeterminate-radius: 2px;
|
|
1835
|
+
}
|
|
2337
1836
|
|
|
2338
1837
|
.ab-CheckBox--variant-agGrid {
|
|
2339
1838
|
--ab-cmp-checkbox--check__color: var(
|
|
@@ -2342,23 +1841,27 @@ template {
|
|
|
2342
1841
|
);
|
|
2343
1842
|
--ab-cmp-checkbox--checked__background: var(--ag-background-color);
|
|
2344
1843
|
--ab-cmp-checkbox__border-color: var(--ab-cmp-checkbox--check__color);
|
|
2345
|
-
--ab-cmp-checkbox--check-indeterminate__color: var(--ab-cmp-checkbox__border-color);
|
|
1844
|
+
--ab-cmp-checkbox--check-indeterminate__color: var(--ab-cmp-checkbox__border-color);
|
|
1845
|
+
}
|
|
2346
1846
|
|
|
2347
1847
|
.ab-CheckBox--variant-agGrid.ab-CheckBox--indeterminate {
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
1848
|
+
--ab-cmp-checkbox--check__color: var(
|
|
1849
|
+
--ag-checkbox-checked-color,
|
|
1850
|
+
var(--ag-balham-active-color, #0091ea)
|
|
1851
|
+
);
|
|
1852
|
+
}
|
|
2352
1853
|
|
|
2353
1854
|
.ab-CheckBox--variant-agGrid.ab-CheckBox--unchecked {
|
|
2354
|
-
|
|
1855
|
+
--ab-cmp-checkbox__border-color: var(--ag-checkbox-unchecked-color);
|
|
1856
|
+
}
|
|
2355
1857
|
|
|
2356
1858
|
:root {
|
|
2357
1859
|
--ab-cmp-dialog__background: var(--ab-color-defaultbackground, white);
|
|
2358
1860
|
--ab-cmp-dialog__color: var(--ab-color-text-on-defaultbackground, white);
|
|
2359
1861
|
--ab-cmp-dialog-close-button__color: var(--ab-color-accentlight);
|
|
2360
1862
|
--ab-cmp-dialog__border-radius: var(--ab__border-radius);
|
|
2361
|
-
--ab-cmp-dialog__min-height: 60vh;
|
|
1863
|
+
--ab-cmp-dialog__min-height: 60vh;
|
|
1864
|
+
}
|
|
2362
1865
|
|
|
2363
1866
|
:root {
|
|
2364
1867
|
--ab-cmp-dropdown__color: var(--ab-color-inputcolor);
|
|
@@ -2368,7 +1871,8 @@ template {
|
|
|
2368
1871
|
--ab-cmp-dropdown__fill: var(--ab-color-text-on-defaultbackground);
|
|
2369
1872
|
--ab-cmp-dropdown__font-size: var(--ab-font-size-2);
|
|
2370
1873
|
--ab-cmp-dropdown__font-family: var(--ab__font-family);
|
|
2371
|
-
--ab-cmp-dropdown__padding: var(--ab-space-2);
|
|
1874
|
+
--ab-cmp-dropdown__padding: var(--ab-space-2);
|
|
1875
|
+
}
|
|
2372
1876
|
|
|
2373
1877
|
:root {
|
|
2374
1878
|
--ab-cmp-dropdownbutton-list__border: none;
|
|
@@ -2381,30 +1885,35 @@ template {
|
|
|
2381
1885
|
--ab-cmp-dropdownbutton-list__border-radius: var(--ab__border-radius);
|
|
2382
1886
|
--ab-cmp-dropdownbutton-list__box-shadow: 4px 5px 11px -5px rgba(0, 0, 0, 0.2),
|
|
2383
1887
|
-4px 6px 5px 0 rgba(0, 0, 0, 0.14), 5px 3px 5px 0 rgba(0, 0, 0, 0.12);
|
|
2384
|
-
--ab-cmp-dropdownbutton-list-separator__border: 1px solid var(--ab-color-primarydark);
|
|
1888
|
+
--ab-cmp-dropdownbutton-list-separator__border: 1px solid var(--ab-color-primarydark);
|
|
1889
|
+
}
|
|
2385
1890
|
|
|
2386
1891
|
:root {
|
|
2387
1892
|
--ab-cmp-error-box__padding: var(--ab-space-3);
|
|
2388
1893
|
--ab-cmp-error-box__border-radius: var(--ab__border-radius);
|
|
2389
1894
|
--ab-cmp-error-box__color: var(--ab-color-text-on-error);
|
|
2390
|
-
--ab-cmp-error-box__background: var(--ab-color-error);
|
|
1895
|
+
--ab-cmp-error-box__background: var(--ab-color-error);
|
|
1896
|
+
}
|
|
2391
1897
|
|
|
2392
1898
|
:root {
|
|
2393
1899
|
--ab-cmp-field-wrap__background: var(--ab-color-defaultbackground);
|
|
2394
1900
|
--ab-cmp-field-wrap__fill: var(--ab-color-inputcolor);
|
|
2395
|
-
--ab-cmp-field-wrap__border-radius: var(--ab-cmp-input__border-radius);
|
|
1901
|
+
--ab-cmp-field-wrap__border-radius: var(--ab-cmp-input__border-radius);
|
|
1902
|
+
}
|
|
2396
1903
|
|
|
2397
1904
|
:root {
|
|
2398
1905
|
--ab-cmp-help-block__padding: var(--ab-space-2);
|
|
2399
1906
|
--ab-cmp-help-block__border-radius: var(--ab__border-radius);
|
|
2400
1907
|
--ab-cmp-help-block__color: var(--ab-color-text-on-primary);
|
|
2401
|
-
--ab-cmp-help-block__background: var(--ab-color-primarylight);
|
|
1908
|
+
--ab-cmp-help-block__background: var(--ab-color-primarylight);
|
|
1909
|
+
}
|
|
2402
1910
|
|
|
2403
1911
|
:root {
|
|
2404
1912
|
--ab-cmp-code-block__padding: var(--ab-space-1);
|
|
2405
1913
|
--ab-cmp-code-block__border-radius: var(--ab__border-radius);
|
|
2406
1914
|
--ab-cmp-code-block__color: var(--ab-color-text-on-primary);
|
|
2407
|
-
--ab-cmp-code-block__background: var(--ab-color-primary);
|
|
1915
|
+
--ab-cmp-code-block__background: var(--ab-color-primary);
|
|
1916
|
+
}
|
|
2408
1917
|
|
|
2409
1918
|
:root {
|
|
2410
1919
|
--ab-cmp-input__padding: var(--ab-space-2);
|
|
@@ -2416,10 +1925,12 @@ template {
|
|
|
2416
1925
|
--ab-cmp-input__font-size: var(--ab-font-size-2);
|
|
2417
1926
|
--ab-cmp-input--placeholder__color: var(--ab-color-text-on-defaultbackground);
|
|
2418
1927
|
--ab-cmp-input__font-family: var(--ab__font-family);
|
|
2419
|
-
--ab-cmp-input--placeholder__opacity: 0.6;
|
|
1928
|
+
--ab-cmp-input--placeholder__opacity: 0.6;
|
|
1929
|
+
}
|
|
2420
1930
|
|
|
2421
1931
|
:root {
|
|
2422
|
-
--ab-cmp-listgroup: 1;
|
|
1932
|
+
--ab-cmp-listgroup: 1;
|
|
1933
|
+
}
|
|
2423
1934
|
|
|
2424
1935
|
.ab-ListGroupItem {
|
|
2425
1936
|
width: var(--ab-cmp-listgroupitem__width);
|
|
@@ -2432,29 +1943,36 @@ template {
|
|
|
2432
1943
|
align-items: center;
|
|
2433
1944
|
background: var(--ab-cmp-listgroupitem__background);
|
|
2434
1945
|
color: var(--ab-cmp-listgroupitem__color);
|
|
2435
|
-
border-radius: var(--ab-cmp-listgroupitem__border-radius);
|
|
1946
|
+
border-radius: var(--ab-cmp-listgroupitem__border-radius);
|
|
1947
|
+
}
|
|
2436
1948
|
|
|
2437
|
-
.ab-ListGroupItem:nth-child(2n
|
|
2438
|
-
|
|
2439
|
-
|
|
1949
|
+
.ab-ListGroupItem:nth-child(2n+1) {
|
|
1950
|
+
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
1951
|
+
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
1952
|
+
}
|
|
2440
1953
|
|
|
2441
1954
|
.ab-ListGroupItem.ab-ListGroupItem--no-zebra {
|
|
2442
|
-
|
|
1955
|
+
background: var(--ab-color-defaultbackground);
|
|
1956
|
+
}
|
|
2443
1957
|
|
|
2444
1958
|
.ab-ListGroupItem--active.ab-ListGroupItem {
|
|
2445
|
-
|
|
2446
|
-
|
|
1959
|
+
background: var(--ab-cmp-listgroupitem--active__background);
|
|
1960
|
+
color: var(--ab-cmp-listgroupitem--active__color);
|
|
1961
|
+
}
|
|
2447
1962
|
|
|
2448
1963
|
.ab-ListGroupItem:focus {
|
|
2449
|
-
|
|
1964
|
+
z-index: 1;
|
|
1965
|
+
}
|
|
2450
1966
|
|
|
2451
1967
|
:root {
|
|
2452
|
-
--ab-cmp-modal-backdrop__background: rgba(0, 0, 0, 0.44);
|
|
1968
|
+
--ab-cmp-modal-backdrop__background: rgba(0, 0, 0, 0.44);
|
|
1969
|
+
}
|
|
2453
1970
|
|
|
2454
1971
|
:root {
|
|
2455
1972
|
--ab-cmp-tabs__padding: var(--ab-space-2);
|
|
2456
1973
|
--ab-cmp-tabs-strip__background: var(--ab-color-defaultbackground);
|
|
2457
|
-
--ab-cmp-tabs-active__background: var(--ab-color-primarylight);
|
|
1974
|
+
--ab-cmp-tabs-active__background: var(--ab-color-primarylight);
|
|
1975
|
+
}
|
|
2458
1976
|
|
|
2459
1977
|
:root {
|
|
2460
1978
|
--ab-cmp-panel_header__background: var(--ab-color-primary);
|
|
@@ -2474,7 +1992,8 @@ template {
|
|
|
2474
1992
|
--ab-cmp-panel_header--variant-modern__background: var(--ab-color-primary);
|
|
2475
1993
|
--ab-cmp-panel_header--variant-minimal__background: var(--ab-color-defaultbackground);
|
|
2476
1994
|
--ab-cmp-panel_header--variant-modern__color: var(--ab-color-text-on-primary);
|
|
2477
|
-
--ab-cmp-panel_body--variant-modern__background: var(--ab-color-primarylight);
|
|
1995
|
+
--ab-cmp-panel_body--variant-modern__background: var(--ab-color-primarylight);
|
|
1996
|
+
}
|
|
2478
1997
|
|
|
2479
1998
|
:root {
|
|
2480
1999
|
--ab-cmp-simple-button__padding: var(--ab-space-1) var(--ab-space-1);
|
|
@@ -2484,7 +2003,8 @@ template {
|
|
|
2484
2003
|
--ab-cmp-simple-button__font-size: var(--ab-font-size-2);
|
|
2485
2004
|
--ab-cmp-simple-button__font-family: var(--ab__font-family);
|
|
2486
2005
|
--ab-cmp-simple-button__height: 20px;
|
|
2487
|
-
--ab-cmp-simple-button__width: 20px;
|
|
2006
|
+
--ab-cmp-simple-button__width: 20px;
|
|
2007
|
+
}
|
|
2488
2008
|
|
|
2489
2009
|
:root {
|
|
2490
2010
|
--ab-cmp-textarea__padding: var(--ab-space-1) var(--ab-space-2);
|
|
@@ -2494,14 +2014,16 @@ template {
|
|
|
2494
2014
|
--ab-cmp-textarea__font-size: var(--ab-font-size-3);
|
|
2495
2015
|
--ab-cmp-textarea__font-family: var(--ab__font-family);
|
|
2496
2016
|
--ab-cmp-textarea__background: var(--ab-cmp-input__background);
|
|
2497
|
-
--ab-cmp-textarea--disabled__background: var(--ab-cmp-input--disabled__background);
|
|
2017
|
+
--ab-cmp-textarea--disabled__background: var(--ab-cmp-input--disabled__background);
|
|
2018
|
+
}
|
|
2498
2019
|
|
|
2499
2020
|
:root {
|
|
2500
2021
|
--ab-cmp-tooltip__opacity: 0.96;
|
|
2501
2022
|
--ab-cmp-tooltip__background: var(--ab-color-primary);
|
|
2502
2023
|
--ab-cmp-tooltip__color: var(--ab-color-text-on-primary);
|
|
2503
2024
|
--ab-cmp-tooltip__border: solid 1px var(--ab-color-inputborder);
|
|
2504
|
-
--ab-cmp-tooltip__font-size: var(--ab-font-size-2);
|
|
2025
|
+
--ab-cmp-tooltip__font-size: var(--ab-font-size-2);
|
|
2026
|
+
}
|
|
2505
2027
|
|
|
2506
2028
|
:root {
|
|
2507
2029
|
--ab-cmp-file-droppable__padding: var(--ab-space-5);
|
|
@@ -2514,7 +2036,8 @@ template {
|
|
|
2514
2036
|
--ab-cmp-file-droppable--drag-over__color: var(--ab-color-text-on-secondary);
|
|
2515
2037
|
--ab-cmp-file-droppable--drag-over__outline-offset: -20px;
|
|
2516
2038
|
--ab-cmp-file-droppable--drag-over__outline: 2px dashed
|
|
2517
|
-
var(--ab-cmp-file-droppable--drag-over__color);
|
|
2039
|
+
var(--ab-cmp-file-droppable--drag-over__color);
|
|
2040
|
+
}
|
|
2518
2041
|
|
|
2519
2042
|
:root {
|
|
2520
2043
|
--ab-dashboard__background: var(--ab-color-primary);
|
|
@@ -2527,10 +2050,12 @@ template {
|
|
|
2527
2050
|
--ab-dashboard-header__background: var(--ab-color-secondary);
|
|
2528
2051
|
--ab-dashboard-header__color: var(--ab-color-text-on-secondary);
|
|
2529
2052
|
--ab-dashboard-tab-drop-target__background: skyblue;
|
|
2530
|
-
--ab-dashboard-toolbar-drag__background: lightgreen;
|
|
2053
|
+
--ab-dashboard-toolbar-drag__background: lightgreen;
|
|
2054
|
+
}
|
|
2531
2055
|
|
|
2532
2056
|
:root {
|
|
2533
|
-
--ab-cmp-listgroup: 1;
|
|
2057
|
+
--ab-cmp-listgroup: 1;
|
|
2058
|
+
}
|
|
2534
2059
|
|
|
2535
2060
|
:root {
|
|
2536
2061
|
--ab-cmp-datepicker__background: var(--ab-color-defaultbackground);
|
|
@@ -2542,14 +2067,16 @@ template {
|
|
|
2542
2067
|
--ab-cmp-datepicker__border: 1px solid var(--ab-color-primarydark);
|
|
2543
2068
|
--ab-cmp-datepicker__font-size: var(--ab-font-size-2);
|
|
2544
2069
|
--ab-cmp-datepicker__font-family: var(--ab__font-family);
|
|
2545
|
-
--ab-cmp-datepicker__cell-size: 30px;
|
|
2070
|
+
--ab-cmp-datepicker__cell-size: 30px;
|
|
2071
|
+
}
|
|
2546
2072
|
|
|
2547
2073
|
:root {
|
|
2548
2074
|
--ab-cmp-toggle-button__background: #ccc;
|
|
2549
2075
|
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
2550
2076
|
--ab-cmp-toggle-button__font-size: var(--ab-font-size-1);
|
|
2551
2077
|
--ab-cmp-toggle-button__color: var(--ab-color-text-on-primary);
|
|
2552
|
-
--ab-cmp-toggle-button--checked__color: var(--ab-color-accentlight);
|
|
2078
|
+
--ab-cmp-toggle-button--checked__color: var(--ab-color-accentlight);
|
|
2079
|
+
}
|
|
2553
2080
|
|
|
2554
2081
|
:root {
|
|
2555
2082
|
--ab-cmp-module-module-selector__tab-item__border: 1px solid var(--ab-color-primarydark);
|
|
@@ -2559,12 +2086,14 @@ template {
|
|
|
2559
2086
|
--ab-cmp-module-module-selector__toolbar-item__border: 1px solid var(--ab-color-primary);
|
|
2560
2087
|
--ab-cmp-module-selector__unused-panel__border: 1px solid var(--ab-color-primarydark);
|
|
2561
2088
|
--ab-cmp-module-selector__unused-panel__border-radius: var(--ab__border-radius);
|
|
2562
|
-
--ab-cmp-module-selector__unused-panel__background: var(--ab-color-defaultbackground);
|
|
2089
|
+
--ab-cmp-module-selector__unused-panel__background: var(--ab-color-defaultbackground);
|
|
2090
|
+
}
|
|
2563
2091
|
|
|
2564
2092
|
:root {
|
|
2565
2093
|
--ab-cmp-loader__background: var(--ab-color-primarydark);
|
|
2566
2094
|
--ab-cmp-loader__border: var(--ab-color-text-on-primary);
|
|
2567
|
-
--ab-cmp-loader__font-size: var(--ab-font-size-2);
|
|
2095
|
+
--ab-cmp-loader__font-size: var(--ab-font-size-2);
|
|
2096
|
+
}
|
|
2568
2097
|
|
|
2569
2098
|
:root {
|
|
2570
2099
|
--ab-cmp-progress-indicator__delay: 1s;
|
|
@@ -2574,28 +2103,34 @@ template {
|
|
|
2574
2103
|
--ab-cmp-progress-indicator__font-family: var(--ab__font-family);
|
|
2575
2104
|
--ab-cmp-progress-indicator__padding: var(--ab-space-3);
|
|
2576
2105
|
--ab-cmp-progress-indicator__background: var(--ab-color-primary);
|
|
2577
|
-
--ab-cmp-progress-indicator__color: var(--ab-color-text-on-primary);
|
|
2106
|
+
--ab-cmp-progress-indicator__color: var(--ab-color-text-on-primary);
|
|
2107
|
+
}
|
|
2578
2108
|
|
|
2579
2109
|
:root {
|
|
2580
2110
|
--ab-cmp-icon__fill: var(--ab-icon-fill);
|
|
2581
2111
|
--ab-cmp-icon__height: 17px;
|
|
2582
|
-
--ab-cmp-icon__width: 17px;
|
|
2112
|
+
--ab-cmp-icon__width: 17px;
|
|
2113
|
+
}
|
|
2583
2114
|
|
|
2584
2115
|
:root {
|
|
2585
2116
|
--ab-cmp-listgroupitem__padding: var(--ab-space-2);
|
|
2586
|
-
--ab-cmp-listgroupitem__margin: 0;
|
|
2117
|
+
--ab-cmp-listgroupitem__margin: 0;
|
|
2118
|
+
--ab-cmp-listgroupitem-cell__font-size: var(--ab-font-size-3);
|
|
2119
|
+
}
|
|
2587
2120
|
|
|
2588
2121
|
:root {
|
|
2589
2122
|
--ab-cmp-wizard__padding: var(--ab-space-5);
|
|
2590
2123
|
--ab-cmp-wizard__margin: var(--ab-space-1);
|
|
2591
2124
|
--ab-cmp-wizard__background: var(--ab-color-primary);
|
|
2592
|
-
--ab-cmp-wizard__color: var(--ab-color-text-on-primary);
|
|
2125
|
+
--ab-cmp-wizard__color: var(--ab-color-text-on-primary);
|
|
2126
|
+
}
|
|
2593
2127
|
|
|
2594
2128
|
:root {
|
|
2595
2129
|
--ab-cmp-button-border-radius: 0px;
|
|
2596
2130
|
--ab-cmp-button-disabled-opacity: 0.5;
|
|
2597
2131
|
--ab-cmp-button-background: var(--ab-color-primary);
|
|
2598
|
-
--ab-cmp-button-disabled-background: var(--ab-color-primarydark);
|
|
2132
|
+
--ab-cmp-button-disabled-background: var(--ab-color-primarydark);
|
|
2133
|
+
}
|
|
2599
2134
|
|
|
2600
2135
|
:root {
|
|
2601
2136
|
--ab-cmp-dashboardpanel_body__background: var(--ab-color-primarylight);
|
|
@@ -2606,7 +2141,8 @@ template {
|
|
|
2606
2141
|
--ab-cmp-dashboardpanel__color: currentColor;
|
|
2607
2142
|
--ab-cmp-dashboardpanel_header__padding: var(--ab-space-0);
|
|
2608
2143
|
--ab-cmp-dashboardpanel_body__padding: var(--ab-space-1);
|
|
2609
|
-
--ab-cmp-dashboardpanel__border: none;
|
|
2144
|
+
--ab-cmp-dashboardpanel__border: none;
|
|
2145
|
+
}
|
|
2610
2146
|
|
|
2611
2147
|
:root {
|
|
2612
2148
|
--ab-cmp-toolpanelpanel__color: var(--ab-cmp-dashboardpanel__color);
|
|
@@ -2617,36 +2153,43 @@ template {
|
|
|
2617
2153
|
--ab-cmp-toolpanelpanel_header__color: var(--ab-cmp-dashboardpanel_header__color);
|
|
2618
2154
|
--ab-cmp-toolpanelpanel_header__padding: var(--ab-cmp-dashboardpanel_header__padding);
|
|
2619
2155
|
--ab-cmp-toolpanelpanel_body__background: var(--ab-cmp-dashboardpanel_body__background);
|
|
2620
|
-
--ab-cmp-toolpanelpanel_body__padding: var(--ab-cmp-dashboardpanel_body__padding);
|
|
2156
|
+
--ab-cmp-toolpanelpanel_body__padding: var(--ab-cmp-dashboardpanel_body__padding);
|
|
2157
|
+
}
|
|
2621
2158
|
|
|
2622
2159
|
:root {
|
|
2623
2160
|
--ab-cmp-popover__border-radius: var(--ab__border-radius);
|
|
2624
2161
|
--ab-cmp-popover__background: var(--ab-color-defaultbackground);
|
|
2625
2162
|
--ab-cmp-popover__color: var(--ab-color-text-on-defaultbackground);
|
|
2626
2163
|
--ab-cmp-popover__box-shadow: var(--ab-cmp-dropdownbutton-list__box-shadow);
|
|
2627
|
-
--ab-cmp-popover__border: 1px solid var(--ab-color-primarydark);
|
|
2164
|
+
--ab-cmp-popover__border: 1px solid var(--ab-color-primarydark);
|
|
2165
|
+
}
|
|
2628
2166
|
|
|
2629
2167
|
:root {
|
|
2630
2168
|
--ab-cmp-one-page-wizard__background: var(--ab-color-primary);
|
|
2631
2169
|
--ab-cmp-one-page-wizard-content__background: var(--ab-color-defaultbackground);
|
|
2632
2170
|
--ab-cmp-one-page-wizard-section-title__color: var(--ab-color-text-on-secondary);
|
|
2633
|
-
--ab-cmp-one-page-wizard-selected-title__background: var(--ab-color-secondary);
|
|
2171
|
+
--ab-cmp-one-page-wizard-selected-title__background: var(--ab-color-secondary);
|
|
2172
|
+
}
|
|
2634
2173
|
|
|
2635
2174
|
.ab-OnePageWizard__section {
|
|
2636
2175
|
background: var(--ab-cmp-one-page-wizard-content__background);
|
|
2637
2176
|
overflow: auto;
|
|
2638
|
-
border-radius: var(--ab__border-radius);
|
|
2177
|
+
border-radius: var(--ab__border-radius);
|
|
2178
|
+
}
|
|
2639
2179
|
|
|
2640
2180
|
.ab-OnePageWizard__section-title-container {
|
|
2641
|
-
background: var(--ab-cmp-one-page-wizard__background);
|
|
2181
|
+
background: var(--ab-cmp-one-page-wizard__background);
|
|
2182
|
+
}
|
|
2642
2183
|
|
|
2643
2184
|
.ab-OnePageWizard__section-container {
|
|
2644
2185
|
background: var(--ab-cmp-one-page-wizard__background);
|
|
2645
2186
|
min-height: 100%;
|
|
2646
|
-
overflow: hidden;
|
|
2187
|
+
overflow: hidden;
|
|
2188
|
+
}
|
|
2647
2189
|
|
|
2648
2190
|
.ab-OnePageWizard__footer {
|
|
2649
|
-
background: var(--ab-cmp-one-page-wizard__background);
|
|
2191
|
+
background: var(--ab-cmp-one-page-wizard__background);
|
|
2192
|
+
}
|
|
2650
2193
|
|
|
2651
2194
|
:root {
|
|
2652
2195
|
--ab-cmp-toolpanel__width: 200px;
|
|
@@ -2654,10 +2197,12 @@ template {
|
|
|
2654
2197
|
--ab-cmp-toolpanel-header__color: var(--ab-dashboard-header__color);
|
|
2655
2198
|
--ab-cmp-toolpanel-header__grid-gap: 3px;
|
|
2656
2199
|
--ab-cmp-toolpanel__color: var(--ab-dashboard__color);
|
|
2657
|
-
--ab-cmp-toolpanel__font-family: var(--ab__font-family);
|
|
2200
|
+
--ab-cmp-toolpanel__font-family: var(--ab__font-family);
|
|
2201
|
+
}
|
|
2658
2202
|
|
|
2659
2203
|
:root {
|
|
2660
|
-
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4);
|
|
2204
|
+
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4);
|
|
2205
|
+
}
|
|
2661
2206
|
|
|
2662
2207
|
:root {
|
|
2663
2208
|
--ab-cmp-adaptable-popup__background: var(--ab-color-primarylight);
|
|
@@ -2695,10 +2240,12 @@ template {
|
|
|
2695
2240
|
--ab-cmp-adaptable-popup-panel__margin-bottom: var(--ab-space-3);
|
|
2696
2241
|
--ab-cmp-adaptable-popup-panel__margin-top: var(--ab-space-2);
|
|
2697
2242
|
--ab-cmp-adaptable-popup-panel-title__font-size: var(--ab-font-size-5);
|
|
2698
|
-
--ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2);
|
|
2243
|
+
--ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2);
|
|
2244
|
+
}
|
|
2699
2245
|
|
|
2700
2246
|
:root {
|
|
2701
|
-
--ab-cmp-adaptable-window-popup__box-shadow: var(--ab-cmp-adaptable-popup__box-shadow);
|
|
2247
|
+
--ab-cmp-adaptable-window-popup__box-shadow: var(--ab-cmp-adaptable-popup__box-shadow);
|
|
2248
|
+
}
|
|
2702
2249
|
|
|
2703
2250
|
:root {
|
|
2704
2251
|
--ab-cmp-adaptable-object-list-tag__margin-right: var(--ab-space-2);
|
|
@@ -2720,29 +2267,40 @@ template {
|
|
|
2720
2267
|
--ab-cmp-adaptable-object-compact-list-item-name__width: 95px;
|
|
2721
2268
|
--ab-cmp-adaptable-object-compact-list-item-name__padding: var(--ab-space-1);
|
|
2722
2269
|
--ab-cmp-adaptable-object-compact-list-item-name__margin-right: var(--ab-space-1);
|
|
2723
|
-
--ab-cmp-adaptable-object-compact-list-item-name__font-size: var(--ab-font-size-4);
|
|
2270
|
+
--ab-cmp-adaptable-object-compact-list-item-name__font-size: var(--ab-font-size-4);
|
|
2271
|
+
}
|
|
2724
2272
|
|
|
2725
2273
|
:root {
|
|
2726
2274
|
--ab-cmp-adaptable-options__background-color: var(--ab-color-defaultbackground);
|
|
2727
2275
|
--ab-cmp-grid-options__background-color: var(--ab-color-defaultbackground);
|
|
2728
|
-
--ab-cmp-grid-summary__background-color: var(--ab-color-defaultbackground);
|
|
2276
|
+
--ab-cmp-grid-summary__background-color: var(--ab-color-defaultbackground);
|
|
2277
|
+
}
|
|
2729
2278
|
|
|
2730
2279
|
:root {
|
|
2731
|
-
--ab-cmp-system-status-list__background-color: var(--ab-color-defaultbackground);
|
|
2280
|
+
--ab-cmp-system-status-list__background-color: var(--ab-color-defaultbackground);
|
|
2281
|
+
--ab-cmp-system-status-list-text__border-radius: var(--ab__border-radius);
|
|
2282
|
+
--ab-cmp-system-status-list-text__font-weight: bold;
|
|
2283
|
+
--ab-cmp-system-status-list-text__font-size: var(--ab-font-size-2);
|
|
2284
|
+
--ab-cmp-system-status-list-text__color: var(--ab-color-text-on-secondary);
|
|
2285
|
+
--ab-cmp-system-status-list-text__padding: var(--ab-space-2);
|
|
2286
|
+
}
|
|
2732
2287
|
|
|
2733
2288
|
:root {
|
|
2734
|
-
--ab-cmp-dashboard-module-selector-background: var(--ab-color-defaultbackground);
|
|
2289
|
+
--ab-cmp-dashboard-module-selector-background: var(--ab-color-defaultbackground);
|
|
2290
|
+
}
|
|
2735
2291
|
|
|
2736
2292
|
:root {
|
|
2737
2293
|
--ab-cmp-adaptable-statusbar-sub-panel__padding: var(--ab-space-1) var(--ab-space-2);
|
|
2738
2294
|
--ab-cmp-adaptable-statusbar-sub-panel-icon__background-color-hover: var(--ab-color-primary);
|
|
2739
2295
|
--ab-cmp-adaptable-statusbar__color: var(--ab-color-text-on-primary);
|
|
2740
2296
|
--ab-cmp-adaptable-statusbar__font-weight: 400;
|
|
2741
|
-
--ab-cmp-adaptable-statusbar__border: 1px solid var(--ab-color-primary);
|
|
2297
|
+
--ab-cmp-adaptable-statusbar__border: 1px solid var(--ab-color-primary);
|
|
2298
|
+
}
|
|
2742
2299
|
|
|
2743
2300
|
:root {
|
|
2744
2301
|
--ab-cmp-adaptable-shared-entity-shared-object__border: 2px solid var(--ab-color-primary);
|
|
2745
|
-
--ab-cmp-adaptable-shared-entity-shared-object__nesting-color: var(--ab-color-primary);
|
|
2302
|
+
--ab-cmp-adaptable-shared-entity-shared-object__nesting-color: var(--ab-color-primary);
|
|
2303
|
+
}
|
|
2746
2304
|
|
|
2747
2305
|
:root {
|
|
2748
2306
|
--ab-cmp-adaptable-layout-wizard-column-row-title__border-radious: var(--ab__border-radius);
|
|
@@ -2757,66 +2315,105 @@ template {
|
|
|
2757
2315
|
--ab__border-radius
|
|
2758
2316
|
);
|
|
2759
2317
|
--ab-cmp-adaptable-layout-wizard-column-input__max-width: 200px;
|
|
2760
|
-
--ab-cmp-adaptable-layout-wizard-column-input__width: 100%;
|
|
2318
|
+
--ab-cmp-adaptable-layout-wizard-column-input__width: 100%;
|
|
2319
|
+
}
|
|
2761
2320
|
|
|
2762
2321
|
.ab-PermitedValuesSelector__PopupContent {
|
|
2763
2322
|
z-index: 1000;
|
|
2764
2323
|
font-size: var(--ab-cmp-adaptable-permitted-values-selector__font-size);
|
|
2765
2324
|
border: 1px solid var(--ab-cmp-adaptable-permitted-values-selector__border);
|
|
2766
2325
|
background-color: var(--ab-cmp-adaptable-permitted-values-selector__background-color);
|
|
2767
|
-
padding: var(--ab-cmp-adaptable-permitted-values-selector__padding);
|
|
2326
|
+
padding: var(--ab-cmp-adaptable-permitted-values-selector__padding);
|
|
2327
|
+
}
|
|
2328
|
+
|
|
2329
|
+
:root {
|
|
2330
|
+
--ab-cmp-expression-editor-input__background: var(--ab-color-primarylight);
|
|
2331
|
+
--ab-cmp-expression-editor-input__border-radius: var(--ab__border-radius);
|
|
2332
|
+
--ab-cmp-expression-editor-input-dropdown-functions-list__font-size: var(--ab-font-size-2);
|
|
2333
|
+
--ab-cmp-expression-editor-input-dropdown-functions-list__border: 1px solid
|
|
2334
|
+
var(--ab-color-primarydark);
|
|
2335
|
+
--ab-cmp-expression-editor-input-dropdown-functions-list__border-radius: var(--ab__border-radius);
|
|
2336
|
+
--ab-cmp-expression-editor-input__font-family: monospace;
|
|
2337
|
+
--ab-cmp-expression-editor-feedback__border-radius: var(--ab__border-radius);
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2340
|
+
:root {
|
|
2341
|
+
--ab-cmp-quickfilter__font-size: var(--ab-font-size-1);
|
|
2342
|
+
--ab-cmp-quickfilter__border: 1px solid var(--ab-color-primarydark);
|
|
2343
|
+
--ab-cmp-quickfilter__background: var(--ab-color-defaultbackground);
|
|
2344
|
+
}
|
|
2768
2345
|
|
|
2769
2346
|
.ab-Radio-input:focus + svg rect {
|
|
2770
2347
|
stroke: var(--ab-color-accent);
|
|
2771
|
-
stroke-width: 2;
|
|
2348
|
+
stroke-width: 2;
|
|
2349
|
+
}
|
|
2772
2350
|
|
|
2773
2351
|
.ab-Radio-input:focus + svg {
|
|
2774
|
-
outline: 2px solid var(--ab-color-accent);
|
|
2352
|
+
outline: 2px solid var(--ab-color-accent);
|
|
2353
|
+
}
|
|
2775
2354
|
|
|
2776
|
-
.ab-Radio-input:checked + svg rect,
|
|
2777
|
-
|
|
2778
|
-
|
|
2355
|
+
.ab-Radio-input:checked + svg rect, .ab-Radio-input:checked + svg polyline {
|
|
2356
|
+
stroke: currentColor;
|
|
2357
|
+
}
|
|
2779
2358
|
|
|
2780
2359
|
.ab-Radio-input:checked + svg polyline {
|
|
2781
2360
|
animation: abRadioCheckAnimation 0.5s ease forwards;
|
|
2782
2361
|
stroke-dasharray: 50;
|
|
2783
|
-
stroke-dashoffset: 50;
|
|
2362
|
+
stroke-dashoffset: 50;
|
|
2363
|
+
}
|
|
2784
2364
|
|
|
2785
2365
|
.ab-Radio-input input:focus {
|
|
2786
2366
|
box-shadow: var(--ab-focus__box-shadow);
|
|
2787
|
-
outline: var(--ab-focus__outline);
|
|
2367
|
+
outline: var(--ab-focus__outline);
|
|
2368
|
+
}
|
|
2788
2369
|
|
|
2789
2370
|
@keyframes abRadioCheckAnimation {
|
|
2790
2371
|
100% {
|
|
2791
|
-
stroke-dashoffset: 0;
|
|
2372
|
+
stroke-dashoffset: 0;
|
|
2373
|
+
}
|
|
2374
|
+
}
|
|
2792
2375
|
|
|
2793
2376
|
.ab-Table td,
|
|
2794
2377
|
.ab-Table th {
|
|
2795
|
-
padding: var(--ab-space-2);
|
|
2378
|
+
padding: var(--ab-space-2);
|
|
2379
|
+
}
|
|
2796
2380
|
|
|
2797
2381
|
.ab-Table th {
|
|
2798
|
-
border-bottom: 2px solid var(--ab-color-primarydark);
|
|
2382
|
+
border-bottom: 2px solid var(--ab-color-primarydark);
|
|
2383
|
+
}
|
|
2799
2384
|
|
|
2800
2385
|
.ab-Table tr:not(last-child) td {
|
|
2801
|
-
border-bottom: 1px solid var(--ab-color-primarylight);
|
|
2386
|
+
border-bottom: 1px solid var(--ab-color-primarylight);
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
.ab-CheckBox {
|
|
2390
|
+
display: inline-flex;
|
|
2391
|
+
flex-flow: row;
|
|
2392
|
+
align-items: center;
|
|
2393
|
+
cursor: pointer;
|
|
2394
|
+
position: relative;
|
|
2395
|
+
}
|
|
2802
2396
|
|
|
2803
|
-
.ab-CheckBox,
|
|
2804
|
-
.ab-CheckBox *,
|
|
2397
|
+
.ab-CheckBox, .ab-CheckBox *,
|
|
2805
2398
|
.ab-CheckBox *:before,
|
|
2806
2399
|
.ab-CheckBox *:after {
|
|
2807
|
-
box-sizing: border-box;
|
|
2400
|
+
box-sizing: border-box;
|
|
2401
|
+
}
|
|
2808
2402
|
|
|
2809
2403
|
.ab-CheckBox--checked {
|
|
2810
|
-
--ab-cmp-checkbox__background: var(--ab-cmp-checkbox--checked__background);
|
|
2404
|
+
--ab-cmp-checkbox__background: var(--ab-cmp-checkbox--checked__background);
|
|
2405
|
+
}
|
|
2811
2406
|
|
|
2812
2407
|
.ab-CheckBox--indeterminate {
|
|
2813
|
-
--ab-cmp-checkbox--check__color: var(--ab-cmp-checkbox--check-indeterminate__color);
|
|
2408
|
+
--ab-cmp-checkbox--check__color: var(--ab-cmp-checkbox--check-indeterminate__color);
|
|
2409
|
+
}
|
|
2814
2410
|
|
|
2815
2411
|
.ab-CheckBox:focus-within .ab-CheckBox__square,
|
|
2816
2412
|
.ab-CheckBox:active .ab-CheckBox__square,
|
|
2817
2413
|
.ab-CheckBox input.ab-CheckBox-input:active + .ab-CheckBox__square,
|
|
2818
2414
|
.ab-CheckBox input.ab-CheckBox-input:focus + .ab-CheckBox__square {
|
|
2819
|
-
box-shadow: var(--ab-focus__box-shadow);
|
|
2415
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2416
|
+
}
|
|
2820
2417
|
|
|
2821
2418
|
.ab-CheckBox__square {
|
|
2822
2419
|
border-radius: var(--ab__border-radius);
|
|
@@ -2824,49 +2421,55 @@ template {
|
|
|
2824
2421
|
border-style: solid;
|
|
2825
2422
|
border-color: var(--ab-cmp-checkbox__border-color);
|
|
2826
2423
|
background: var(--ab-cmp-checkbox__background);
|
|
2827
|
-
height: var(--ab-cmp-checkbox--check-size);
|
|
2828
|
-
width: var(--ab-cmp-checkbox--check-size);
|
|
2424
|
+
min-height: var(--ab-cmp-checkbox--check-size);
|
|
2425
|
+
min-width: var(--ab-cmp-checkbox--check-size);
|
|
2829
2426
|
line-height: 0;
|
|
2830
2427
|
font-size: 0;
|
|
2831
2428
|
position: relative;
|
|
2832
|
-
pointer-events: none;
|
|
2429
|
+
pointer-events: none;
|
|
2430
|
+
}
|
|
2833
2431
|
|
|
2834
2432
|
.ab-CheckBox__square:after {
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2433
|
+
opacity: 1;
|
|
2434
|
+
transition-duration: 0.1s;
|
|
2435
|
+
transition-timing-function: ease-in;
|
|
2436
|
+
transition-property: opacity;
|
|
2437
|
+
content: "";
|
|
2438
|
+
display: block;
|
|
2439
|
+
margin: auto;
|
|
2440
|
+
width: calc((var(--ab-cmp-checkbox--check-size) - 4px) / 2);
|
|
2441
|
+
height: calc(var(--ab-cmp-checkbox--check-size) - 4px);
|
|
2442
|
+
border: solid var(--ab-cmp-checkbox--check__color);
|
|
2443
|
+
border-width: 0 2px 2px 0;
|
|
2444
|
+
transform: rotate(45deg);
|
|
2445
|
+
border-radius: 1px;
|
|
2446
|
+
}
|
|
2848
2447
|
|
|
2849
2448
|
.ab-CheckBox__square--unchecked::after {
|
|
2850
|
-
|
|
2449
|
+
opacity: 0;
|
|
2450
|
+
}
|
|
2851
2451
|
|
|
2852
2452
|
.ab-CheckBox__square--indeterminate:after {
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2453
|
+
transform: rotate(0deg);
|
|
2454
|
+
position: absolute;
|
|
2455
|
+
top: 2px;
|
|
2456
|
+
bottom: 2px;
|
|
2457
|
+
right: 2px;
|
|
2458
|
+
left: 2px;
|
|
2459
|
+
border: none;
|
|
2460
|
+
width: auto;
|
|
2461
|
+
height: auto;
|
|
2462
|
+
background: var(--ab-cmp-checkbox--check__color);
|
|
2463
|
+
border-radius: var(--ab-cmp-checkbox--check-indeterminate-radius);
|
|
2464
|
+
}
|
|
2864
2465
|
|
|
2865
2466
|
.ab-CheckBox--disabled {
|
|
2866
|
-
opacity: 0.5;
|
|
2467
|
+
opacity: 0.5;
|
|
2468
|
+
}
|
|
2867
2469
|
|
|
2868
2470
|
.ab-CheckBox--readonly .ab-CheckBox__square {
|
|
2869
|
-
opacity: 0.5;
|
|
2471
|
+
opacity: 0.5;
|
|
2472
|
+
}
|
|
2870
2473
|
|
|
2871
2474
|
.ab-CheckBox-input:not(.ag-checkbox-input) {
|
|
2872
2475
|
width: 100%;
|
|
@@ -2876,7 +2479,8 @@ template {
|
|
|
2876
2479
|
left: 0;
|
|
2877
2480
|
top: 0;
|
|
2878
2481
|
z-index: 1;
|
|
2879
|
-
position: absolute;
|
|
2482
|
+
position: absolute;
|
|
2483
|
+
}
|
|
2880
2484
|
|
|
2881
2485
|
.ab-Dialog {
|
|
2882
2486
|
position: relative;
|
|
@@ -2885,33 +2489,37 @@ template {
|
|
|
2885
2489
|
color: var(--ab-cmp-dialog__color);
|
|
2886
2490
|
border-radius: var(--ab-cmp-dialog__border-radius);
|
|
2887
2491
|
display: flex;
|
|
2888
|
-
flex-flow: column;
|
|
2492
|
+
flex-flow: column;
|
|
2493
|
+
}
|
|
2889
2494
|
|
|
2890
2495
|
.ab-Dialog:focus-within, .ab-Dialog:focus {
|
|
2891
|
-
|
|
2892
|
-
|
|
2496
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2497
|
+
outline: var(--ab-focus__outline);
|
|
2498
|
+
}
|
|
2893
2499
|
|
|
2894
2500
|
.ab-Dialog__close-button {
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2501
|
+
position: absolute;
|
|
2502
|
+
right: 6px;
|
|
2503
|
+
top: 6px;
|
|
2504
|
+
font-size: var(--ab-font-size-3);
|
|
2505
|
+
font-weight: 700;
|
|
2506
|
+
line-height: 1;
|
|
2507
|
+
color: var(--ab-cmp-dialog-close-button__color);
|
|
2508
|
+
text-shadow: 0 1px 0 #fff;
|
|
2509
|
+
cursor: pointer;
|
|
2510
|
+
}
|
|
2904
2511
|
|
|
2905
2512
|
.ab-Dialog-fixed-wrapper {
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2513
|
+
position: fixed;
|
|
2514
|
+
margin: auto;
|
|
2515
|
+
left: 0;
|
|
2516
|
+
top: 0;
|
|
2517
|
+
right: 0;
|
|
2518
|
+
bottom: 0;
|
|
2519
|
+
display: flex;
|
|
2520
|
+
align-items: center;
|
|
2521
|
+
justify-content: center;
|
|
2522
|
+
}
|
|
2915
2523
|
|
|
2916
2524
|
.ab-Dropdown {
|
|
2917
2525
|
background: var(--ab-color-defaultbackground);
|
|
@@ -2921,43 +2529,51 @@ template {
|
|
|
2921
2529
|
min-width: 120px;
|
|
2922
2530
|
max-width: 300px;
|
|
2923
2531
|
font-family: var(--ab-cmp-dropdown__font-family);
|
|
2924
|
-
font-size: var(--ab-cmp-dropdown__font-size);
|
|
2532
|
+
font-size: var(--ab-cmp-dropdown__font-size);
|
|
2533
|
+
}
|
|
2925
2534
|
|
|
2926
2535
|
.ab-Dropdown--disabled {
|
|
2927
|
-
|
|
2536
|
+
opacity: 0.5;
|
|
2537
|
+
}
|
|
2928
2538
|
|
|
2929
2539
|
.ab-Dropdown--focused {
|
|
2930
|
-
|
|
2931
|
-
|
|
2540
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2541
|
+
outline: var(--ab-focus__outline);
|
|
2542
|
+
}
|
|
2932
2543
|
|
|
2933
2544
|
.ab-Dropdown__text {
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2545
|
+
color: var(--ab-cmp-dropdown__color);
|
|
2546
|
+
padding: var(--ab-cmp-dropdown__padding);
|
|
2547
|
+
pointer-events: none;
|
|
2548
|
+
position: relative;
|
|
2549
|
+
cursor: pointer;
|
|
2550
|
+
overflow: hidden;
|
|
2551
|
+
text-overflow: ellipsis;
|
|
2552
|
+
white-space: nowrap;
|
|
2553
|
+
flex: 1;
|
|
2554
|
+
}
|
|
2943
2555
|
|
|
2944
2556
|
.ab-Dropdown--empty .ab-Dropdown__text {
|
|
2945
|
-
|
|
2557
|
+
color: var(--ab-color-text-on-defaultbackground);
|
|
2558
|
+
}
|
|
2946
2559
|
|
|
2947
2560
|
.ab-Dropdown select {
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2561
|
+
font-family: inherit;
|
|
2562
|
+
font-size: inherit;
|
|
2563
|
+
position: absolute;
|
|
2564
|
+
cursor: pointer;
|
|
2565
|
+
}
|
|
2952
2566
|
|
|
2953
2567
|
.ab-Dropdown .ab-SimpleButton {
|
|
2954
|
-
|
|
2568
|
+
color: var(--ab-cmp-dropdown__color) !important;
|
|
2569
|
+
}
|
|
2955
2570
|
|
|
2956
2571
|
.ab-DropdownButton {
|
|
2957
2572
|
position: relative;
|
|
2958
2573
|
overflow: visible;
|
|
2959
2574
|
outline: none;
|
|
2960
|
-
--ab-overlay-horizontal-align: left;
|
|
2575
|
+
--ab-overlay-horizontal-align: left;
|
|
2576
|
+
}
|
|
2961
2577
|
|
|
2962
2578
|
.ab-DropdownButton__list {
|
|
2963
2579
|
text-align: start;
|
|
@@ -2967,36 +2583,44 @@ template {
|
|
|
2967
2583
|
border: var(--ab-cmp-dropdownbutton-list__border);
|
|
2968
2584
|
border-radius: var(--ab-cmp-dropdownbutton-list__border-radius);
|
|
2969
2585
|
z-index: var(--ab-cmp-dropdownbutton-list__z-index);
|
|
2970
|
-
background: var(--ab-cmp-dropdownbutton-list__background);
|
|
2586
|
+
background: var(--ab-cmp-dropdownbutton-list__background);
|
|
2587
|
+
}
|
|
2971
2588
|
|
|
2972
2589
|
.ab-DropdownButton__content {
|
|
2973
2590
|
font-family: var(--ab__font-family);
|
|
2974
2591
|
font-size: var(--ab-font-size-2);
|
|
2975
2592
|
max-width: 100%;
|
|
2976
2593
|
width: 100%;
|
|
2977
|
-
border-spacing: 0;
|
|
2594
|
+
border-spacing: 0;
|
|
2595
|
+
}
|
|
2978
2596
|
|
|
2979
2597
|
.ab-DropdownButton__list-item {
|
|
2980
2598
|
fill: currentColor;
|
|
2981
|
-
color: var(--ab-cmp-dropdownbutton-list-item__color);
|
|
2599
|
+
color: var(--ab-cmp-dropdownbutton-list-item__color);
|
|
2600
|
+
}
|
|
2982
2601
|
|
|
2983
2602
|
.ab-DropdownButton__list-item--disabled {
|
|
2984
|
-
|
|
2603
|
+
opacity: 0.5;
|
|
2604
|
+
}
|
|
2985
2605
|
|
|
2986
2606
|
.ab-DropdownButton__list-item--not-clickable {
|
|
2987
|
-
cursor: auto;
|
|
2607
|
+
cursor: auto;
|
|
2608
|
+
}
|
|
2988
2609
|
|
|
2989
2610
|
.ab-DropdownButton__list-item--clickable:hover {
|
|
2990
2611
|
background: var(--ab-cmp-dropdownbutton-list-item-hover__background);
|
|
2991
2612
|
color: var(--ab-cmp-dropdownbutton-list-item-hover__color);
|
|
2992
2613
|
fill: currentColor;
|
|
2993
|
-
cursor: pointer;
|
|
2614
|
+
cursor: pointer;
|
|
2615
|
+
}
|
|
2994
2616
|
|
|
2995
2617
|
.ab-DropdownButton__list-item--clickable:hover .glyphicon.glyphicon {
|
|
2996
|
-
|
|
2618
|
+
color: inherit;
|
|
2619
|
+
}
|
|
2997
2620
|
|
|
2998
2621
|
.ab-DropdownButton__separator td {
|
|
2999
|
-
border-bottom: var(--ab-cmp-dropdownbutton-list-separator__border);
|
|
2622
|
+
border-bottom: var(--ab-cmp-dropdownbutton-list-separator__border);
|
|
2623
|
+
}
|
|
3000
2624
|
|
|
3001
2625
|
.ab-EmptyContent {
|
|
3002
2626
|
position: absolute;
|
|
@@ -3006,21 +2630,25 @@ template {
|
|
|
3006
2630
|
right: 0;
|
|
3007
2631
|
font-size: var(--ab-font-size-3);
|
|
3008
2632
|
text-align: center;
|
|
3009
|
-
padding: var(--ab-space-4);
|
|
2633
|
+
padding: var(--ab-space-4);
|
|
2634
|
+
}
|
|
3010
2635
|
|
|
3011
2636
|
.ab-EmptyContent p {
|
|
3012
|
-
|
|
2637
|
+
color: var(--ab-color-text-on-primary);
|
|
2638
|
+
}
|
|
3013
2639
|
|
|
3014
2640
|
.ab-EmptyContent__wrapper {
|
|
3015
2641
|
position: relative;
|
|
3016
2642
|
width: 100%;
|
|
3017
|
-
height: 100%;
|
|
2643
|
+
height: 100%;
|
|
2644
|
+
}
|
|
3018
2645
|
|
|
3019
2646
|
.ab-ErrorBox {
|
|
3020
2647
|
padding: var(--ab-cmp-error-box__padding);
|
|
3021
2648
|
border-radius: var(--ab-cmp-error-box__border-radius);
|
|
3022
2649
|
background: var(--ab-cmp-error-box__background);
|
|
3023
|
-
color: var(--ab-cmp-error-box__color);
|
|
2650
|
+
color: var(--ab-cmp-error-box__color);
|
|
2651
|
+
}
|
|
3024
2652
|
|
|
3025
2653
|
.ab-FieldWrap {
|
|
3026
2654
|
border: 1px solid var(--ab-color-inputborder);
|
|
@@ -3028,47 +2656,53 @@ template {
|
|
|
3028
2656
|
border-radius: var(--ab-cmp-field-wrap__border-radius);
|
|
3029
2657
|
background: var(--ab-cmp-field-wrap__background);
|
|
3030
2658
|
overflow: hidden;
|
|
3031
|
-
fill: var(--ab-cmp-field-wrap__fill);
|
|
2659
|
+
fill: var(--ab-cmp-field-wrap__fill);
|
|
2660
|
+
}
|
|
3032
2661
|
|
|
3033
2662
|
.ab-FieldWrap:focus-within {
|
|
3034
|
-
|
|
2663
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2664
|
+
}
|
|
3035
2665
|
|
|
3036
|
-
.ab-FieldWrap input,
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
flex: 1; }
|
|
2666
|
+
.ab-FieldWrap input, .ab-FieldWrap select, .ab-FieldWrap > * {
|
|
2667
|
+
border: none;
|
|
2668
|
+
flex: 1;
|
|
2669
|
+
}
|
|
3041
2670
|
|
|
3042
|
-
.ab-FieldWrap input,
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
box-shadow: none !important; }
|
|
2671
|
+
.ab-FieldWrap input, .ab-FieldWrap select, .ab-FieldWrap .ab-Dropdown {
|
|
2672
|
+
outline: none !important;
|
|
2673
|
+
box-shadow: none !important;
|
|
2674
|
+
}
|
|
3047
2675
|
|
|
3048
2676
|
.ab-FormLayout {
|
|
3049
2677
|
display: grid;
|
|
3050
|
-
align-items: center;
|
|
2678
|
+
align-items: center;
|
|
2679
|
+
}
|
|
3051
2680
|
|
|
3052
2681
|
.ab-FormLayout_column--label {
|
|
3053
|
-
text-align: end;
|
|
2682
|
+
text-align: end;
|
|
2683
|
+
}
|
|
3054
2684
|
|
|
3055
2685
|
.ab-HelpBlock {
|
|
3056
2686
|
padding: var(--ab-cmp-help-block__padding);
|
|
3057
2687
|
background: var(--ab-cmp-help-block__background);
|
|
3058
2688
|
border-radius: var(--ab-cmp-help-block__border-radius);
|
|
3059
|
-
color: var(--ab-cmp-help-block__color);
|
|
2689
|
+
color: var(--ab-cmp-help-block__color);
|
|
2690
|
+
}
|
|
3060
2691
|
|
|
3061
2692
|
.ab-CodeBlock {
|
|
3062
2693
|
padding: var(--ab-cmp-code-block__padding);
|
|
3063
2694
|
background: var(--ab-cmp-code-block__background);
|
|
3064
2695
|
border-radius: var(--ab-cmp-code-block__border-radius);
|
|
3065
|
-
color: var(--ab-cmp-code-block__color);
|
|
2696
|
+
color: var(--ab-cmp-code-block__color);
|
|
2697
|
+
}
|
|
3066
2698
|
|
|
3067
2699
|
input.ab-Input {
|
|
3068
|
-
background: var(--ab-cmp-input__background);
|
|
2700
|
+
background: var(--ab-cmp-input__background);
|
|
2701
|
+
}
|
|
3069
2702
|
|
|
3070
2703
|
input.ab-Input[disabled] {
|
|
3071
|
-
|
|
2704
|
+
background: var(--ab-cmp-input--disabled__background);
|
|
2705
|
+
}
|
|
3072
2706
|
|
|
3073
2707
|
.ab-Input {
|
|
3074
2708
|
position: relative;
|
|
@@ -3083,40 +2717,48 @@ input.ab-Input[disabled] {
|
|
|
3083
2717
|
/* Firefox 19+ */
|
|
3084
2718
|
/* IE 10-11 */
|
|
3085
2719
|
/* Edge */
|
|
3086
|
-
/* MODERN BROWSER */
|
|
2720
|
+
/* MODERN BROWSER */
|
|
2721
|
+
}
|
|
3087
2722
|
|
|
3088
2723
|
.ab-Input:focus {
|
|
3089
|
-
|
|
3090
|
-
|
|
2724
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2725
|
+
outline: var(--ab-focus__outline);
|
|
2726
|
+
}
|
|
3091
2727
|
|
|
3092
2728
|
.ab-Input::-webkit-input-placeholder {
|
|
3093
|
-
|
|
3094
|
-
|
|
2729
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
2730
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
2731
|
+
}
|
|
3095
2732
|
|
|
3096
2733
|
.ab-Input:-moz-placeholder {
|
|
3097
|
-
|
|
3098
|
-
|
|
2734
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
2735
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
2736
|
+
}
|
|
3099
2737
|
|
|
3100
2738
|
.ab-Input::-moz-placeholder {
|
|
3101
|
-
|
|
3102
|
-
|
|
2739
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
2740
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
2741
|
+
}
|
|
3103
2742
|
|
|
3104
2743
|
.ab-Input:-ms-input-placeholder {
|
|
3105
|
-
|
|
3106
|
-
|
|
2744
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
2745
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
2746
|
+
}
|
|
3107
2747
|
|
|
3108
2748
|
.ab-Input::-ms-input-placeholder {
|
|
3109
|
-
|
|
3110
|
-
|
|
2749
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
2750
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
2751
|
+
}
|
|
3111
2752
|
|
|
3112
2753
|
.ab-Input::placeholder {
|
|
3113
|
-
|
|
3114
|
-
|
|
2754
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
2755
|
+
opacity: var(--ab-cmp-input--placeholder__opacity);
|
|
2756
|
+
}
|
|
3115
2757
|
|
|
3116
2758
|
/* Spin Buttons modified */
|
|
3117
2759
|
|
|
3118
|
-
input[type=
|
|
3119
|
-
input[type=
|
|
2760
|
+
input[type=number].ab-Input::-webkit-outer-spin-button,
|
|
2761
|
+
input[type=number].ab-Input::-webkit-inner-spin-button {
|
|
3120
2762
|
-webkit-appearance: none;
|
|
3121
2763
|
width: 1em;
|
|
3122
2764
|
opacity: 0;
|
|
@@ -3124,17 +2766,20 @@ input[type='number'].ab-Input::-webkit-inner-spin-button {
|
|
|
3124
2766
|
top: 0;
|
|
3125
2767
|
right: 0;
|
|
3126
2768
|
bottom: 0;
|
|
3127
|
-
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;
|
|
2769
|
+
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;
|
|
2770
|
+
}
|
|
3128
2771
|
|
|
3129
|
-
input[type=
|
|
3130
|
-
input[type=
|
|
3131
|
-
input[type=
|
|
3132
|
-
opacity: 1;
|
|
2772
|
+
input[type=number].ab-Input:focus::-webkit-inner-spin-button, input[type=number].ab-Input:focus::-webkit-inner-spin-button:active,
|
|
2773
|
+
input[type=number].ab-Input:hover::-webkit-inner-spin-button,
|
|
2774
|
+
input[type=number].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
2775
|
+
opacity: 1;
|
|
2776
|
+
}
|
|
3133
2777
|
|
|
3134
2778
|
.ab-ListGroup {
|
|
3135
2779
|
display: flex;
|
|
3136
2780
|
flex-flow: column;
|
|
3137
|
-
align-items: flex-start;
|
|
2781
|
+
align-items: flex-start;
|
|
2782
|
+
}
|
|
3138
2783
|
|
|
3139
2784
|
:root {
|
|
3140
2785
|
--ab-cmp-listgroupitem__width: 100%;
|
|
@@ -3144,7 +2789,8 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3144
2789
|
--ab-cmp-listgroupitem--odd__background: var(--ab-color-primarylight);
|
|
3145
2790
|
--ab-cmp-listgroupitem--odd__color: var(--ab-color-text-on-primary);
|
|
3146
2791
|
--ab-cmp-listgroupitem--active__background: var(--ab-color-secondarylight);
|
|
3147
|
-
--ab-cmp-listgroupitem--active__color: var(--ab-color-text-on-secondarylight);
|
|
2792
|
+
--ab-cmp-listgroupitem--active__color: var(--ab-color-text-on-secondarylight);
|
|
2793
|
+
}
|
|
3148
2794
|
|
|
3149
2795
|
.ab-Modal {
|
|
3150
2796
|
position: fixed;
|
|
@@ -3153,10 +2799,12 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3153
2799
|
right: 0;
|
|
3154
2800
|
bottom: 0;
|
|
3155
2801
|
z-index: 1000;
|
|
3156
|
-
font-family: var(--ab__font-family);
|
|
2802
|
+
font-family: var(--ab__font-family);
|
|
2803
|
+
}
|
|
3157
2804
|
|
|
3158
2805
|
.ab-Modal.ab-Modal--resizable-and-movable {
|
|
3159
|
-
position: relative;
|
|
2806
|
+
position: relative;
|
|
2807
|
+
}
|
|
3160
2808
|
|
|
3161
2809
|
.ab-Modal-backdrop {
|
|
3162
2810
|
background: var(--ab-cmp-modal-backdrop__background);
|
|
@@ -3165,68 +2813,81 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3165
2813
|
left: 0;
|
|
3166
2814
|
right: 0;
|
|
3167
2815
|
top: 0;
|
|
3168
|
-
bottom: 0;
|
|
2816
|
+
bottom: 0;
|
|
2817
|
+
}
|
|
3169
2818
|
|
|
3170
2819
|
.ab-Tabs {
|
|
3171
2820
|
display: flex;
|
|
3172
|
-
flex-direction: column;
|
|
2821
|
+
flex-direction: column;
|
|
2822
|
+
}
|
|
3173
2823
|
|
|
3174
|
-
.ab-Tabs[data-selected-index=
|
|
2824
|
+
.ab-Tabs[data-selected-index="0"] .ab-Tabs__Filler:first-child,
|
|
3175
2825
|
.ab-Tabs__Tab--before-active {
|
|
3176
|
-
border-bottom-right-radius: var(--ab__border-radius);
|
|
2826
|
+
border-bottom-right-radius: var(--ab__border-radius);
|
|
2827
|
+
}
|
|
3177
2828
|
|
|
3178
2829
|
.ab-Tabs__Strip {
|
|
3179
2830
|
z-index: 10;
|
|
3180
|
-
overflow: visible;
|
|
2831
|
+
overflow: visible;
|
|
2832
|
+
}
|
|
3181
2833
|
|
|
3182
2834
|
.ab-Tabs__Tab {
|
|
3183
2835
|
cursor: pointer;
|
|
3184
|
-
background: var(--ab-cmp-tabs-strip__background);
|
|
2836
|
+
background: var(--ab-cmp-tabs-strip__background);
|
|
2837
|
+
}
|
|
3185
2838
|
|
|
3186
2839
|
.ab-Tabs__Tab:focus {
|
|
3187
|
-
|
|
2840
|
+
outline: none;
|
|
2841
|
+
}
|
|
3188
2842
|
|
|
3189
2843
|
.ab-Tabs__Tab:focus:after {
|
|
3190
|
-
|
|
2844
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2845
|
+
}
|
|
3191
2846
|
|
|
3192
2847
|
.ab-Tabs__Filler {
|
|
3193
|
-
background: var(--ab-cmp-tabs-strip__background);
|
|
2848
|
+
background: var(--ab-cmp-tabs-strip__background);
|
|
2849
|
+
}
|
|
3194
2850
|
|
|
3195
2851
|
.ab-Tabs__Tab--active + .ab-Tabs__Filler,
|
|
3196
2852
|
.ab-Tabs__Tab--active + .ab-Tabs__Tab {
|
|
3197
|
-
border-bottom-left-radius: var(--ab__border-radius);
|
|
2853
|
+
border-bottom-left-radius: var(--ab__border-radius);
|
|
2854
|
+
}
|
|
3198
2855
|
|
|
3199
2856
|
.ab-Tabs__Tab--active {
|
|
3200
2857
|
position: relative;
|
|
3201
|
-
z-index: 30;
|
|
2858
|
+
z-index: 30;
|
|
2859
|
+
}
|
|
3202
2860
|
|
|
3203
2861
|
.ab-Tabs__Tab--active:after {
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
2862
|
+
content: "";
|
|
2863
|
+
pointer-events: none;
|
|
2864
|
+
position: absolute;
|
|
2865
|
+
top: 0;
|
|
2866
|
+
bottom: 5px;
|
|
2867
|
+
right: 0;
|
|
2868
|
+
left: 0;
|
|
2869
|
+
z-index: -2;
|
|
2870
|
+
border-top-left-radius: var(--ab__border-radius);
|
|
2871
|
+
border-top-right-radius: var(--ab__border-radius);
|
|
2872
|
+
}
|
|
3214
2873
|
|
|
3215
2874
|
.ab-Tabs__Tab--active:before {
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
2875
|
+
content: "";
|
|
2876
|
+
position: absolute;
|
|
2877
|
+
pointer-events: none;
|
|
2878
|
+
border-top-left-radius: var(--ab__border-radius);
|
|
2879
|
+
border-top-right-radius: var(--ab__border-radius);
|
|
2880
|
+
z-index: -1;
|
|
2881
|
+
left: 0;
|
|
2882
|
+
top: 0;
|
|
2883
|
+
width: 100%;
|
|
2884
|
+
height: 100%;
|
|
2885
|
+
background: var(--ab-cmp-tabs-active__background);
|
|
2886
|
+
}
|
|
3227
2887
|
|
|
3228
2888
|
.ab-Tabs__Strip {
|
|
3229
|
-
background: var(--ab-cmp-tabs-active__background);
|
|
2889
|
+
background: var(--ab-cmp-tabs-active__background);
|
|
2890
|
+
}
|
|
3230
2891
|
|
|
3231
2892
|
.ab-Tabs__Body {
|
|
3232
2893
|
background: var(--ab-cmp-tabs-active__background);
|
|
@@ -3234,76 +2895,91 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3234
2895
|
flex: 1;
|
|
3235
2896
|
overflow: auto;
|
|
3236
2897
|
display: flex;
|
|
3237
|
-
flex-flow: column;
|
|
2898
|
+
flex-flow: column;
|
|
2899
|
+
}
|
|
3238
2900
|
|
|
3239
|
-
.ab-Tabs[data-selected-index=
|
|
3240
|
-
border-top-left-radius: 0;
|
|
2901
|
+
.ab-Tabs[data-selected-index="0"] .ab-Tabs__Body {
|
|
2902
|
+
border-top-left-radius: 0;
|
|
2903
|
+
}
|
|
3241
2904
|
|
|
3242
2905
|
.ab-Panel {
|
|
3243
2906
|
display: flex;
|
|
3244
2907
|
flex-flow: column;
|
|
3245
2908
|
max-height: var(--ab-cmp-panel__max-height);
|
|
3246
2909
|
overflow: auto;
|
|
3247
|
-
font-size: var(--ab-cmp-panel__font-size);
|
|
2910
|
+
font-size: var(--ab-cmp-panel__font-size);
|
|
2911
|
+
}
|
|
3248
2912
|
|
|
3249
2913
|
.ab-Panel .glyphicon {
|
|
3250
|
-
|
|
3251
|
-
|
|
2914
|
+
-webkit-text-fill-color: var(--ab-cmp-panel-icon__fill);
|
|
2915
|
+
fill: var(--ab-cmp-panel-icon__fill);
|
|
2916
|
+
}
|
|
3252
2917
|
|
|
3253
2918
|
.ab-Panel--variant-modern {
|
|
3254
|
-
|
|
2919
|
+
--ab-cmp-panel__border-radius: var(--ab-space-1);
|
|
2920
|
+
}
|
|
3255
2921
|
|
|
3256
2922
|
.ab-Panel__header {
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
2923
|
+
flex: none;
|
|
2924
|
+
background: var(--ab-cmp-panel_header__background);
|
|
2925
|
+
color: var(--ab-cmp-panel_header__color);
|
|
2926
|
+
font-size: var(--ab-cmp-panel_header__font-size);
|
|
2927
|
+
padding: var(--ab-cmp-panel_header__padding);
|
|
2928
|
+
border-top-left-radius: var(--ab-cmp-panel__border-radius);
|
|
2929
|
+
border-top-right-radius: var(--ab-cmp-panel__border-radius);
|
|
2930
|
+
border: var(--ab-cmp-panel__border);
|
|
2931
|
+
}
|
|
3265
2932
|
|
|
3266
2933
|
.ab-Panel__header--variant-primary {
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
2934
|
+
background: var(--ab-cmp-panel_header--variant-primary__background);
|
|
2935
|
+
color: var(--ab-cmp-panel_header--variant-primary__color);
|
|
2936
|
+
fill: currentColor;
|
|
2937
|
+
}
|
|
3270
2938
|
|
|
3271
2939
|
.ab-Panel__header--variant-modern {
|
|
3272
|
-
|
|
3273
|
-
|
|
2940
|
+
border: none;
|
|
2941
|
+
background: var(--ab-cmp-panel_header--variant-modern__background);
|
|
2942
|
+
}
|
|
3274
2943
|
|
|
3275
2944
|
.ab-Panel__body {
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
2945
|
+
position: relative;
|
|
2946
|
+
padding: var(--ab-cmp-panel__padding);
|
|
2947
|
+
border: var(--ab-cmp-panel__border);
|
|
2948
|
+
background: var(--ab-cmp-panel_body__background);
|
|
2949
|
+
color: var(--ab-cmp-panel_body__color);
|
|
2950
|
+
flex: 1;
|
|
2951
|
+
border-bottom-left-radius: var(--ab-cmp-panel__border-radius);
|
|
2952
|
+
border-bottom-right-radius: var(--ab-cmp-panel__border-radius);
|
|
2953
|
+
}
|
|
3284
2954
|
|
|
3285
2955
|
.ab-Panel__body--scroll-auto {
|
|
3286
|
-
|
|
2956
|
+
overflow: auto;
|
|
2957
|
+
}
|
|
3287
2958
|
|
|
3288
2959
|
.ab-Panel__body--variant-modern {
|
|
3289
|
-
|
|
3290
|
-
|
|
2960
|
+
border: none;
|
|
2961
|
+
background: var(--ab-cmp-panel_body--variant-modern__background);
|
|
2962
|
+
}
|
|
3291
2963
|
|
|
3292
2964
|
.ab-Panel--with-header > .ab-Panel__body {
|
|
3293
|
-
|
|
2965
|
+
border-top: none;
|
|
2966
|
+
}
|
|
3294
2967
|
|
|
3295
2968
|
.ab-Panel--no-header > .ab-Panel__body {
|
|
3296
|
-
|
|
3297
|
-
|
|
2969
|
+
border-top-left-radius: var(--ab-cmp-panel__border-radius);
|
|
2970
|
+
border-top-right-radius: var(--ab-cmp-panel__border-radius);
|
|
2971
|
+
}
|
|
3298
2972
|
|
|
3299
2973
|
.ab-SimpleButton {
|
|
3300
2974
|
padding: var(--ab-cmp-simple-button__padding);
|
|
3301
2975
|
font-family: var(--ab-cmp-simple-button__font-family);
|
|
3302
|
-
font-size: var(--ab-cmp-simple-button__font-size);
|
|
2976
|
+
font-size: var(--ab-cmp-simple-button__font-size);
|
|
2977
|
+
}
|
|
3303
2978
|
|
|
3304
2979
|
.ab-SimpleButton:focus {
|
|
3305
|
-
|
|
3306
|
-
|
|
2980
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2981
|
+
outline: var(--ab-focus__outline);
|
|
2982
|
+
}
|
|
3307
2983
|
|
|
3308
2984
|
.ab-SimpleButton.ab-SimpleButton {
|
|
3309
2985
|
vertical-align: middle;
|
|
@@ -3315,143 +2991,182 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3315
2991
|
flex-flow: row;
|
|
3316
2992
|
flex: none;
|
|
3317
2993
|
align-items: center;
|
|
3318
|
-
fill: currentColor;
|
|
2994
|
+
fill: currentColor;
|
|
2995
|
+
}
|
|
3319
2996
|
|
|
3320
2997
|
.ab-SimpleButton.ab-SimpleButton > * {
|
|
3321
|
-
|
|
2998
|
+
z-index: 1;
|
|
2999
|
+
}
|
|
3322
3000
|
|
|
3323
3001
|
.ab-SimpleButton.ab-SimpleButton svg {
|
|
3324
|
-
|
|
3002
|
+
vertical-align: middle;
|
|
3003
|
+
}
|
|
3325
3004
|
|
|
3326
3005
|
.ab-SimpleButton.ab-SimpleButton--tone-neutral {
|
|
3327
|
-
|
|
3006
|
+
color: var(--ab-color-text-on-primary);
|
|
3007
|
+
}
|
|
3328
3008
|
|
|
3329
3009
|
.ab-SimpleButton.ab-SimpleButton--tone-none {
|
|
3330
|
-
|
|
3010
|
+
color: inherit;
|
|
3011
|
+
}
|
|
3331
3012
|
|
|
3332
3013
|
.ab-SimpleButton.ab-SimpleButton--tone-success {
|
|
3333
|
-
|
|
3014
|
+
color: var(--ab-color-success);
|
|
3015
|
+
}
|
|
3334
3016
|
|
|
3335
3017
|
.ab-SimpleButton.ab-SimpleButton--tone-accent {
|
|
3336
|
-
|
|
3018
|
+
color: var(--ab-color-text-on-secondary);
|
|
3019
|
+
}
|
|
3337
3020
|
|
|
3338
3021
|
.ab-SimpleButton.ab-SimpleButton--tone-error {
|
|
3339
|
-
|
|
3022
|
+
color: var(--ab-color-error);
|
|
3023
|
+
}
|
|
3340
3024
|
|
|
3341
3025
|
.ab-SimpleButton.ab-SimpleButton--tone-warning {
|
|
3342
|
-
|
|
3026
|
+
color: var(--ab-color-warn);
|
|
3027
|
+
}
|
|
3343
3028
|
|
|
3344
3029
|
.ab-SimpleButton.ab-SimpleButton--tone-info {
|
|
3345
|
-
|
|
3030
|
+
color: var(--ab-color-info);
|
|
3031
|
+
}
|
|
3346
3032
|
|
|
3347
3033
|
.ab-SimpleButton.ab-SimpleButton--disabled {
|
|
3348
|
-
|
|
3034
|
+
opacity: 0.5;
|
|
3035
|
+
}
|
|
3349
3036
|
|
|
3350
3037
|
.ab-SimpleButton.ab-SimpleButton:before {
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3038
|
+
content: "";
|
|
3039
|
+
position: absolute;
|
|
3040
|
+
display: block;
|
|
3041
|
+
left: 0;
|
|
3042
|
+
right: 0;
|
|
3043
|
+
top: 0;
|
|
3044
|
+
bottom: 0;
|
|
3045
|
+
pointer-events: none;
|
|
3046
|
+
z-index: 0;
|
|
3047
|
+
border-radius: inherit;
|
|
3048
|
+
}
|
|
3361
3049
|
|
|
3362
3050
|
.ab-SimpleButton.ab-SimpleButton--variant-outlined, .ab-SimpleButton.ab-SimpleButton--variant-text {
|
|
3363
|
-
|
|
3051
|
+
transition: opacity 0.2s;
|
|
3052
|
+
}
|
|
3364
3053
|
|
|
3365
3054
|
.ab-SimpleButton.ab-SimpleButton--variant-outlined:before, .ab-SimpleButton.ab-SimpleButton--variant-text:before {
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3055
|
+
content: "";
|
|
3056
|
+
opacity: 0;
|
|
3057
|
+
transition: opacity 0.2s;
|
|
3058
|
+
}
|
|
3369
3059
|
|
|
3370
3060
|
.ab-SimpleButton.ab-SimpleButton--variant-outlined:hover:not(.ab-SimpleButton--disabled), .ab-SimpleButton.ab-SimpleButton--variant-text:hover:not(.ab-SimpleButton--disabled) {
|
|
3371
|
-
|
|
3061
|
+
cursor: pointer;
|
|
3062
|
+
}
|
|
3372
3063
|
|
|
3373
3064
|
.ab-SimpleButton.ab-SimpleButton--variant-outlined:hover:not(.ab-SimpleButton--disabled):before, .ab-SimpleButton.ab-SimpleButton--variant-text:hover:not(.ab-SimpleButton--disabled):before {
|
|
3374
|
-
|
|
3375
|
-
|
|
3065
|
+
opacity: 0.15;
|
|
3066
|
+
background-color: currentColor;
|
|
3067
|
+
}
|
|
3376
3068
|
|
|
3377
3069
|
.ab-SimpleButton.ab-SimpleButton--variant-text {
|
|
3378
|
-
|
|
3070
|
+
background: transparent;
|
|
3071
|
+
}
|
|
3379
3072
|
|
|
3380
3073
|
.ab-SimpleButton.ab-SimpleButton--variant-outlined {
|
|
3381
|
-
|
|
3382
|
-
|
|
3074
|
+
background: var(--ab-cmp-simple-button--outlined__background);
|
|
3075
|
+
border: var(--ab-cmp-simple-button--outlined__border);
|
|
3076
|
+
}
|
|
3383
3077
|
|
|
3384
3078
|
.ab-SimpleButton.ab-SimpleButton--variant-raised {
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3079
|
+
color: var(--ab-color-text-on-primary);
|
|
3080
|
+
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);
|
|
3081
|
+
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);
|
|
3082
|
+
}
|
|
3388
3083
|
|
|
3389
3084
|
.ab-SimpleButton.ab-SimpleButton--variant-raised:focus {
|
|
3390
|
-
|
|
3085
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
3086
|
+
}
|
|
3391
3087
|
|
|
3392
3088
|
.ab-SimpleButton.ab-SimpleButton--variant-raised:hover {
|
|
3393
|
-
|
|
3089
|
+
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);
|
|
3090
|
+
}
|
|
3394
3091
|
|
|
3395
3092
|
.ab-SimpleButton.ab-SimpleButton--variant-raised:hover:not(.ab-SimpleButton--disabled) {
|
|
3396
|
-
|
|
3093
|
+
cursor: pointer;
|
|
3094
|
+
}
|
|
3397
3095
|
|
|
3398
3096
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-success {
|
|
3399
|
-
|
|
3400
|
-
|
|
3097
|
+
background: var(--ab-color-success);
|
|
3098
|
+
color: var(--ab-color-text-on-success);
|
|
3099
|
+
}
|
|
3401
3100
|
|
|
3402
3101
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-success:not(.ab-SimpleButton--disabled) {
|
|
3403
|
-
|
|
3102
|
+
opacity: 1;
|
|
3103
|
+
}
|
|
3404
3104
|
|
|
3405
3105
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-accent {
|
|
3406
|
-
|
|
3407
|
-
|
|
3106
|
+
background: var(--ab-color-secondary);
|
|
3107
|
+
color: var(--ab-color-text-on-secondary);
|
|
3108
|
+
}
|
|
3408
3109
|
|
|
3409
3110
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-accent:not(.ab-SimpleButton--disabled) {
|
|
3410
|
-
|
|
3111
|
+
opacity: 1;
|
|
3112
|
+
}
|
|
3411
3113
|
|
|
3412
3114
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-none {
|
|
3413
|
-
|
|
3115
|
+
background: transparent;
|
|
3116
|
+
}
|
|
3414
3117
|
|
|
3415
3118
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-none:not(.ab-SimpleButton--disabled) {
|
|
3416
|
-
|
|
3119
|
+
opacity: 1;
|
|
3120
|
+
}
|
|
3417
3121
|
|
|
3418
3122
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-neutral {
|
|
3419
|
-
|
|
3420
|
-
|
|
3123
|
+
background: var(--ab-color-primary);
|
|
3124
|
+
color: var(--ab-color-text-on-primary);
|
|
3125
|
+
}
|
|
3421
3126
|
|
|
3422
3127
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-neutral:not(.ab-SimpleButton--disabled) {
|
|
3423
|
-
|
|
3128
|
+
opacity: 1;
|
|
3129
|
+
}
|
|
3424
3130
|
|
|
3425
3131
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-error {
|
|
3426
|
-
|
|
3427
|
-
|
|
3132
|
+
background: var(--ab-color-error);
|
|
3133
|
+
color: var(--ab-color-text-on-error);
|
|
3134
|
+
}
|
|
3428
3135
|
|
|
3429
3136
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-error:not(.ab-SimpleButton--disabled) {
|
|
3430
|
-
|
|
3137
|
+
opacity: 1;
|
|
3138
|
+
}
|
|
3431
3139
|
|
|
3432
3140
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-warning {
|
|
3433
|
-
|
|
3434
|
-
|
|
3141
|
+
background: var(--ab-color-warn);
|
|
3142
|
+
color: var(--ab-color-text-on-warn);
|
|
3143
|
+
}
|
|
3435
3144
|
|
|
3436
3145
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-warning:not(.ab-SimpleButton--disabled) {
|
|
3437
|
-
|
|
3146
|
+
opacity: 1;
|
|
3147
|
+
}
|
|
3438
3148
|
|
|
3439
3149
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-info {
|
|
3440
|
-
|
|
3441
|
-
|
|
3150
|
+
background: var(--ab-color-info);
|
|
3151
|
+
color: var(--ab-color-text-on-info);
|
|
3152
|
+
}
|
|
3442
3153
|
|
|
3443
3154
|
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-info:not(.ab-SimpleButton--disabled) {
|
|
3444
|
-
|
|
3155
|
+
opacity: 1;
|
|
3156
|
+
}
|
|
3445
3157
|
|
|
3446
3158
|
.ab-SimpleButton.ab-SimpleButton--font-weight\=normal {
|
|
3447
|
-
font-weight: normal;
|
|
3159
|
+
font-weight: normal;
|
|
3160
|
+
}
|
|
3448
3161
|
|
|
3449
3162
|
.ab-SimpleButton.ab-SimpleButton--font-weight\=bold,
|
|
3450
3163
|
.ab-SimpleButton.ab-SimpleButton--font-weight\=700 {
|
|
3451
|
-
font-weight: 700;
|
|
3164
|
+
font-weight: 700;
|
|
3165
|
+
}
|
|
3452
3166
|
|
|
3453
3167
|
.ab-SimpleButton.ab-SimpleButton--font-weight\=bolder {
|
|
3454
|
-
font-weight: 800;
|
|
3168
|
+
font-weight: 800;
|
|
3169
|
+
}
|
|
3455
3170
|
|
|
3456
3171
|
.ab-Textarea {
|
|
3457
3172
|
padding: var(--ab-cmp-textarea__padding);
|
|
@@ -3460,35 +3175,40 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3460
3175
|
color: var(--ab-cmp-textarea__color);
|
|
3461
3176
|
font-family: var(--ab-cmp-textarea__font-family);
|
|
3462
3177
|
font-size: var(--ab-cmp-textarea__font-size);
|
|
3463
|
-
background: var(--ab-cmp-textarea__background);
|
|
3178
|
+
background: var(--ab-cmp-textarea__background);
|
|
3179
|
+
}
|
|
3464
3180
|
|
|
3465
3181
|
.ab-Textarea[disabled] {
|
|
3466
|
-
|
|
3182
|
+
background: var(--ab-cmp-textarea--disabled__background);
|
|
3183
|
+
}
|
|
3467
3184
|
|
|
3468
3185
|
.ab-Textarea:focus {
|
|
3469
|
-
|
|
3470
|
-
|
|
3186
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
3187
|
+
outline: var(--ab-focus__outline);
|
|
3188
|
+
}
|
|
3471
3189
|
|
|
3472
3190
|
.ab-Tooltip {
|
|
3473
3191
|
pointer-events: none;
|
|
3474
3192
|
padding: var(--ab-space-1) var(--ab-space-2);
|
|
3475
|
-
box-shadow: 2px 2px 10px
|
|
3193
|
+
box-shadow: 2px 2px 10px hsla(0deg, 0%, 0%, 0.1);
|
|
3476
3194
|
white-space: nowrap;
|
|
3477
3195
|
font-size: var(--ab-cmp-tooltip__font-size);
|
|
3478
|
-
color: var(--ab-cmp-tooltip__color);
|
|
3196
|
+
color: var(--ab-cmp-tooltip__color);
|
|
3197
|
+
}
|
|
3479
3198
|
|
|
3480
3199
|
.ab-Tooltip:before {
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3200
|
+
border: var(--ab-cmp-tooltip__border);
|
|
3201
|
+
content: "";
|
|
3202
|
+
position: absolute;
|
|
3203
|
+
border-radius: var(--ab__border-radius);
|
|
3204
|
+
width: 100%;
|
|
3205
|
+
height: 100%;
|
|
3206
|
+
left: 0;
|
|
3207
|
+
top: 0;
|
|
3208
|
+
opacity: var(--ab-cmp-tooltip__opacity);
|
|
3209
|
+
background: var(--ab-cmp-tooltip__background);
|
|
3210
|
+
z-index: -1;
|
|
3211
|
+
}
|
|
3492
3212
|
|
|
3493
3213
|
.ab-FileDroppable {
|
|
3494
3214
|
align-items: center;
|
|
@@ -3499,187 +3219,224 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3499
3219
|
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;
|
|
3500
3220
|
outline: var(--ab-cmp-file-droppable__outline);
|
|
3501
3221
|
outline-offset: var(--ab-cmp-file-droppable__outline-offset);
|
|
3502
|
-
background: var(--ab-cmp-file-droppable__background);
|
|
3222
|
+
background: var(--ab-cmp-file-droppable__background);
|
|
3223
|
+
}
|
|
3503
3224
|
|
|
3504
3225
|
.ab-FileDroppable,
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3226
|
+
.ab-FileDroppable input,
|
|
3227
|
+
.ab-FileDroppable button,
|
|
3228
|
+
.ab-FileDroppable .ab-SimpleButton {
|
|
3229
|
+
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;
|
|
3230
|
+
fill: currentColor;
|
|
3231
|
+
}
|
|
3510
3232
|
|
|
3511
3233
|
.ab-FileDroppable,
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3234
|
+
.ab-FileDroppable input,
|
|
3235
|
+
.ab-FileDroppable button {
|
|
3236
|
+
color: var(--ab-cmp-file-droppable__color);
|
|
3237
|
+
}
|
|
3515
3238
|
|
|
3516
3239
|
.ab-FileDroppable.ab-FileDroppable--drag-over {
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3240
|
+
outline-offset: var(--ab-cmp-file-droppable--drag-over__outline-offset);
|
|
3241
|
+
outline: var(--ab-cmp-file-droppable--drag-over__outline);
|
|
3242
|
+
background: var(--ab-cmp-file-droppable--drag-over__background);
|
|
3243
|
+
color: var(--ab-cmp-file-droppable--drag-over__color);
|
|
3244
|
+
}
|
|
3521
3245
|
|
|
3522
3246
|
.ab-FileDroppable.ab-FileDroppable--drag-over * {
|
|
3523
|
-
|
|
3247
|
+
pointer-events: none;
|
|
3248
|
+
}
|
|
3524
3249
|
|
|
3525
3250
|
.ab-FileDroppable,
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3251
|
+
.ab-FileDroppable *,
|
|
3252
|
+
.ab-FileDroppable *:before,
|
|
3253
|
+
.ab-FileDroppable *:after {
|
|
3254
|
+
box-sizing: border-box;
|
|
3255
|
+
}
|
|
3530
3256
|
|
|
3531
3257
|
.ab-WizardPanel > .ab-Panel__body {
|
|
3532
3258
|
display: flex;
|
|
3533
|
-
flex-flow: column;
|
|
3259
|
+
flex-flow: column;
|
|
3260
|
+
}
|
|
3534
3261
|
|
|
3535
3262
|
.ab-Dashboard {
|
|
3536
3263
|
z-index: 1000;
|
|
3537
3264
|
user-select: none;
|
|
3538
3265
|
background: var(--ab-dashboard-gap__background);
|
|
3539
3266
|
color: var(--ab-dashboard__color);
|
|
3540
|
-
font-family: var(--ab-dashboard__font-family);
|
|
3267
|
+
font-family: var(--ab-dashboard__font-family);
|
|
3268
|
+
}
|
|
3541
3269
|
|
|
3542
3270
|
.ab-Dashboard--inline:not(.ab-Dashboard--collapsed) {
|
|
3543
|
-
|
|
3271
|
+
display: flex;
|
|
3272
|
+
}
|
|
3544
3273
|
|
|
3545
3274
|
.ab-Dashboard__header {
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3275
|
+
display: flex;
|
|
3276
|
+
align-items: stretch;
|
|
3277
|
+
background: var(--ab-dashboard-header__background);
|
|
3278
|
+
color: var(--ab-dashboard-header__color);
|
|
3279
|
+
height: 40px;
|
|
3280
|
+
padding: 0 var(--ab-space-2);
|
|
3281
|
+
}
|
|
3552
3282
|
|
|
3553
3283
|
.ab-Dashboard__header-left, .ab-Dashboard__header-right {
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3284
|
+
display: flex;
|
|
3285
|
+
align-items: center;
|
|
3286
|
+
flex: 1;
|
|
3287
|
+
}
|
|
3557
3288
|
|
|
3558
3289
|
.ab-Dashboard__header-left {
|
|
3559
|
-
|
|
3290
|
+
justify-content: flex-start;
|
|
3291
|
+
}
|
|
3560
3292
|
|
|
3561
3293
|
.ab-Dashboard__header-right {
|
|
3562
|
-
|
|
3294
|
+
justify-content: flex-end;
|
|
3295
|
+
}
|
|
3563
3296
|
|
|
3564
3297
|
.ab-Dashboard__title {
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3298
|
+
display: flex;
|
|
3299
|
+
align-items: center;
|
|
3300
|
+
padding: 0 var(--ab-space-3);
|
|
3301
|
+
font-weight: bold;
|
|
3302
|
+
font-size: var(--ab-font-size-4);
|
|
3303
|
+
}
|
|
3570
3304
|
|
|
3571
3305
|
.ab-Dashboard__tabs {
|
|
3572
|
-
|
|
3573
|
-
|
|
3306
|
+
align-self: flex-end;
|
|
3307
|
+
margin-left: var(--ab-space-2);
|
|
3308
|
+
}
|
|
3574
3309
|
|
|
3575
3310
|
.ab-Dashboard__tab {
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3311
|
+
border: none;
|
|
3312
|
+
outline: none;
|
|
3313
|
+
cursor: pointer;
|
|
3314
|
+
font-size: var(--ab-font-size-3);
|
|
3315
|
+
border-radius: var(--ab__border-radius) var(--ab__border-radius) 0 0;
|
|
3316
|
+
padding: 8px 12px 12px 12px;
|
|
3317
|
+
color: var(--ab-dashboard-header__color);
|
|
3318
|
+
background: var(--ab-dashboard-header__background);
|
|
3319
|
+
}
|
|
3584
3320
|
|
|
3585
3321
|
.ab-Dashboard__tab--active {
|
|
3586
|
-
|
|
3587
|
-
|
|
3322
|
+
color: var(--ab-dashboard__color);
|
|
3323
|
+
background: var(--ab-dashboard__background);
|
|
3324
|
+
}
|
|
3588
3325
|
|
|
3589
3326
|
.ab-Dashboard__content {
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3327
|
+
display: flex;
|
|
3328
|
+
grid-gap: var(--ab-dashboard-gap-size);
|
|
3329
|
+
flex-flow: var(--ab-dashboard-wrap);
|
|
3330
|
+
align-items: stretch;
|
|
3331
|
+
flex: 1;
|
|
3332
|
+
overflow-x: auto;
|
|
3333
|
+
padding: var(--ab-dashboard-gap-size);
|
|
3334
|
+
}
|
|
3597
3335
|
|
|
3598
3336
|
.ab-Dashboard__container {
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3337
|
+
display: flex;
|
|
3338
|
+
flex-shrink: 0;
|
|
3339
|
+
background: var(--ab-dashboard__background);
|
|
3340
|
+
}
|
|
3602
3341
|
|
|
3603
3342
|
.ab-Dashboard__content-buttons {
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3343
|
+
display: flex;
|
|
3344
|
+
flex-direction: column;
|
|
3345
|
+
align-self: stretch;
|
|
3346
|
+
padding: var(--ab-space-2);
|
|
3347
|
+
border-left: 1px solid var(--ab-dashboard__border);
|
|
3348
|
+
}
|
|
3609
3349
|
|
|
3610
3350
|
.ab-Dashboard__toolbar {
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3351
|
+
display: flex;
|
|
3352
|
+
flex-direction: column;
|
|
3353
|
+
justify-content: space-between;
|
|
3354
|
+
font-size: var(--ab-font-size-3);
|
|
3355
|
+
}
|
|
3615
3356
|
|
|
3616
3357
|
.ab-Dashboard__toolbar-content {
|
|
3617
|
-
|
|
3618
|
-
|
|
3358
|
+
padding: var(--ab-space-2) var(--ab-space-2) var(--ab-space-1) var(--ab-space-2);
|
|
3359
|
+
display: flex;
|
|
3360
|
+
}
|
|
3619
3361
|
|
|
3620
3362
|
.ab-Dashboard__toolbar-title {
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3363
|
+
display: flex;
|
|
3364
|
+
align-items: center;
|
|
3365
|
+
justify-content: center;
|
|
3366
|
+
font-size: var(--ab-font-size-2);
|
|
3367
|
+
padding: 0 var(--ab-space-1) 2px var(--ab-space-2);
|
|
3368
|
+
opacity: 0.7;
|
|
3369
|
+
}
|
|
3627
3370
|
|
|
3628
3371
|
.ab-Dashboard__toolbar.ab-Dashboard__home-toolbar {
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3372
|
+
color: var(--ab-dashboard-header__color);
|
|
3373
|
+
background: var(--ab-dashboard-header__background);
|
|
3374
|
+
padding-top: var(--ab-dashboard-gap-size);
|
|
3375
|
+
padding-bottom: var(--ab-dashboard-gap-size);
|
|
3376
|
+
}
|
|
3633
3377
|
|
|
3634
3378
|
.ab-Dashboard__toolbar.ab-Dashboard__home-toolbar .ab-Dashboard__toolbar-title {
|
|
3635
|
-
|
|
3379
|
+
opacity: 1;
|
|
3380
|
+
}
|
|
3636
3381
|
|
|
3637
3382
|
.ab-Dashboard .ab-Input {
|
|
3638
|
-
|
|
3383
|
+
border: none;
|
|
3384
|
+
}
|
|
3639
3385
|
|
|
3640
3386
|
.ab-Dashboard .ab-DashboardToolbar__Export__wrap {
|
|
3641
|
-
|
|
3387
|
+
white-space: nowrap;
|
|
3388
|
+
}
|
|
3642
3389
|
|
|
3643
3390
|
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
3644
|
-
|
|
3391
|
+
padding: var(--ab-space-1);
|
|
3392
|
+
}
|
|
3645
3393
|
|
|
3646
3394
|
.ab-Dashboard .ab-StateManagement__Clear-Button,
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3395
|
+
.ab-Dashboard .ab-StateManagement__Load-Button,
|
|
3396
|
+
.ab-Dashboard .ab-StateManagement__Export-Dropdown {
|
|
3397
|
+
margin-left: var(--ab-space-1);
|
|
3398
|
+
}
|
|
3650
3399
|
|
|
3651
3400
|
.ab-GridList {
|
|
3652
|
-
--at-grid__background: transparent;
|
|
3401
|
+
--at-grid__background: transparent;
|
|
3402
|
+
}
|
|
3653
3403
|
|
|
3654
3404
|
.ab-GridList .AT-GridCell_content,
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3405
|
+
.ab-GridList .ab-ListGroupItem,
|
|
3406
|
+
.ab-GridList .AT-GridColumnCell {
|
|
3407
|
+
width: 100%;
|
|
3408
|
+
}
|
|
3658
3409
|
|
|
3659
3410
|
.ab-GridList .AT-GridHeader {
|
|
3660
|
-
|
|
3411
|
+
display: none;
|
|
3412
|
+
}
|
|
3661
3413
|
|
|
3662
3414
|
.ab-GridList.ab-padding-horizontal-0 .AT-GridColumnCell {
|
|
3663
|
-
|
|
3664
|
-
|
|
3415
|
+
padding-left: 0;
|
|
3416
|
+
padding-right: 0;
|
|
3417
|
+
}
|
|
3665
3418
|
|
|
3666
3419
|
.ab-GridList .AT-GridRow--odd {
|
|
3667
3420
|
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
3668
|
-
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
3421
|
+
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
3422
|
+
}
|
|
3669
3423
|
|
|
3670
3424
|
.ab-GridList .AT-GridRow--even {
|
|
3671
3425
|
background: var(--ab-cmp-listgroupitem__background);
|
|
3672
|
-
color: var(--ab-cmp-listgroupitem__color);
|
|
3426
|
+
color: var(--ab-cmp-listgroupitem__color);
|
|
3427
|
+
}
|
|
3673
3428
|
|
|
3674
3429
|
.ab-GridList .ab-ListGroupItem {
|
|
3675
3430
|
--ab-cmp-listgroupitem__background: transparent;
|
|
3676
|
-
--ab-cmp-listgroupitem--odd__background: transparent;
|
|
3431
|
+
--ab-cmp-listgroupitem--odd__background: transparent;
|
|
3432
|
+
}
|
|
3677
3433
|
|
|
3678
3434
|
:root {
|
|
3679
3435
|
--rdp-cell-size: var(--ab-cmp-datepicker__cell-size);
|
|
3680
3436
|
--rdp-accent-color: var(--ab-cmp-datepicker__selected-color);
|
|
3681
3437
|
--rdp-background-color: var(--ab-cmp-datepicker__hover-color);
|
|
3682
|
-
--rdp-outline: 2px solid var(--ab-cmp-datepicker__selected-color);
|
|
3438
|
+
--rdp-outline: 2px solid var(--ab-cmp-datepicker__selected-color);
|
|
3439
|
+
}
|
|
3683
3440
|
|
|
3684
3441
|
.ab-Datepicker-Overlay {
|
|
3685
3442
|
border: var(--ab-cmp-datepicker__border);
|
|
@@ -3687,122 +3444,148 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3687
3444
|
z-index: 1000;
|
|
3688
3445
|
box-shadow: var(--ab-focus__box-shadow);
|
|
3689
3446
|
outline: var(--ab-focus__outline);
|
|
3690
|
-
border-radius: var(--ab__border-radius);
|
|
3447
|
+
border-radius: var(--ab__border-radius);
|
|
3448
|
+
}
|
|
3691
3449
|
|
|
3692
3450
|
.ab-Datepicker-Overlay .rdp {
|
|
3693
|
-
|
|
3694
|
-
|
|
3451
|
+
font-size: var(--ab-cmp-datepicker__font-size);
|
|
3452
|
+
font-family: var(--ab-cmp-datepicker__font-family);
|
|
3453
|
+
}
|
|
3695
3454
|
|
|
3696
3455
|
.ab-Datepicker-Overlay .rdp .rdp-weeknumber,
|
|
3697
|
-
|
|
3698
|
-
|
|
3456
|
+
.ab-Datepicker-Overlay .rdp .rdp-day {
|
|
3457
|
+
border-radius: var(--ab-cmp-datepicker__day-border-radius);
|
|
3458
|
+
}
|
|
3699
3459
|
|
|
3700
3460
|
.ab-Datepicker-Overlay .rdp .rdp-day_selected:not([disabled]),
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3461
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_selected:focus:not([disabled]),
|
|
3462
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_selected:active:not([disabled]),
|
|
3463
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_selected:hover:not([disabled]) {
|
|
3464
|
+
color: var(--ab-cmp-datepicker__selected-text-color);
|
|
3465
|
+
border-radius: var(--ab-cmp-datepicker__selected-border-radius);
|
|
3466
|
+
}
|
|
3706
3467
|
|
|
3707
3468
|
.ab-Datepicker-Overlay .rdp .rdp-caption_label {
|
|
3708
|
-
|
|
3469
|
+
font-size: 120%;
|
|
3470
|
+
}
|
|
3709
3471
|
|
|
3710
3472
|
.ab-Datepicker-Overlay .rdp .rdp-nav_button {
|
|
3711
|
-
|
|
3473
|
+
color: var(--ab-color-text-on-primary);
|
|
3474
|
+
}
|
|
3712
3475
|
|
|
3713
3476
|
.ab-Datepicker-Overlay .rdp .rdp-table {
|
|
3714
|
-
|
|
3715
|
-
|
|
3477
|
+
width: 100%;
|
|
3478
|
+
max-width: none;
|
|
3479
|
+
}
|
|
3716
3480
|
|
|
3717
3481
|
.ab-Datepicker-Overlay .rdp .rdp-day_outside {
|
|
3718
|
-
|
|
3482
|
+
opacity: 0.4;
|
|
3483
|
+
}
|
|
3719
3484
|
|
|
3720
3485
|
.ab-Datepicker-Overlay .rdp .rdp-day_today {
|
|
3721
|
-
|
|
3486
|
+
border: var(--rdp-outline);
|
|
3487
|
+
}
|
|
3722
3488
|
|
|
3723
3489
|
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(8),
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3490
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(9),
|
|
3491
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(10),
|
|
3492
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(11),
|
|
3493
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(12),
|
|
3494
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(13),
|
|
3495
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(14) {
|
|
3496
|
+
display: none;
|
|
3497
|
+
}
|
|
3731
3498
|
|
|
3732
3499
|
.ab-Datepicker-Overlay .rdp.rdp-with_weeknumber .rdp-row td:nth-child(8) {
|
|
3733
|
-
|
|
3500
|
+
display: table-cell;
|
|
3501
|
+
}
|
|
3734
3502
|
|
|
3735
3503
|
.ab-ToggleButton {
|
|
3504
|
+
user-select: none;
|
|
3736
3505
|
position: relative;
|
|
3737
3506
|
display: inline-block;
|
|
3738
3507
|
min-width: 40px;
|
|
3739
3508
|
width: 77px;
|
|
3740
|
-
height: 32px;
|
|
3509
|
+
height: 32px;
|
|
3510
|
+
}
|
|
3741
3511
|
|
|
3742
3512
|
.ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
|
|
3743
|
-
|
|
3744
|
-
|
|
3513
|
+
cursor: pointer;
|
|
3514
|
+
opacity: 0.85;
|
|
3515
|
+
}
|
|
3745
3516
|
|
|
3746
3517
|
.ab-ToggleButton__input {
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3518
|
+
opacity: 0;
|
|
3519
|
+
width: 0;
|
|
3520
|
+
height: 0;
|
|
3521
|
+
}
|
|
3750
3522
|
|
|
3751
3523
|
.ab-ToggleButton__slider {
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3524
|
+
position: absolute;
|
|
3525
|
+
top: 0;
|
|
3526
|
+
left: 0;
|
|
3527
|
+
right: 0;
|
|
3528
|
+
bottom: 0;
|
|
3529
|
+
background-color: var(--ab-cmp-toggle-button__background);
|
|
3530
|
+
transition: 0.1s;
|
|
3531
|
+
border-radius: var(--ab__border-radius);
|
|
3532
|
+
}
|
|
3760
3533
|
|
|
3761
3534
|
.ab-ToggleButton__slider:before {
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3535
|
+
position: absolute;
|
|
3536
|
+
content: "";
|
|
3537
|
+
width: 24px;
|
|
3538
|
+
height: 24px;
|
|
3539
|
+
left: 4px;
|
|
3540
|
+
top: 4px;
|
|
3541
|
+
border-radius: var(--ab__border-radius);
|
|
3542
|
+
background-color: #fff;
|
|
3543
|
+
-webkit-transition: 0.4s;
|
|
3544
|
+
transition: 0.2s;
|
|
3545
|
+
}
|
|
3772
3546
|
|
|
3773
3547
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider {
|
|
3774
|
-
|
|
3548
|
+
background-color: var(--ab-cmp-toggle-button--active__background);
|
|
3549
|
+
}
|
|
3775
3550
|
|
|
3776
3551
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
|
|
3777
|
-
|
|
3552
|
+
transform: translateX(45px);
|
|
3553
|
+
}
|
|
3778
3554
|
|
|
3779
3555
|
.ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
|
|
3780
|
-
|
|
3556
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
3557
|
+
}
|
|
3781
3558
|
|
|
3782
3559
|
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
3783
|
-
|
|
3560
|
+
opacity: 0.5;
|
|
3561
|
+
}
|
|
3784
3562
|
|
|
3785
3563
|
.ab-ToggleButton .ab-ToggleButton__text {
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3564
|
+
font-size: var(--ab-cmp-toggle-button__font-size);
|
|
3565
|
+
padding-right: var(--ab-space-2);
|
|
3566
|
+
color: var(--ab-cmp-toggle-button__color);
|
|
3567
|
+
font-weight: 600;
|
|
3568
|
+
}
|
|
3790
3569
|
|
|
3791
3570
|
.ab-ToggleButton--checked .ab-ToggleButton__text {
|
|
3792
|
-
|
|
3793
|
-
|
|
3571
|
+
padding-left: var(--ab-space-2);
|
|
3572
|
+
color: var(--ab-cmp-toggle-button--checked__color);
|
|
3573
|
+
}
|
|
3794
3574
|
|
|
3795
3575
|
.ab-Loader {
|
|
3796
3576
|
font-size: var(--ab-cmp-loader__font-size);
|
|
3797
3577
|
margin-top: 8px;
|
|
3798
|
-
font-style: italic;
|
|
3578
|
+
font-style: italic;
|
|
3579
|
+
}
|
|
3799
3580
|
|
|
3800
3581
|
.ab-Loader__text,
|
|
3801
3582
|
.ab-Loader__Spinner {
|
|
3802
|
-
vertical-align: middle;
|
|
3583
|
+
vertical-align: middle;
|
|
3584
|
+
}
|
|
3803
3585
|
|
|
3804
3586
|
.ab-Loader .ab-Loader__Spinner {
|
|
3805
|
-
margin-right: 5px;
|
|
3587
|
+
margin-right: 5px;
|
|
3588
|
+
}
|
|
3806
3589
|
|
|
3807
3590
|
.ab-Loader__Spinner {
|
|
3808
3591
|
display: inline-block;
|
|
@@ -3812,13 +3595,17 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3812
3595
|
width: 10px;
|
|
3813
3596
|
height: 10px;
|
|
3814
3597
|
bottom: 0;
|
|
3815
|
-
animation: spin 1.5s linear infinite;
|
|
3598
|
+
animation: spin 1.5s linear infinite;
|
|
3599
|
+
}
|
|
3816
3600
|
|
|
3817
3601
|
@keyframes spin {
|
|
3818
3602
|
0% {
|
|
3819
|
-
transform: rotate(0deg);
|
|
3603
|
+
transform: rotate(0deg);
|
|
3604
|
+
}
|
|
3820
3605
|
100% {
|
|
3821
|
-
transform: rotate(360deg);
|
|
3606
|
+
transform: rotate(360deg);
|
|
3607
|
+
}
|
|
3608
|
+
}
|
|
3822
3609
|
|
|
3823
3610
|
.ab-progress-indicator-wrapper {
|
|
3824
3611
|
align-items: center;
|
|
@@ -3833,30 +3620,35 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3833
3620
|
opacity: 0;
|
|
3834
3621
|
transition-delay: var(--ab-cmp-progress-indicator__delay);
|
|
3835
3622
|
transition-property: opacity;
|
|
3836
|
-
transition-duration: 0.3s;
|
|
3623
|
+
transition-duration: 0.3s;
|
|
3624
|
+
}
|
|
3837
3625
|
|
|
3838
3626
|
.ab-progress-indicator-wrapper--visible {
|
|
3839
|
-
|
|
3627
|
+
opacity: 1;
|
|
3628
|
+
}
|
|
3840
3629
|
|
|
3841
3630
|
.ab-progress-indicator-wrapper .ab-progress-indicator-body {
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3631
|
+
padding: var(--ab-cmp-progress-indicator__padding);
|
|
3632
|
+
background: var(--ab-cmp-progress-indicator__background);
|
|
3633
|
+
color: var(--ab-cmp-progress-indicator__color);
|
|
3634
|
+
border-style: none;
|
|
3635
|
+
border-width: 0px;
|
|
3636
|
+
border-radius: var(--ab__border-radius);
|
|
3637
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
3638
|
+
font-size: var(--ab-cmp-progress-indicator__font-size);
|
|
3639
|
+
font-style: var(--ab-cmp-progress-indicator__font-style);
|
|
3640
|
+
font-family: var(--ab-cmp-progress-indicator__font-family);
|
|
3641
|
+
}
|
|
3852
3642
|
|
|
3853
3643
|
:root {
|
|
3854
|
-
--ab-cmp-Tag__font-size: var(--ab-font-size-3);
|
|
3644
|
+
--ab-cmp-Tag__font-size: var(--ab-font-size-3);
|
|
3645
|
+
}
|
|
3855
3646
|
|
|
3856
3647
|
.ab-Tag {
|
|
3857
3648
|
display: inline-flex;
|
|
3858
3649
|
font-size: var(--ab-cmp-Tag__font-size);
|
|
3859
|
-
max-width: 100%;
|
|
3650
|
+
max-width: 100%;
|
|
3651
|
+
}
|
|
3860
3652
|
|
|
3861
3653
|
.ab-ModuleSelector__TabItem {
|
|
3862
3654
|
display: flex;
|
|
@@ -3865,13 +3657,15 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3865
3657
|
margin-right: var(--ab-space-2);
|
|
3866
3658
|
width: var(--ab-cmp-module-module-selector__tab-item__width);
|
|
3867
3659
|
border: var(--ab-cmp-module-module-selector__tab-item__border);
|
|
3868
|
-
border-radius: var(--ab-cmp-module-module-selector__tab-item__border-radius);
|
|
3660
|
+
border-radius: var(--ab-cmp-module-module-selector__tab-item__border-radius);
|
|
3661
|
+
}
|
|
3869
3662
|
|
|
3870
3663
|
.ab-ModuleSelector__TabItem__header {
|
|
3871
3664
|
display: flex;
|
|
3872
3665
|
align-items: center;
|
|
3873
3666
|
padding: var(--ab-space-1);
|
|
3874
|
-
border-bottom: var(--ab-cmp-module-module-selector__tab-item__border);
|
|
3667
|
+
border-bottom: var(--ab-cmp-module-module-selector__tab-item__border);
|
|
3668
|
+
}
|
|
3875
3669
|
|
|
3876
3670
|
.ab-ModuleSelector__TabItem__header-input {
|
|
3877
3671
|
flex: 1;
|
|
@@ -3881,45 +3675,175 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3881
3675
|
align-self: stretch;
|
|
3882
3676
|
background: transparent;
|
|
3883
3677
|
border: none;
|
|
3884
|
-
color: var(--ab-cmp-module-module-selector__tab-item__header-input__color);
|
|
3678
|
+
color: var(--ab-cmp-module-module-selector__tab-item__header-input__color);
|
|
3679
|
+
}
|
|
3680
|
+
|
|
3681
|
+
.ab-ModuleSelector__ToolbarList {
|
|
3682
|
+
flex: 1;
|
|
3683
|
+
padding: 4px;
|
|
3684
|
+
padding-bottom: 0;
|
|
3685
|
+
min-height: 200px;
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3688
|
+
.ab-ModuleSelector__ToolbarItem {
|
|
3689
|
+
border: var(--ab-cmp-module-module-selector__toolbar-item__border);
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
.ab-ModuleSelector__UnusedPanel {
|
|
3693
|
+
border: var(--ab-cmp-module-selector__unused-panel__border);
|
|
3694
|
+
border-radius: var(--ab-cmp-module-selector__unused-panel__border-radius);
|
|
3695
|
+
background-color: var(--ab-cmp-module-selector__unused-panel__background);
|
|
3696
|
+
}
|
|
3697
|
+
|
|
3698
|
+
.ab-ColorPicker-range {
|
|
3699
|
+
/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
|
|
3700
|
+
how to remove the virtical space around the range & in IE*/
|
|
3701
|
+
}
|
|
3702
|
+
|
|
3703
|
+
.ab-ColorPicker-range[type=range] {
|
|
3704
|
+
width: 120px;
|
|
3705
|
+
margin: 0px 0;
|
|
3706
|
+
height: 20px;
|
|
3707
|
+
padding: 0;
|
|
3708
|
+
background-color: transparent;
|
|
3709
|
+
-webkit-appearance: none;
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3712
|
+
.ab-ColorPicker-range[type=range]:focus {
|
|
3713
|
+
outline: none;
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3716
|
+
.ab-ColorPicker-range[type=range]::-webkit-slider-runnable-track {
|
|
3717
|
+
background: none;
|
|
3718
|
+
border: 0;
|
|
3719
|
+
width: 100%;
|
|
3720
|
+
height: 20px;
|
|
3721
|
+
cursor: pointer;
|
|
3722
|
+
}
|
|
3723
|
+
|
|
3724
|
+
.ab-ColorPicker-range[type=range]::-webkit-slider-thumb {
|
|
3725
|
+
margin-top: 0px;
|
|
3726
|
+
width: 20px;
|
|
3727
|
+
height: 20px;
|
|
3728
|
+
background: #ffffff;
|
|
3729
|
+
border: 1px solid #000000;
|
|
3730
|
+
border-radius: 20px;
|
|
3731
|
+
cursor: pointer;
|
|
3732
|
+
-webkit-appearance: none;
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
.ab-ColorPicker-range[type=range]:focus::-webkit-slider-runnable-track {
|
|
3736
|
+
background: none;
|
|
3737
|
+
}
|
|
3738
|
+
|
|
3739
|
+
.ab-ColorPicker-range[type=range]::-moz-range-track {
|
|
3740
|
+
background: none;
|
|
3741
|
+
border: 0;
|
|
3742
|
+
width: 100%;
|
|
3743
|
+
height: 20px;
|
|
3744
|
+
cursor: pointer;
|
|
3745
|
+
}
|
|
3746
|
+
|
|
3747
|
+
.ab-ColorPicker-range[type=range]::-moz-range-thumb {
|
|
3748
|
+
width: 20px;
|
|
3749
|
+
height: 20px;
|
|
3750
|
+
background: #ffffff;
|
|
3751
|
+
border: 1px solid #000000;
|
|
3752
|
+
border-radius: 20px;
|
|
3753
|
+
cursor: pointer;
|
|
3754
|
+
}
|
|
3755
|
+
|
|
3756
|
+
.ab-ColorPicker-range[type=range]::-ms-track {
|
|
3757
|
+
background: transparent;
|
|
3758
|
+
border-color: transparent;
|
|
3759
|
+
border-width: 1px 0;
|
|
3760
|
+
color: transparent;
|
|
3761
|
+
width: 100%;
|
|
3762
|
+
height: 20px;
|
|
3763
|
+
cursor: pointer;
|
|
3764
|
+
}
|
|
3765
|
+
|
|
3766
|
+
.ab-ColorPicker-range[type=range]::-ms-fill-lower {
|
|
3767
|
+
background: #43429e;
|
|
3768
|
+
border: 0;
|
|
3769
|
+
}
|
|
3770
|
+
|
|
3771
|
+
.ab-ColorPicker-range[type=range]::-ms-fill-upper {
|
|
3772
|
+
background: none;
|
|
3773
|
+
border: 0;
|
|
3774
|
+
}
|
|
3885
3775
|
|
|
3886
|
-
.ab-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3776
|
+
.ab-ColorPicker-range[type=range]::-ms-thumb {
|
|
3777
|
+
width: 20px;
|
|
3778
|
+
height: 20px;
|
|
3779
|
+
background: #ffffff;
|
|
3780
|
+
border: 1px solid #000000;
|
|
3781
|
+
border-radius: 20px;
|
|
3782
|
+
cursor: pointer;
|
|
3783
|
+
margin-top: 0px;
|
|
3784
|
+
/*Needed to keep the Edge thumb centred*/
|
|
3785
|
+
}
|
|
3891
3786
|
|
|
3892
|
-
.ab-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
margin-bottom: var(--ab-space-1); }
|
|
3787
|
+
.ab-ColorPicker-range[type=range]:focus::-ms-fill-lower {
|
|
3788
|
+
background: none;
|
|
3789
|
+
}
|
|
3896
3790
|
|
|
3897
|
-
.ab-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3791
|
+
.ab-ColorPicker-range[type=range]:focus::-ms-fill-upper {
|
|
3792
|
+
background: none;
|
|
3793
|
+
}
|
|
3794
|
+
|
|
3795
|
+
@supports (-ms-ime-align: auto) {
|
|
3796
|
+
.ab-ColorPicker-range {
|
|
3797
|
+
/* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
|
|
3798
|
+
}
|
|
3799
|
+
.ab-ColorPicker-range[type=range] {
|
|
3800
|
+
margin: 0;
|
|
3801
|
+
/*Edge starts the margin from the thumb, not the track as other browsers do*/
|
|
3802
|
+
}
|
|
3803
|
+
}
|
|
3903
3804
|
|
|
3904
3805
|
.ab-AdaptableOptions {
|
|
3905
|
-
background: var(--ab-cmp-adaptable-options__background-color);
|
|
3806
|
+
background: var(--ab-cmp-adaptable-options__background-color);
|
|
3807
|
+
}
|
|
3906
3808
|
|
|
3907
3809
|
.ab-GridOptions {
|
|
3908
|
-
background: var(--ab-cmp-grid-options__background-color);
|
|
3810
|
+
background: var(--ab-cmp-grid-options__background-color);
|
|
3811
|
+
}
|
|
3909
3812
|
|
|
3910
3813
|
.ab-GridSummary {
|
|
3911
|
-
background: var(--ab-cmp-grid-summary__background-color);
|
|
3814
|
+
background: var(--ab-cmp-grid-summary__background-color);
|
|
3815
|
+
}
|
|
3912
3816
|
|
|
3913
3817
|
.ab-SystemStatus-Popup-List {
|
|
3914
|
-
background: var(--ab-cmp-system-status-list__background-color);
|
|
3818
|
+
background: var(--ab-cmp-system-status-list__background-color);
|
|
3819
|
+
}
|
|
3820
|
+
|
|
3821
|
+
.ab-DashboardToolbar__SystemStatus__text {
|
|
3822
|
+
border-radius: var(--ab-cmp-system-status-list-text__border-radius);
|
|
3823
|
+
font-weight: var(--ab-cmp-system-status-list-text__font-weight);
|
|
3824
|
+
font-size: var(--ab-cmp-system-status-list-text__font-size);
|
|
3825
|
+
color: var(--ab-cmp-system-status-list-text__color);
|
|
3826
|
+
padding: var(--ab-cmp-system-status-list-text__padding);
|
|
3827
|
+
margin-right: var(--ab-space-2);
|
|
3828
|
+
}
|
|
3829
|
+
|
|
3830
|
+
.ab-DashboardToolbar__SystemStatus__text--expandable {
|
|
3831
|
+
cursor: pointer;
|
|
3832
|
+
}
|
|
3833
|
+
|
|
3834
|
+
.ab-DashboardToolbar__SystemStatus__further-information {
|
|
3835
|
+
white-space: normal;
|
|
3836
|
+
}
|
|
3915
3837
|
|
|
3916
3838
|
.ab-ObjectCollection__list > * {
|
|
3917
3839
|
background: var(--ab-cmp-listgroupitem__background);
|
|
3918
|
-
color: var(--ab-cmp-listgroupitem__color);
|
|
3840
|
+
color: var(--ab-cmp-listgroupitem__color);
|
|
3841
|
+
}
|
|
3919
3842
|
|
|
3920
|
-
.ab-ObjectCollection__list > *:nth-child(2n
|
|
3843
|
+
.ab-ObjectCollection__list > *:nth-child(2n+1) {
|
|
3921
3844
|
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
3922
|
-
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
3845
|
+
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
3846
|
+
}
|
|
3923
3847
|
|
|
3924
3848
|
.ab-AdaptableObjectRow {
|
|
3925
3849
|
align-items: center;
|
|
@@ -3927,23 +3851,35 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3927
3851
|
margin: var(--ab-cmp-listgroupitem__margin);
|
|
3928
3852
|
background: var(--ab-cmp-listgroupitem__background);
|
|
3929
3853
|
color: var(--ab-cmp-listgroupitem__color);
|
|
3930
|
-
border-radius: var(--ab-cmp-listgroupitem__border-radius);
|
|
3854
|
+
border-radius: var(--ab-cmp-listgroupitem__border-radius);
|
|
3855
|
+
}
|
|
3931
3856
|
|
|
3932
|
-
.ab-AdaptableObjectRow:nth-child(2n
|
|
3933
|
-
|
|
3934
|
-
|
|
3857
|
+
.ab-AdaptableObjectRow:nth-child(2n+1) {
|
|
3858
|
+
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
3859
|
+
color: var(--ab-cmp-listgroupitem--odd__color);
|
|
3860
|
+
}
|
|
3935
3861
|
|
|
3936
3862
|
.ab-AdaptableObjectRow--is-suspended {
|
|
3937
|
-
|
|
3863
|
+
text-decoration: line-through;
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3866
|
+
.ab-AdaptableObjectRow__cell {
|
|
3867
|
+
white-space: nowrap;
|
|
3868
|
+
text-overflow: ellipsis;
|
|
3869
|
+
overflow: hidden;
|
|
3870
|
+
font-size: var(--ab-cmp-listgroupitem-cell__font-size);
|
|
3871
|
+
}
|
|
3938
3872
|
|
|
3939
3873
|
.ab-ListBoxFilterForm {
|
|
3940
3874
|
overflow-y: auto;
|
|
3941
3875
|
overflow-x: hidden;
|
|
3942
3876
|
--ab-grid-row-height: 26px;
|
|
3943
|
-
margin-bottom: 0;
|
|
3877
|
+
margin-bottom: 0;
|
|
3878
|
+
}
|
|
3944
3879
|
|
|
3945
3880
|
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
3946
|
-
|
|
3881
|
+
overflow-x: hidden;
|
|
3882
|
+
}
|
|
3947
3883
|
|
|
3948
3884
|
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
|
|
3949
3885
|
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style {
|
|
@@ -3951,15 +3887,18 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3951
3887
|
--ab-cmp-input__border-radius: 0;
|
|
3952
3888
|
--ab-cmp-input__padding: 0;
|
|
3953
3889
|
--ab-cmp-dropdown__padding: 3px;
|
|
3954
|
-
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent);
|
|
3890
|
+
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent);
|
|
3891
|
+
}
|
|
3955
3892
|
|
|
3956
3893
|
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap,
|
|
3957
|
-
|
|
3958
|
-
|
|
3894
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap {
|
|
3895
|
+
border-radius: 0;
|
|
3896
|
+
}
|
|
3959
3897
|
|
|
3960
3898
|
html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
3961
3899
|
--ab-color-inputborder: white;
|
|
3962
|
-
--ab-cmp-dropdown__border: 1px solid white;
|
|
3900
|
+
--ab-cmp-dropdown__border: 1px solid white;
|
|
3901
|
+
}
|
|
3963
3902
|
|
|
3964
3903
|
.ab-Popover {
|
|
3965
3904
|
border-radius: var(--ab-cmp-popover__border-radius);
|
|
@@ -3968,160 +3907,193 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3968
3907
|
color: var(--ab-cmp-popover__color);
|
|
3969
3908
|
box-shadow: var(--ab-cmp-popover__box-shadow);
|
|
3970
3909
|
font-size: var(--ab-font-size-2);
|
|
3971
|
-
font-family: var(--ab__font-family);
|
|
3910
|
+
font-family: var(--ab__font-family);
|
|
3911
|
+
}
|
|
3972
3912
|
|
|
3973
3913
|
.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
3974
|
-
content:
|
|
3914
|
+
content: "";
|
|
3975
3915
|
position: absolute;
|
|
3976
3916
|
width: 0;
|
|
3977
3917
|
height: 0;
|
|
3978
|
-
border-style: solid;
|
|
3918
|
+
border-style: solid;
|
|
3919
|
+
}
|
|
3979
3920
|
|
|
3980
3921
|
.ab-Overlay--position-bottom.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
3981
3922
|
border-width: 0 5px 10px 5px;
|
|
3982
3923
|
border-color: transparent transparent var(--ab-cmp-popover__background) transparent;
|
|
3983
3924
|
left: 50%;
|
|
3984
3925
|
top: -10px;
|
|
3985
|
-
transform: translate3d(-5px, 0px, 0px);
|
|
3926
|
+
transform: translate3d(-5px, 0px, 0px);
|
|
3927
|
+
}
|
|
3986
3928
|
|
|
3987
3929
|
.ab-Overlay--position-top.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
3988
3930
|
border-width: 10px 5px 0 5px;
|
|
3989
3931
|
border-color: var(--ab-cmp-popover__background) transparent transparent transparent;
|
|
3990
3932
|
left: 50%;
|
|
3991
3933
|
bottom: -10px;
|
|
3992
|
-
transform: translate3d(-5px, 0px, 0px);
|
|
3934
|
+
transform: translate3d(-5px, 0px, 0px);
|
|
3935
|
+
}
|
|
3993
3936
|
|
|
3994
3937
|
.ab-NocodeWizard {
|
|
3995
3938
|
padding: var(--ab-cmp-wizard__padding);
|
|
3996
3939
|
margin: var(--ab-cmp-wizard__margin);
|
|
3997
3940
|
background: var(--ab-cmp-wizard__background);
|
|
3998
3941
|
color: var(--ab-cmp-wizard__color);
|
|
3999
|
-
height: 100%;
|
|
3942
|
+
height: 100%;
|
|
3943
|
+
}
|
|
4000
3944
|
|
|
4001
3945
|
.ab-NocodeWizard,
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
3946
|
+
.ab-NocodeWizard *,
|
|
3947
|
+
.ab-NocodeWizard *:before,
|
|
3948
|
+
.ab-NocodeWizard *:after {
|
|
3949
|
+
box-sizing: border-box;
|
|
3950
|
+
}
|
|
4006
3951
|
|
|
4007
3952
|
.ab-NocodeWizardFormBox {
|
|
4008
3953
|
border: 1px solid var(--ab-color-primarydark);
|
|
4009
3954
|
border-radius: var(--ab__border-radius);
|
|
4010
|
-
background-color: var(--ab-color-defaultbackground);
|
|
3955
|
+
background-color: var(--ab-color-defaultbackground);
|
|
3956
|
+
}
|
|
4011
3957
|
|
|
4012
3958
|
.ab-AvailableDropZone .placeholder,
|
|
4013
3959
|
.ab-SelectedDropZone .placeholder {
|
|
4014
|
-
width: 100%;
|
|
3960
|
+
width: 100%;
|
|
3961
|
+
}
|
|
4015
3962
|
|
|
4016
3963
|
.ab-AvailableDropZone .placeholder:before,
|
|
4017
|
-
|
|
4018
|
-
|
|
3964
|
+
.ab-SelectedDropZone .placeholder:before {
|
|
3965
|
+
content: "DROPS HERE";
|
|
3966
|
+
}
|
|
4019
3967
|
|
|
4020
3968
|
.ab-Button.ab-Button {
|
|
4021
3969
|
border-radius: var(--ab-cmp-button-border-radius);
|
|
4022
|
-
padding: var(--ab-space-2);
|
|
3970
|
+
padding: var(--ab-space-2);
|
|
3971
|
+
}
|
|
4023
3972
|
|
|
4024
3973
|
.ab-Button.ab-Button--enabled {
|
|
4025
|
-
|
|
4026
|
-
|
|
3974
|
+
cursor: pointer;
|
|
3975
|
+
background: var(--ab-cmp-button-background);
|
|
3976
|
+
}
|
|
4027
3977
|
|
|
4028
3978
|
.ab-Button.ab-Button--disabled {
|
|
4029
|
-
|
|
4030
|
-
|
|
3979
|
+
opacity: var(--ab-cmp-button-disabled-opacity);
|
|
3980
|
+
background: var(--ab-cmp-button-disabled-background);
|
|
3981
|
+
}
|
|
4031
3982
|
|
|
4032
3983
|
.ab-DashboardPanel .ab-CheckBox:not(.ab-dd-checkbox),
|
|
4033
3984
|
.ab-DashboardPanel .ab-SimpleButton.ab-SimpleButton--tone-neutral:not(.ab-DropdownButton) {
|
|
4034
3985
|
fill: currentColor;
|
|
4035
3986
|
color: var(--ab-cmp-dashboardpanel_header__color);
|
|
4036
|
-
border-color: currentColor;
|
|
3987
|
+
border-color: currentColor;
|
|
3988
|
+
}
|
|
4037
3989
|
|
|
4038
3990
|
.ab-DashboardPanel .glyphicon.glyphicon {
|
|
4039
|
-
color: var(--ab-cmp-dashboardpanel__fill);
|
|
3991
|
+
color: var(--ab-cmp-dashboardpanel__fill);
|
|
3992
|
+
}
|
|
4040
3993
|
|
|
4041
3994
|
.ab-FilterFormPanel {
|
|
4042
|
-
--ab-cmp-panel_body__background: var(--ag-control-panel-background-color);
|
|
3995
|
+
--ab-cmp-panel_body__background: var(--ag-control-panel-background-color);
|
|
3996
|
+
}
|
|
4043
3997
|
|
|
4044
3998
|
.ab-Dashboard__application-icon {
|
|
4045
|
-
margin-right: var(--ab-space-2);
|
|
3999
|
+
margin-right: var(--ab-space-2);
|
|
4000
|
+
}
|
|
4046
4001
|
|
|
4047
4002
|
.ab-Dashboard-Popup__Module-Selector {
|
|
4048
|
-
background: var(--ab-cmp-dashboard-module-selector-background);
|
|
4003
|
+
background: var(--ab-cmp-dashboard-module-selector-background);
|
|
4004
|
+
}
|
|
4049
4005
|
|
|
4050
4006
|
.ab-ToolPanel {
|
|
4051
4007
|
flex: 1 1 0;
|
|
4052
4008
|
min-width: 0;
|
|
4053
4009
|
color: var(--ab-cmp-toolpanel__color);
|
|
4054
|
-
font-family: var(--ab-cmp-toolpanel__font-family);
|
|
4010
|
+
font-family: var(--ab-cmp-toolpanel__font-family);
|
|
4011
|
+
}
|
|
4055
4012
|
|
|
4056
4013
|
.ab-ToolPanel .ab-ToolPanel__header {
|
|
4057
|
-
|
|
4058
|
-
|
|
4014
|
+
background: var(--ab-cmp-toolpanel-header__background);
|
|
4015
|
+
color: var(--ab-cmp-toolpanel-header__color);
|
|
4016
|
+
}
|
|
4059
4017
|
|
|
4060
4018
|
.ab-ToolPanel .ab-ToolPanel__header__buttons {
|
|
4061
|
-
|
|
4019
|
+
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap);
|
|
4020
|
+
}
|
|
4062
4021
|
|
|
4063
4022
|
.ab-ToolPanel .ab-ToolPanel__custom-content__buttons {
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4023
|
+
display: flex;
|
|
4024
|
+
flex-direction: row;
|
|
4025
|
+
flex-wrap: wrap;
|
|
4026
|
+
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap);
|
|
4027
|
+
}
|
|
4068
4028
|
|
|
4069
4029
|
.ab-ToolPanel .ab-StateManagement__Clear-Button,
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4030
|
+
.ab-ToolPanel .ab-StateManagement__Load-Button {
|
|
4031
|
+
justify-content: center;
|
|
4032
|
+
flex: 1;
|
|
4033
|
+
}
|
|
4073
4034
|
|
|
4074
4035
|
.ab-ToolPanel .ab-StateManagement__Clear-Button,
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4036
|
+
.ab-ToolPanel .ab-StateManagement__Load-Button,
|
|
4037
|
+
.ab-ToolPanel .ab-StateManagement__Export-Dropdown {
|
|
4038
|
+
margin-bottom: var(--ab-space-1);
|
|
4039
|
+
}
|
|
4078
4040
|
|
|
4079
4041
|
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
4080
|
-
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size);
|
|
4042
|
+
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size);
|
|
4043
|
+
}
|
|
4081
4044
|
|
|
4082
4045
|
.ab-Adaptable-Popup {
|
|
4083
4046
|
background: var(--ab-cmp-adaptable-popup__background);
|
|
4084
|
-
max-height: var(--ab-cmp-adaptable-popup__max-height);
|
|
4047
|
+
max-height: var(--ab-cmp-adaptable-popup__max-height);
|
|
4048
|
+
}
|
|
4085
4049
|
|
|
4086
4050
|
.ab-Adaptable-Popup--window {
|
|
4087
|
-
|
|
4051
|
+
box-shadow: var(--ab-cmp-adaptable-popup__box-shadow);
|
|
4052
|
+
}
|
|
4088
4053
|
|
|
4089
4054
|
.ab-Adaptable-Popup__Navigation {
|
|
4090
4055
|
padding-top: 10px;
|
|
4091
4056
|
overflow: auto;
|
|
4092
4057
|
border-right: var(--ab-cmp-adaptable-popup-navigation-list__border-right);
|
|
4093
|
-
font-family: var(--ab__font-family);
|
|
4058
|
+
font-family: var(--ab__font-family);
|
|
4059
|
+
}
|
|
4094
4060
|
|
|
4095
4061
|
.ab-Adaptable-Popup__Navigation__List {
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4062
|
+
list-style: none;
|
|
4063
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list__padding);
|
|
4064
|
+
margin: 0;
|
|
4065
|
+
font-size: var(--ab-cmp-adaptable-popup-navigation-list__font-size);
|
|
4066
|
+
}
|
|
4100
4067
|
|
|
4101
4068
|
.ab-Adaptable-Popup__Navigation__List__Item {
|
|
4102
|
-
|
|
4103
|
-
|
|
4069
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item__padding);
|
|
4070
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom);
|
|
4071
|
+
}
|
|
4104
4072
|
|
|
4105
4073
|
.ab-Adaptable-Popup__Navigation__List__Item__Separator {
|
|
4106
|
-
|
|
4107
|
-
|
|
4074
|
+
border-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__border);
|
|
4075
|
+
margin: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__margin);
|
|
4076
|
+
}
|
|
4108
4077
|
|
|
4109
4078
|
.ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
4110
|
-
|
|
4111
|
-
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4079
|
+
background: none;
|
|
4080
|
+
border: none;
|
|
4081
|
+
width: 100%;
|
|
4082
|
+
text-align: left;
|
|
4083
|
+
cursor: pointer;
|
|
4084
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item-button__padding);
|
|
4085
|
+
border-radius: var(--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius);
|
|
4086
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__color);
|
|
4087
|
+
}
|
|
4118
4088
|
|
|
4119
4089
|
.ab-Adaptable-Popup__Navigation__List__Item__Icon {
|
|
4120
|
-
|
|
4090
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right);
|
|
4091
|
+
}
|
|
4121
4092
|
|
|
4122
4093
|
.ab-Adaptable-Popup__Navigation__List__Item--active .ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
4123
|
-
|
|
4124
|
-
|
|
4094
|
+
background: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--active);
|
|
4095
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--color);
|
|
4096
|
+
}
|
|
4125
4097
|
|
|
4126
4098
|
.ab-Adaptable-Popup__TopBar {
|
|
4127
4099
|
display: flex;
|
|
@@ -4131,219 +4103,334 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
4131
4103
|
color: var(--ab-cmp-adaptable-popup-topbar__color);
|
|
4132
4104
|
font-weight: var(--ab-cmp-adaptable-popup-topbar__font-weight);
|
|
4133
4105
|
padding: var(--ab-cmp-adaptable-popup-topbar__padding);
|
|
4134
|
-
box-sizing: border-box;
|
|
4106
|
+
box-sizing: border-box;
|
|
4107
|
+
}
|
|
4135
4108
|
|
|
4136
4109
|
.ab-Adaptable-Popup__TopBar__Icon {
|
|
4137
|
-
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right);
|
|
4110
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right);
|
|
4111
|
+
}
|
|
4138
4112
|
|
|
4139
4113
|
.ab-Adaptable-Popup__TopBar__Close .ab-Icon {
|
|
4140
|
-
color: var(--ab-cmp-adaptable-popup-topbar-icon__color);
|
|
4114
|
+
color: var(--ab-cmp-adaptable-popup-topbar-icon__color);
|
|
4115
|
+
}
|
|
4141
4116
|
|
|
4142
4117
|
.ab-Adaptable-Popup--settings-popup {
|
|
4143
|
-
height: var(--ab-cmp-adaptable-popup--settings__height);
|
|
4118
|
+
height: var(--ab-cmp-adaptable-popup--settings__height);
|
|
4119
|
+
}
|
|
4144
4120
|
|
|
4145
4121
|
.ab-Adaptable-Popup--settings-popup .ab-Dialog__close-button {
|
|
4146
|
-
|
|
4122
|
+
top: 9px;
|
|
4123
|
+
}
|
|
4147
4124
|
|
|
4148
4125
|
.ab-Adaptable-Popup--settings-popup .ab-Adaptable-Popup__Body {
|
|
4149
|
-
|
|
4150
|
-
|
|
4126
|
+
padding: var(--ab-cmp-adaptable-popup--settings__padding);
|
|
4127
|
+
min-width: 0;
|
|
4128
|
+
}
|
|
4151
4129
|
|
|
4152
4130
|
.ab-Adaptable-Popup__Panel {
|
|
4153
|
-
width: 100%;
|
|
4131
|
+
width: 100%;
|
|
4132
|
+
}
|
|
4154
4133
|
|
|
4155
4134
|
.ab-Adaptable-Popup__Panel__Header {
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4135
|
+
display: flex;
|
|
4136
|
+
padding: 0 var(--ab-cmp-adaptable-popup-panel__padding);
|
|
4137
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-panel__margin-bottom);
|
|
4138
|
+
margin-top: var(--ab-cmp-adaptable-popup-panel__margin-top);
|
|
4139
|
+
}
|
|
4160
4140
|
|
|
4161
4141
|
.ab-Adaptable-Popup__Panel__Header__Title {
|
|
4162
|
-
|
|
4142
|
+
font-size: var(--ab-cmp-adaptable-popup-panel-title__font-size);
|
|
4143
|
+
}
|
|
4163
4144
|
|
|
4164
4145
|
.ab-Adaptable-Popup__Panel__Body {
|
|
4165
|
-
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4146
|
+
padding: var(--ab-cmp-adaptable-popup-panel-body__padding);
|
|
4147
|
+
flex: 1 1 0;
|
|
4148
|
+
min-height: 0;
|
|
4149
|
+
overflow: auto;
|
|
4150
|
+
}
|
|
4169
4151
|
|
|
4170
4152
|
.ab-Adaptable-Popup--window .ab-Adaptable-Popup__TopBar {
|
|
4171
|
-
cursor: move;
|
|
4153
|
+
cursor: move;
|
|
4154
|
+
}
|
|
4172
4155
|
|
|
4173
4156
|
.ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
|
|
4174
|
-
cursor: move;
|
|
4157
|
+
cursor: move;
|
|
4158
|
+
}
|
|
4175
4159
|
|
|
4176
4160
|
.ab-Window-Modal .ab-Panel__header {
|
|
4177
|
-
cursor: move;
|
|
4161
|
+
cursor: move;
|
|
4162
|
+
}
|
|
4178
4163
|
|
|
4179
4164
|
.ab-Window-Modal {
|
|
4180
4165
|
max-height: 100%;
|
|
4181
|
-
box-shadow: var(--ab-cmp-adaptable-window-popup__box-shadow);
|
|
4166
|
+
box-shadow: var(--ab-cmp-adaptable-window-popup__box-shadow);
|
|
4167
|
+
}
|
|
4182
4168
|
|
|
4183
4169
|
.ab-Window-Modal .ab-Dialog__close-button {
|
|
4184
|
-
|
|
4170
|
+
top: 3px;
|
|
4171
|
+
}
|
|
4185
4172
|
|
|
4186
4173
|
.ab-Window-Modal .ab-Panel {
|
|
4187
|
-
|
|
4174
|
+
max-height: initial;
|
|
4175
|
+
}
|
|
4188
4176
|
|
|
4189
4177
|
.ab-Adaptable-Object-List {
|
|
4190
4178
|
list-style: none;
|
|
4191
|
-
padding: 0;
|
|
4179
|
+
padding: 0;
|
|
4180
|
+
}
|
|
4192
4181
|
|
|
4193
4182
|
.ab-Adaptable-Object-List__Item {
|
|
4194
4183
|
background-color: var(--ab-cmp-adaptable-object-list-item__background-color);
|
|
4195
4184
|
padding: var(--ab-cmp-adaptable-object-list-item__padding);
|
|
4196
|
-
margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom);
|
|
4185
|
+
margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom);
|
|
4186
|
+
}
|
|
4197
4187
|
|
|
4198
4188
|
.ab-Adaptable-Object-List__Item__edit-property {
|
|
4199
|
-
|
|
4189
|
+
visibility: hidden;
|
|
4190
|
+
}
|
|
4200
4191
|
|
|
4201
4192
|
.ab-Adaptable-Object-List__Item__values {
|
|
4202
|
-
|
|
4203
|
-
|
|
4193
|
+
min-width: 0;
|
|
4194
|
+
word-break: break-all;
|
|
4195
|
+
}
|
|
4204
4196
|
|
|
4205
4197
|
.ab-Adaptable-Object-List__Item__buttons {
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4198
|
+
padding-left: var(--ab-space-2);
|
|
4199
|
+
min-width: 80px;
|
|
4200
|
+
text-align: right;
|
|
4201
|
+
margin-left: var(--ab-space-3);
|
|
4202
|
+
}
|
|
4210
4203
|
|
|
4211
4204
|
.ab-Adaptable-Object-List__Item__label {
|
|
4212
|
-
|
|
4213
|
-
|
|
4205
|
+
padding-top: var(--ab-cmp-adaptable-object-list-item-label__padding-top);
|
|
4206
|
+
width: var(--ab-cmp-adaptable-object-list-item-label__width);
|
|
4207
|
+
}
|
|
4214
4208
|
|
|
4215
4209
|
.ab-Adaptable-Object-List__Item__label:hover .ab-Adaptable-Object-List__Item__edit-property {
|
|
4216
|
-
|
|
4210
|
+
visibility: visible;
|
|
4211
|
+
}
|
|
4217
4212
|
|
|
4218
4213
|
.ab-Adaptable-Object-List__Item .ab-Tag {
|
|
4219
|
-
|
|
4220
|
-
|
|
4221
|
-
|
|
4214
|
+
margin-right: var(--ab-cmp-adaptable-object-list-tag__margin-right);
|
|
4215
|
+
margin-top: var(--ab-cmp-adaptable-object-list-tag__margin-top);
|
|
4216
|
+
padding: var(--ab-cmp-adaptable-object-list-item-tag__padding);
|
|
4217
|
+
}
|
|
4222
4218
|
|
|
4223
4219
|
.ab-Adaptable-Object-Compact-List {
|
|
4224
4220
|
padding: var(--ab-cmp-adaptable-object-compact-list__padding);
|
|
4225
4221
|
background: var(--ab-cmp-adaptable-object-compact-list__background);
|
|
4226
|
-
max-height: 70vh;
|
|
4222
|
+
max-height: 70vh;
|
|
4223
|
+
}
|
|
4227
4224
|
|
|
4228
4225
|
.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Header {
|
|
4229
|
-
|
|
4230
|
-
|
|
4226
|
+
padding: var(--ab-cmp-adaptable-object-compact-list__header__padding);
|
|
4227
|
+
margin-bottom: var(--ab-cmp-adaptable-object-compact-list__header__margin-bottom);
|
|
4228
|
+
}
|
|
4231
4229
|
|
|
4232
4230
|
.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Title {
|
|
4233
|
-
|
|
4231
|
+
font-size: var(--ab-font-size-4);
|
|
4232
|
+
}
|
|
4234
4233
|
|
|
4235
4234
|
.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Body {
|
|
4236
|
-
|
|
4237
|
-
|
|
4235
|
+
overflow: auto;
|
|
4236
|
+
height: 100%;
|
|
4237
|
+
}
|
|
4238
4238
|
|
|
4239
4239
|
.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Item {
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4240
|
+
padding: var(--ab-cmp-adaptable-object-compact-list-item__padding);
|
|
4241
|
+
margin-bottom: var(--ab-cmp-adaptable-object-compact-list-item__margin-bottom);
|
|
4242
|
+
background: var(--ab-cmp-adaptable-object-compact-list-item__background);
|
|
4243
|
+
}
|
|
4243
4244
|
|
|
4244
4245
|
.ab-Adaptable-Object-Compact-List .ab-Adaptable-Object-Compact-List__Item:last-child {
|
|
4245
|
-
|
|
4246
|
+
margin-bottom: 0;
|
|
4247
|
+
}
|
|
4246
4248
|
|
|
4247
4249
|
.ab-Adaptable-Object-Compact-List__Item__Name {
|
|
4248
|
-
|
|
4249
|
-
|
|
4250
|
-
|
|
4251
|
-
|
|
4250
|
+
width: var(--ab-cmp-adaptable-object-compact-list-item-name__width);
|
|
4251
|
+
padding: var(--ab-cmp-adaptable-object-compact-list-item-name__padding);
|
|
4252
|
+
margin-right: var(--ab-cmp-adaptable-object-compact-list-item-name__margin-right);
|
|
4253
|
+
font-size: var(--ab-cmp-adaptable-object-compact-list-item-name__font-size);
|
|
4254
|
+
}
|
|
4252
4255
|
|
|
4253
4256
|
.ab-StatusBar {
|
|
4254
4257
|
display: flex;
|
|
4255
4258
|
border-right: var(--ab-cmp-adaptable-statusbar__border);
|
|
4256
|
-
border-left: var(--ab-cmp-adaptable-statusbar__border);
|
|
4259
|
+
border-left: var(--ab-cmp-adaptable-statusbar__border);
|
|
4260
|
+
}
|
|
4257
4261
|
|
|
4258
4262
|
.ab-StatusBar__SubPanel {
|
|
4259
4263
|
padding: var(--ab-cmp-adaptable-statusbar-sub-panel__padding);
|
|
4260
4264
|
border: 0;
|
|
4261
4265
|
background: none;
|
|
4262
4266
|
font-weight: 400;
|
|
4263
|
-
border-right: var(--ab-cmp-adaptable-statusbar__border);
|
|
4267
|
+
border-right: var(--ab-cmp-adaptable-statusbar__border);
|
|
4268
|
+
}
|
|
4264
4269
|
|
|
4265
4270
|
.ab-StatusBar__SubPanel:last-child {
|
|
4266
|
-
|
|
4271
|
+
border-right: 0;
|
|
4272
|
+
}
|
|
4267
4273
|
|
|
4268
4274
|
.ab-StatusBar__SubPanel,
|
|
4269
|
-
|
|
4270
|
-
|
|
4275
|
+
.ab-StatusBar__SubPanel .ab-SimpleButton {
|
|
4276
|
+
color: var(--ab-cmp-adaptable-statusbar__color);
|
|
4277
|
+
}
|
|
4271
4278
|
|
|
4272
4279
|
button.ab-StatusBar__SubPanel:hover {
|
|
4273
4280
|
background-color: var(--ab-cmp-adaptable-statusbar-sub-panel-icon__background-color-hover);
|
|
4274
|
-
cursor: pointer;
|
|
4281
|
+
cursor: pointer;
|
|
4282
|
+
}
|
|
4275
4283
|
|
|
4276
4284
|
.ab-Shared-Entity-Shared-Object {
|
|
4277
|
-
border: var(--ab-cmp-adaptable-shared-entity-shared-object__border);
|
|
4285
|
+
border: var(--ab-cmp-adaptable-shared-entity-shared-object__border);
|
|
4286
|
+
}
|
|
4278
4287
|
|
|
4279
4288
|
.ab-Layout-Wizard__ColumnRow__Header {
|
|
4280
|
-
cursor: pointer;
|
|
4289
|
+
cursor: pointer;
|
|
4290
|
+
}
|
|
4281
4291
|
|
|
4282
4292
|
.ab-Layout-Wizard__ColumnRow__Title {
|
|
4283
4293
|
border-radius: var(--ab-cmp-adaptable-layout-wizard-column-row-title__border-radious);
|
|
4284
4294
|
background: var(--ab-cmp-adaptable-layout-wizard-column-row-title__background);
|
|
4285
|
-
color: var(--ab-cmp-adaptable-layout-wizard-column-row-title__color);
|
|
4295
|
+
color: var(--ab-cmp-adaptable-layout-wizard-column-row-title__color);
|
|
4296
|
+
}
|
|
4286
4297
|
|
|
4287
4298
|
.ab-Layout-Wizard__ColumnRow__Expanded-Container {
|
|
4288
4299
|
background: var(--ab-cmp-adaptable-layout-wizard-column-row-expanded-container__background);
|
|
4289
|
-
border-radius: var(--ab-cmp-adaptable-layout-wizard-column-row-expanded-container__border-radius);
|
|
4300
|
+
border-radius: var(--ab-cmp-adaptable-layout-wizard-column-row-expanded-container__border-radius);
|
|
4301
|
+
}
|
|
4290
4302
|
|
|
4291
4303
|
.ab-Layout-Wizard__ColumnRow__Input {
|
|
4292
4304
|
max-width: var(--ab-cmp-adaptable-layout-wizard-column-input__max-width);
|
|
4293
|
-
width: var(--ab-cmp-adaptable-layout-wizard-column-input__width);
|
|
4305
|
+
width: var(--ab-cmp-adaptable-layout-wizard-column-input__width);
|
|
4306
|
+
}
|
|
4294
4307
|
|
|
4295
4308
|
:root {
|
|
4296
4309
|
--ab-cmp-adaptable-permitted-values-selector__font-size: var(--ab-font-size-2);
|
|
4297
4310
|
--ab-cmp-adaptable-permitted-values-selector__border: 1px solid var(--ab-color-primarydark);
|
|
4298
4311
|
--ab-cmp-adaptable-permitted-values-selector__background-color: var(--ab-color-defaultbackground);
|
|
4299
|
-
--ab-cmp-adaptable-permitted-values-selector__padding: var(--ab-space-1);
|
|
4312
|
+
--ab-cmp-adaptable-permitted-values-selector__padding: var(--ab-space-1);
|
|
4313
|
+
}
|
|
4300
4314
|
|
|
4301
4315
|
.ab-ValueSelector {
|
|
4302
|
-
overflow: hidden;
|
|
4316
|
+
overflow: hidden;
|
|
4317
|
+
}
|
|
4303
4318
|
|
|
4304
4319
|
.ab-ValueSelector__option {
|
|
4305
|
-
|
|
4320
|
+
border-radius: "var(--ab__border-radius)";
|
|
4321
|
+
}
|
|
4306
4322
|
|
|
4307
4323
|
.ab-ValueSelector__show-selected-only-checkbox {
|
|
4308
|
-
|
|
4309
|
-
|
|
4310
|
-
|
|
4324
|
+
position: sticky;
|
|
4325
|
+
top: 0;
|
|
4326
|
+
z-index: 10000;
|
|
4327
|
+
}
|
|
4311
4328
|
|
|
4312
4329
|
.ab-ValueSelector__show-selected-only-checkbox__text {
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4330
|
+
position: absolute;
|
|
4331
|
+
top: 2px;
|
|
4332
|
+
right: 4px;
|
|
4333
|
+
overflow: hidden;
|
|
4334
|
+
border-radius: var(--ab__border-radius);
|
|
4335
|
+
margin-right: var(--ab-space-1);
|
|
4336
|
+
margin-top: var(--ab-space-1);
|
|
4337
|
+
padding: 0 var(--ab-space-2);
|
|
4338
|
+
font-size: var(--ab-font-size-2);
|
|
4339
|
+
}
|
|
4340
|
+
|
|
4341
|
+
.ab-ExpressionEditor {
|
|
4342
|
+
overflow: auto;
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4345
|
+
.ab-ExpressionEditor__column-picker {
|
|
4346
|
+
overflow: auto;
|
|
4347
|
+
min-width: 255px;
|
|
4348
|
+
height: 100%;
|
|
4349
|
+
}
|
|
4350
|
+
|
|
4351
|
+
.ab-ExpressionEditorInput {
|
|
4352
|
+
background: var(--ab-cmp-expression-editor-input__background);
|
|
4353
|
+
border-radius: var(--ab-cmp-expression-editor-input__border-radius);
|
|
4354
|
+
width: 100%;
|
|
4355
|
+
--ab-overlay-horizontal-align: left;
|
|
4356
|
+
}
|
|
4357
|
+
|
|
4358
|
+
.ab-ExpressionEditorInput__info-button {
|
|
4359
|
+
margin-right: 5px;
|
|
4360
|
+
}
|
|
4361
|
+
|
|
4362
|
+
.ab-ExpressionEditorInput__dropdown-functions-list-wrapper {
|
|
4363
|
+
border: var(--ab-cmp-expression-editor-input-dropdown-functions-list__border);
|
|
4364
|
+
border-radius: var(--ab-cmp-expression-editor-input-dropdown-functions-list__border-radius);
|
|
4365
|
+
background: var(--ab-cmp-expression-editor-input__background);
|
|
4366
|
+
}
|
|
4367
|
+
|
|
4368
|
+
.ab-ExpressionEditorInput__dropdown-functions-list {
|
|
4369
|
+
font-size: var(--ab-cmp-expression-editor-input-dropdown-functions-list__font-size);
|
|
4370
|
+
z-index: 1000;
|
|
4371
|
+
max-height: 300;
|
|
4372
|
+
overflow: auto;
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4375
|
+
.ab-ExpressionEditorInput__textarea {
|
|
4376
|
+
width: 100%;
|
|
4377
|
+
min-height: 100px;
|
|
4378
|
+
font-family: var(--ab-cmp-expression-editor-input__font-family);
|
|
4379
|
+
resize: vertical;
|
|
4380
|
+
font-size: 1rem;
|
|
4381
|
+
padding: var(--ab-space-2);
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
.ab-ExpressionEditorInput__editor-feedback {
|
|
4385
|
+
background: var(--ab-cmp-expression-editor-input__background);
|
|
4386
|
+
border-radius: var(--ab-cmp-expression-editor-feedback__border-radius);
|
|
4387
|
+
}
|
|
4388
|
+
|
|
4389
|
+
.ab-QuickFilter {
|
|
4390
|
+
overflow-y: auto;
|
|
4391
|
+
font-size: var(--ab-cmp-quickfilter__font-size);
|
|
4392
|
+
border: var(--ab-cmp-quickfilter__border);
|
|
4393
|
+
background: var(--ab-cmp-quickfilter__background);
|
|
4394
|
+
}
|
|
4395
|
+
|
|
4396
|
+
.ab-QuickFilter__dropdown {
|
|
4397
|
+
white-space: nowrap;
|
|
4398
|
+
max-height: 60vh;
|
|
4399
|
+
overflow-y: auto;
|
|
4400
|
+
}
|
|
4322
4401
|
|
|
4323
4402
|
.ab-alert--error {
|
|
4324
|
-
background: var(--ab-color-error);
|
|
4403
|
+
background: var(--ab-color-error);
|
|
4404
|
+
}
|
|
4325
4405
|
|
|
4326
4406
|
.ab-alert--success {
|
|
4327
|
-
background: var(--ab-color-success);
|
|
4407
|
+
background: var(--ab-color-success);
|
|
4408
|
+
}
|
|
4328
4409
|
|
|
4329
4410
|
.ab-alert--warn,
|
|
4330
4411
|
.ab-alert--warning {
|
|
4331
|
-
background: var(--ab-color-warn);
|
|
4412
|
+
background: var(--ab-color-warn);
|
|
4413
|
+
}
|
|
4332
4414
|
|
|
4333
4415
|
.ab-alert--info {
|
|
4334
|
-
background: var(--ab-color-info);
|
|
4416
|
+
background: var(--ab-color-info);
|
|
4417
|
+
}
|
|
4335
4418
|
|
|
4336
4419
|
.ab-cell--align-left {
|
|
4337
|
-
text-align: left;
|
|
4420
|
+
text-align: left;
|
|
4421
|
+
}
|
|
4338
4422
|
|
|
4339
4423
|
.ab-cell--align-right {
|
|
4340
|
-
text-align: right;
|
|
4424
|
+
text-align: right;
|
|
4425
|
+
}
|
|
4341
4426
|
|
|
4342
4427
|
.ab-cell--align-center {
|
|
4343
|
-
text-align: center;
|
|
4428
|
+
text-align: center;
|
|
4429
|
+
}
|
|
4344
4430
|
|
|
4345
4431
|
.popover-content {
|
|
4346
|
-
padding: 1px;
|
|
4432
|
+
padding: 1px;
|
|
4433
|
+
}
|
|
4347
4434
|
|
|
4348
4435
|
/* Styles for the coloured cell render
|
|
4349
4436
|
*/
|
|
@@ -4352,36 +4439,44 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
4352
4439
|
display: inline-block;
|
|
4353
4440
|
height: 100%;
|
|
4354
4441
|
position: relative;
|
|
4355
|
-
z-index: 0;
|
|
4442
|
+
z-index: 0;
|
|
4443
|
+
}
|
|
4356
4444
|
|
|
4357
4445
|
.ab_div-colour-render-text {
|
|
4358
4446
|
position: absolute;
|
|
4359
4447
|
font-weight: normal;
|
|
4360
4448
|
font-size: 12px;
|
|
4361
|
-
z-index: 100;
|
|
4449
|
+
z-index: 100;
|
|
4450
|
+
}
|
|
4362
4451
|
|
|
4363
4452
|
.ab_div-colour-render-div {
|
|
4364
4453
|
display: inline-block;
|
|
4365
4454
|
height: 100%;
|
|
4366
|
-
width: 100%;
|
|
4455
|
+
width: 100%;
|
|
4456
|
+
}
|
|
4367
4457
|
|
|
4368
4458
|
.ab-ActionColumn {
|
|
4369
4459
|
height: 100%;
|
|
4370
4460
|
display: flex;
|
|
4371
|
-
column-gap: var(--ab-space-1);
|
|
4461
|
+
column-gap: var(--ab-space-1);
|
|
4462
|
+
}
|
|
4372
4463
|
|
|
4373
4464
|
.ab-ActionColumn > button.ab-SimpleButton {
|
|
4374
|
-
|
|
4465
|
+
height: 100%;
|
|
4466
|
+
}
|
|
4375
4467
|
|
|
4376
4468
|
.adaptableRowActionButtons.ag-cell {
|
|
4377
|
-
padding: 0;
|
|
4469
|
+
padding: 0;
|
|
4470
|
+
}
|
|
4378
4471
|
|
|
4379
4472
|
.adaptableRowActionButtons.ag-cell .ab-ActionColumn {
|
|
4380
|
-
|
|
4473
|
+
column-gap: 0;
|
|
4474
|
+
}
|
|
4381
4475
|
|
|
4382
4476
|
.Toastify__toast-container {
|
|
4383
4477
|
border-style: none;
|
|
4384
|
-
border-width: 0px;
|
|
4478
|
+
border-width: 0px;
|
|
4479
|
+
}
|
|
4385
4480
|
|
|
4386
4481
|
.Toastify__toast {
|
|
4387
4482
|
padding: 0;
|
|
@@ -4398,22 +4493,28 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
4398
4493
|
--toastify-color-info: var(--ab-color-info);
|
|
4399
4494
|
--toastify-color-success: var(--ab-color-success);
|
|
4400
4495
|
--toastify-color-warning: var(--ab-color-warn);
|
|
4401
|
-
--toastify-color-error: var(--ab-color-error);
|
|
4496
|
+
--toastify-color-error: var(--ab-color-error);
|
|
4497
|
+
}
|
|
4402
4498
|
|
|
4403
4499
|
.Toastify__toast-body {
|
|
4404
|
-
padding: 0;
|
|
4500
|
+
padding: 0;
|
|
4501
|
+
}
|
|
4405
4502
|
|
|
4406
4503
|
.Toastify__toast--info {
|
|
4407
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-info);
|
|
4504
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-info);
|
|
4505
|
+
}
|
|
4408
4506
|
|
|
4409
4507
|
.Toastify__toast--success {
|
|
4410
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-success);
|
|
4508
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-success);
|
|
4509
|
+
}
|
|
4411
4510
|
|
|
4412
4511
|
.Toastify__toast--warning {
|
|
4413
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-warn);
|
|
4512
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-warn);
|
|
4513
|
+
}
|
|
4414
4514
|
|
|
4415
4515
|
.Toastify__toast--error {
|
|
4416
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-error);
|
|
4516
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-error);
|
|
4517
|
+
}
|
|
4417
4518
|
|
|
4418
4519
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar,
|
|
4419
4520
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar,
|
|
@@ -4424,7 +4525,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
4424
4525
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar,
|
|
4425
4526
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar {
|
|
4426
4527
|
background-color: rgba(0, 0, 0, 0);
|
|
4427
|
-
border-radius: 100px;
|
|
4528
|
+
border-radius: 100px;
|
|
4529
|
+
}
|
|
4428
4530
|
|
|
4429
4531
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:vertical,
|
|
4430
4532
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:vertical,
|
|
@@ -4434,7 +4536,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
4434
4536
|
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:vertical,
|
|
4435
4537
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:vertical,
|
|
4436
4538
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:vertical {
|
|
4437
|
-
width: var(--ab-custom-scrollbar-size);
|
|
4539
|
+
width: var(--ab-custom-scrollbar-size);
|
|
4540
|
+
}
|
|
4438
4541
|
|
|
4439
4542
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:horizontal,
|
|
4440
4543
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:horizontal,
|
|
@@ -4444,7 +4547,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
4444
4547
|
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:horizontal,
|
|
4445
4548
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:horizontal,
|
|
4446
4549
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:horizontal {
|
|
4447
|
-
height: var(--ab-custom-scrollbar-size);
|
|
4550
|
+
height: var(--ab-custom-scrollbar-size);
|
|
4551
|
+
}
|
|
4448
4552
|
|
|
4449
4553
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:hover,
|
|
4450
4554
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:hover,
|
|
@@ -4454,7 +4558,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
4454
4558
|
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:hover,
|
|
4455
4559
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:hover,
|
|
4456
4560
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:hover {
|
|
4457
|
-
background-color: rgba(0, 0, 0, 0.09);
|
|
4561
|
+
background-color: rgba(0, 0, 0, 0.09);
|
|
4562
|
+
}
|
|
4458
4563
|
|
|
4459
4564
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb,
|
|
4460
4565
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb,
|
|
@@ -4467,7 +4572,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
4467
4572
|
background: rgba(0, 0, 0, 0.5);
|
|
4468
4573
|
border-radius: 100px;
|
|
4469
4574
|
background-clip: padding-box;
|
|
4470
|
-
border: 2px solid rgba(0, 0, 0, 0);
|
|
4575
|
+
border: 2px solid rgba(0, 0, 0, 0);
|
|
4576
|
+
}
|
|
4471
4577
|
|
|
4472
4578
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:vertical,
|
|
4473
4579
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:vertical,
|
|
@@ -4477,7 +4583,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
4477
4583
|
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:vertical,
|
|
4478
4584
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:vertical,
|
|
4479
4585
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:vertical {
|
|
4480
|
-
min-height: var(--ab-custom-scrollbar-size);
|
|
4586
|
+
min-height: var(--ab-custom-scrollbar-size);
|
|
4587
|
+
}
|
|
4481
4588
|
|
|
4482
4589
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:horizontal,
|
|
4483
4590
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:horizontal,
|
|
@@ -4487,7 +4594,8 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
4487
4594
|
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:horizontal,
|
|
4488
4595
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:horizontal,
|
|
4489
4596
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:horizontal {
|
|
4490
|
-
min-width: var(--ab-custom-scrollbar-size);
|
|
4597
|
+
min-width: var(--ab-custom-scrollbar-size);
|
|
4598
|
+
}
|
|
4491
4599
|
|
|
4492
4600
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:active,
|
|
4493
4601
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:active,
|
|
@@ -4498,19 +4606,24 @@ button.ab-StatusBar__SubPanel:hover {
|
|
|
4498
4606
|
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:active,
|
|
4499
4607
|
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:active {
|
|
4500
4608
|
background: rgba(0, 0, 0, 0.61);
|
|
4501
|
-
border-radius: 100px;
|
|
4609
|
+
border-radius: 100px;
|
|
4610
|
+
}
|
|
4502
4611
|
|
|
4503
4612
|
.ag-details-row {
|
|
4504
4613
|
display: flex;
|
|
4505
|
-
flex-flow: column;
|
|
4614
|
+
flex-flow: column;
|
|
4615
|
+
}
|
|
4506
4616
|
|
|
4507
4617
|
.ag-details-row .ag-details-grid {
|
|
4508
|
-
|
|
4618
|
+
flex: 1;
|
|
4619
|
+
}
|
|
4509
4620
|
|
|
4510
4621
|
.ab-wait-for-progress-indicator.ab-Grid {
|
|
4511
|
-
pointer-events: none;
|
|
4622
|
+
pointer-events: none;
|
|
4623
|
+
}
|
|
4512
4624
|
|
|
4513
4625
|
html.ab--theme-light {
|
|
4514
|
-
--ab-theme-loaded: light;
|
|
4626
|
+
--ab-theme-loaded: light;
|
|
4627
|
+
}
|
|
4515
4628
|
|
|
4516
4629
|
/*# sourceMappingURL=index.css.map */
|