@giteeteam/apps-team-components 0.4.1 → 0.4.3
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/dist/cells/actors/BaseField.d.ts +17 -0
- package/dist/cells/actors/index.d.ts +4 -0
- package/dist/cells/annex/index.d.ts +7 -0
- package/dist/cells/assignee/index.d.ts +23 -0
- package/dist/cells/bind-workspace/BaseField.d.ts +15 -0
- package/dist/cells/bind-workspace/index.d.ts +12 -0
- package/dist/cells/board/index.d.ts +22 -0
- package/dist/cells/card-type/index.d.ts +6 -0
- package/dist/cells/checkbox/BaseField.d.ts +14 -0
- package/dist/cells/created-at/index.d.ts +7 -0
- package/dist/cells/created-by/index.d.ts +9 -0
- package/dist/cells/data-quote/index.d.ts +8 -0
- package/dist/cells/data-quote/util.d.ts +9 -0
- package/dist/cells/date/BaseField.d.ts +21 -0
- package/dist/cells/date/index.d.ts +6 -0
- package/dist/cells/date-range/BaseField.d.ts +19 -0
- package/dist/cells/date-range/index.d.ts +6 -0
- package/dist/cells/dropdown/BaseField.d.ts +30 -0
- package/dist/cells/dropdown/index.d.ts +22 -0
- package/dist/cells/editor/BaseField.d.ts +29 -0
- package/dist/cells/editor/Field.d.ts +16 -0
- package/dist/cells/editor/config/autoformatRules.d.ts +3 -0
- package/dist/cells/editor/config/index.d.ts +5 -0
- package/dist/cells/editor/config/pluginOptions.d.ts +10 -0
- package/dist/cells/editor/config/withDeserializeHTML.d.ts +64 -0
- package/dist/cells/editor/config/withStyledDraggables.d.ts +2 -0
- package/dist/cells/editor/config/withStyledPlaceHolders.d.ts +2 -0
- package/dist/cells/editor/elements/ImageElement.d.ts +3 -0
- package/dist/cells/editor/elements/MentionElement.d.ts +3 -0
- package/dist/cells/editor/elements/index.d.ts +2 -0
- package/dist/cells/editor/hooks.d.ts +11 -0
- package/dist/cells/editor/index.d.ts +15 -0
- package/dist/cells/editor/plugins/Fullscreen.d.ts +7 -0
- package/dist/cells/editor/plugins/ToolbarButton.d.ts +3 -0
- package/dist/cells/editor/plugins/ToolbarFont.d.ts +12 -0
- package/dist/cells/editor/plugins/ToolbarFontColor.d.ts +7 -0
- package/dist/cells/editor/plugins/ToolbarHistory.d.ts +7 -0
- package/dist/cells/editor/plugins/ToolbarLink.d.ts +4 -0
- package/dist/cells/editor/plugins/ToolbarTable.d.ts +4 -0
- package/dist/cells/editor/plugins/ToolbarUpload.d.ts +4 -0
- package/dist/cells/editor/plugins/Toolbars.d.ts +11 -0
- package/dist/cells/editor/plugins/font-bg-color/createFontBgColorPlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/font-bg-color/defaults.d.ts +2 -0
- package/dist/cells/editor/plugins/font-bg-color/getFontDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/font-bg-color/index.d.ts +3 -0
- package/dist/cells/editor/plugins/font-color/createFontColorPlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/font-color/defaults.d.ts +2 -0
- package/dist/cells/editor/plugins/font-color/getFontDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/font-color/index.d.ts +3 -0
- package/dist/cells/editor/plugins/font-family/createFontFamilyPlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/font-family/defaults.d.ts +2 -0
- package/dist/cells/editor/plugins/font-family/getFontDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/font-family/index.d.ts +3 -0
- package/dist/cells/editor/plugins/font-line-height/createFontLineHeightPlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/font-line-height/defaults.d.ts +2 -0
- package/dist/cells/editor/plugins/font-line-height/getFontDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/font-line-height/index.d.ts +3 -0
- package/dist/cells/editor/plugins/font-size/createFontSizePlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/font-size/defaults.d.ts +2 -0
- package/dist/cells/editor/plugins/font-size/getFontDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/font-size/index.d.ts +3 -0
- package/dist/cells/editor/plugins/image/createImagePlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/image/getImageDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/image/index.d.ts +3 -0
- package/dist/cells/editor/plugins/image/insertImage.d.ts +2 -0
- package/dist/cells/editor/plugins/image/withImageUpload.d.ts +3 -0
- package/dist/cells/editor/plugins/index.d.ts +6 -0
- package/dist/cells/editor/utils.d.ts +13 -0
- package/dist/cells/file/BaseField.d.ts +15 -0
- package/dist/cells/file/UploadFile.d.ts +19 -0
- package/dist/cells/file/index.d.ts +13 -0
- package/dist/cells/formula/BaseField.d.ts +10 -0
- package/dist/cells/formula/index.d.ts +9 -0
- package/dist/cells/item-group/index.d.ts +22 -0
- package/dist/cells/item-type/index.d.ts +23 -0
- package/dist/cells/key/index.d.ts +6 -0
- package/dist/cells/long-text/BaseField.d.ts +17 -0
- package/dist/cells/long-text/index.d.ts +15 -0
- package/dist/cells/name/index.d.ts +14 -0
- package/dist/cells/number/BaseField.d.ts +24 -0
- package/dist/cells/number/index.d.ts +23 -0
- package/dist/cells/priority/index.d.ts +16 -0
- package/dist/cells/radio/BaseField.d.ts +14 -0
- package/dist/cells/script/BaseField.d.ts +8 -0
- package/dist/cells/script/index.d.ts +7 -0
- package/dist/cells/security-level/BaseField.d.ts +19 -0
- package/dist/cells/sprint/index.d.ts +22 -0
- package/dist/cells/status/Field.d.ts +26 -0
- package/dist/cells/status/Transition.d.ts +15 -0
- package/dist/cells/status/TransitionButton.d.ts +27 -0
- package/dist/cells/status/TransitionPanel.d.ts +15 -0
- package/dist/cells/status/View.d.ts +10 -0
- package/dist/cells/status/hooks.d.ts +3 -0
- package/dist/cells/status/index.d.ts +4 -0
- package/dist/cells/story-point/index.d.ts +23 -0
- package/dist/cells/tableCellMapping.d.ts +23 -0
- package/dist/cells/tag/BaseField.d.ts +22 -0
- package/dist/cells/tag/tag-multiple-select/PopoverPanel.d.ts +4 -0
- package/dist/cells/tag/tag-multiple-select/TagPopoverSelect.d.ts +4 -0
- package/dist/cells/text/BaseField.d.ts +16 -0
- package/dist/cells/text/index.d.ts +16 -0
- package/dist/cells/time/BaseField.d.ts +15 -0
- package/dist/cells/time/index.d.ts +6 -0
- package/dist/cells/time-range/BaseField.d.ts +20 -0
- package/dist/cells/time-range/index.d.ts +7 -0
- package/dist/cells/tree/BaseField.d.ts +15 -0
- package/dist/cells/tree/utils.d.ts +2 -0
- package/dist/cells/updated-at/index.d.ts +7 -0
- package/dist/cells/updated-by/index.d.ts +9 -0
- package/dist/cells/user/BaseField.d.ts +27 -0
- package/dist/cells/user/index.d.ts +21 -0
- package/dist/cells/version/index.d.ts +22 -0
- package/dist/cells/workspace/index.d.ts +22 -0
- package/dist/common/EmptyField.d.ts +6 -0
- package/dist/common/FieldErrorBoundary.d.ts +14 -0
- package/dist/common/OverflowTooltip.d.ts +23 -0
- package/dist/common/UploadFile.d.ts +19 -0
- package/dist/common/base-table/ChildCardInlineCreator.d.ts +9 -0
- package/dist/common/base-table/index.d.ts +16 -0
- package/dist/common/columns-settings/ColumnsSettings.d.ts +5 -0
- package/dist/common/columns-settings/ColumnsSettingsItem.d.ts +4 -0
- package/dist/common/data-source/context.d.ts +2 -0
- package/dist/common/filters/filter-query/FilterPanel.d.ts +4 -0
- package/dist/common/filters/filter-query/IqlExpression.d.ts +6 -0
- package/dist/common/filters/filter-query/QuerySelector.d.ts +4 -0
- package/dist/common/filters/filter-query/utils.d.ts +18 -0
- package/dist/common/form-field/FormField.d.ts +15 -0
- package/dist/common/form-field/pure-field/FieldLayout.d.ts +5 -0
- package/dist/common/form-field/pure-field/FormikEnhance.d.ts +1 -0
- package/dist/common/form-field/pure-field/PureField.d.ts +8 -0
- package/dist/common/formik-field-touched/FormikFieldTouched.d.ts +2 -0
- package/dist/common/index.d.ts +16 -0
- package/dist/common/item/IssueActionDropdown.d.ts +18 -0
- package/dist/common/item-icon/ItemIcon.d.ts +8 -0
- package/dist/common/plugin/PluginComponents.d.ts +17 -0
- package/dist/common/plugin/PluginErrorContainer.d.ts +15 -0
- package/dist/common/plugin/PluginLoadComponent.d.ts +27 -0
- package/dist/common/search-select/PopoverPanel.d.ts +4 -0
- package/dist/common/search-select/SearchPopoverSelect.d.ts +4 -0
- package/dist/common/status-selector/index.d.ts +9 -0
- package/dist/common/structure/hooks.d.ts +30 -0
- package/dist/common/structure/index.d.ts +11 -0
- package/dist/common/structure/table-components/TableActionMenu.d.ts +18 -0
- package/dist/common/structure/table-components/TableColumnSettings.d.ts +13 -0
- package/dist/common/structure/table-components/TableEmpty.d.ts +6 -0
- package/dist/common/structure/table-components/TableTitleCell.d.ts +16 -0
- package/dist/common/structure/table-components/index.d.ts +11 -0
- package/dist/common/structure/table-components/tableCellMapping.d.ts +23 -0
- package/dist/common/structure/table-components/useCacheColumns.d.ts +13 -0
- package/dist/common/structure/table-components/useTableColumns.d.ts +22 -0
- package/dist/common/structure/table-components/useTableMenu.d.ts +42 -0
- package/dist/common/structure-table/Table.d.ts +4 -0
- package/dist/common/structure-table/components/Action.d.ts +15 -0
- package/dist/common/structure-table/components/Collapse.d.ts +12 -0
- package/dist/common/structure-table/components/CollapseIcon.d.ts +6 -0
- package/dist/common/structure-table/components/DraggableRow.d.ts +5 -0
- package/dist/common/structure-table/components/Handle.d.ts +3 -0
- package/dist/common/structure-table/components/Row.d.ts +25 -0
- package/dist/common/structure-table/components/index.d.ts +6 -0
- package/dist/common/structure-table/index.d.ts +1 -0
- package/dist/common/user-field/UserAvatar.d.ts +13 -0
- package/dist/common/user-field/UserField.d.ts +15 -0
- package/dist/common/user-field/index.d.ts +2 -0
- package/dist/common/utils.d.ts +41 -0
- package/dist/common/workflow/View.d.ts +11 -0
- package/dist/common/workflow/config.d.ts +87 -0
- package/dist/common/workflow/nodes/StartNode.d.ts +10 -0
- package/dist/common/workflow/nodes/TaskNode.d.ts +12 -0
- package/dist/common/workflow/nodes/index.d.ts +2 -0
- package/dist/fields/base-component/BaseLabel.d.ts +10 -0
- package/dist/fields/base-component/utils.d.ts +4 -0
- package/dist/fields/data-quote/util.d.ts +9 -0
- package/dist/fields/item-activity/BaseField.d.ts +7 -0
- package/dist/fields/item-activity/Comment.d.ts +7 -0
- package/dist/fields/item-level/hooks.d.ts +15 -0
- package/dist/fields/item-level/utils.d.ts +25 -0
- package/dist/icons/index.d.ts +48 -0
- package/dist/index.d.ts +49 -0
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +15 -0
- package/dist/index.js.map +1 -1
- package/dist/lib/ParentMessage.d.ts +7 -0
- package/dist/lib/apis/filter/iql.d.ts +6 -0
- package/dist/lib/apis/forest.d.ts +2 -0
- package/dist/lib/apis/groups/index.d.ts +21 -0
- package/dist/lib/apis/roles/index.d.ts +12 -0
- package/dist/lib/apis/screen/fields.d.ts +21 -0
- package/dist/lib/apis/screen/fieldsBehavior.d.ts +10 -0
- package/dist/lib/apis/screen/index.d.ts +20 -0
- package/dist/lib/contexts/LibraryProvider.d.ts +18 -0
- package/dist/lib/contexts/currentUserAndRoles.d.ts +15 -0
- package/dist/lib/contexts/index.d.ts +7 -0
- package/dist/lib/contexts/token.d.ts +13 -0
- package/dist/lib/contexts/users.d.ts +11 -0
- package/dist/lib/contexts/values.d.ts +6 -0
- package/dist/lib/customFields/hooks.d.ts +24 -0
- package/dist/lib/dataQuoteStore.d.ts +2 -0
- package/dist/lib/date.d.ts +19 -0
- package/dist/lib/dayjs.d.ts +4 -0
- package/dist/lib/env.d.ts +2 -0
- package/dist/lib/error/index.d.ts +2 -0
- package/dist/lib/error/log.d.ts +13 -0
- package/dist/lib/error/utils.d.ts +13 -0
- package/dist/lib/events.d.ts +11 -0
- package/dist/lib/fetch.d.ts +50 -0
- package/dist/lib/filters/filter-query/utils.d.ts +18 -0
- package/dist/lib/forest.d.ts +60 -0
- package/dist/lib/global.d.ts +1114 -0
- package/dist/lib/hooks/index.d.ts +13 -0
- package/dist/lib/hooks/useCurrentUser.d.ts +3 -0
- package/dist/lib/hooks/useCustomFields.d.ts +9 -0
- package/dist/lib/hooks/useDataQuoteStore.d.ts +7 -0
- package/dist/lib/hooks/useFieldTypes.d.ts +9 -0
- package/dist/lib/hooks/useFields.d.ts +12 -0
- package/dist/lib/hooks/useI18n.d.ts +1 -0
- package/dist/lib/hooks/useItemsInfinite.d.ts +48 -0
- package/dist/lib/hooks/useRemoteComponents.d.ts +25 -0
- package/dist/lib/hooks/useTenants.d.ts +7 -0
- package/dist/lib/hooks/useToken.d.ts +3 -0
- package/dist/lib/hooks/useUsers.d.ts +8 -0
- package/dist/lib/hooks/useWatchItemUpdate.d.ts +32 -0
- package/dist/lib/hooks/useWorkspaces.d.ts +8 -0
- package/dist/lib/i18n.d.ts +24 -0
- package/dist/lib/iql.d.ts +31 -0
- package/dist/lib/item/hooks.d.ts +31 -0
- package/dist/lib/item/utils.d.ts +34 -0
- package/dist/lib/kanban/hooks.d.ts +8 -0
- package/dist/lib/locales.d.ts +4 -0
- package/dist/lib/models.d.ts +59 -0
- package/dist/lib/parse.d.ts +3 -0
- package/dist/lib/path.d.ts +4 -0
- package/dist/lib/proxima-sdk/components/index.d.ts +2 -0
- package/dist/lib/proxima-sdk/hooks/index.d.ts +4 -0
- package/dist/lib/proxima-sdk/index.d.ts +5 -0
- package/dist/lib/proxima-sdk/lib/index.d.ts +9 -0
- package/dist/lib/proxima-sdk/schema/index.d.ts +2 -0
- package/dist/lib/regExp.d.ts +11 -0
- package/dist/lib/storage.d.ts +7 -0
- package/dist/lib/store.d.ts +14 -0
- package/dist/lib/types/index.d.ts +3 -0
- package/dist/lib/types/parse-models.d.ts +6 -0
- package/dist/lib/useInitialRecoilState.d.ts +3 -0
- package/dist/lib/useParseQuery.d.ts +53 -0
- package/dist/lib/usePluginManifest.d.ts +33 -0
- package/dist/lib/useUser.d.ts +62 -0
- package/dist/lib/useWatchApp.d.ts +4 -0
- package/dist/lib/useWorkspace.d.ts +1 -0
- package/dist/lib/users.d.ts +3 -0
- package/dist/lib/workflow.d.ts +123 -0
- package/dist/lib/workspace.d.ts +2 -0
- package/dist/locales/en/en_US.d.ts +45 -0
- package/dist/locales/en/package/application.d.ts +73 -0
- package/dist/locales/en/package/automation.d.ts +303 -0
- package/dist/locales/en/package/date.d.ts +54 -0
- package/dist/locales/en/package/fields.d.ts +409 -0
- package/dist/locales/en/package/filters.d.ts +89 -0
- package/dist/locales/en/package/formField.d.ts +157 -0
- package/dist/locales/en/package/global.d.ts +318 -0
- package/dist/locales/en/package/item.d.ts +489 -0
- package/dist/locales/en/package/itemTypes.d.ts +154 -0
- package/dist/locales/en/package/lib.d.ts +127 -0
- package/dist/locales/en/package/message.d.ts +251 -0
- package/dist/locales/en/package/pages.d.ts +67 -0
- package/dist/locales/en/package/permission.d.ts +471 -0
- package/dist/locales/en/package/placeholder.d.ts +179 -0
- package/dist/locales/en/package/plugin.d.ts +20 -0
- package/dist/locales/en/package/report.d.ts +150 -0
- package/dist/locales/en/package/reportPlugin.d.ts +183 -0
- package/dist/locales/en/package/screen.d.ts +121 -0
- package/dist/locales/en/package/sections.d.ts +60 -0
- package/dist/locales/en/package/settings.d.ts +194 -0
- package/dist/locales/en/package/sprint.d.ts +52 -0
- package/dist/locales/en/package/users.d.ts +58 -0
- package/dist/locales/en/package/validate.d.ts +138 -0
- package/dist/locales/en/package/views.d.ts +383 -0
- package/dist/locales/en/package/workflow.d.ts +245 -0
- package/dist/locales/en/package/workspace.d.ts +343 -0
- package/dist/locales/zh/package/application.d.ts +73 -0
- package/dist/locales/zh/package/automation.d.ts +303 -0
- package/dist/locales/zh/package/date.d.ts +54 -0
- package/dist/locales/zh/package/fields.d.ts +409 -0
- package/dist/locales/zh/package/filters.d.ts +89 -0
- package/dist/locales/zh/package/formField.d.ts +162 -0
- package/dist/locales/zh/package/global.d.ts +318 -0
- package/dist/locales/zh/package/item.d.ts +489 -0
- package/dist/locales/zh/package/itemTypes.d.ts +153 -0
- package/dist/locales/zh/package/lib.d.ts +127 -0
- package/dist/locales/zh/package/message.d.ts +251 -0
- package/dist/locales/zh/package/pages.d.ts +67 -0
- package/dist/locales/zh/package/permission.d.ts +470 -0
- package/dist/locales/zh/package/placeholder.d.ts +172 -0
- package/dist/locales/zh/package/plugin.d.ts +20 -0
- package/dist/locales/zh/package/report.d.ts +150 -0
- package/dist/locales/zh/package/reportPlugin.d.ts +183 -0
- package/dist/locales/zh/package/screen.d.ts +116 -0
- package/dist/locales/zh/package/sections.d.ts +63 -0
- package/dist/locales/zh/package/settings.d.ts +192 -0
- package/dist/locales/zh/package/sprint.d.ts +52 -0
- package/dist/locales/zh/package/users.d.ts +58 -0
- package/dist/locales/zh/package/validate.d.ts +138 -0
- package/dist/locales/zh/package/views.d.ts +380 -0
- package/dist/locales/zh/package/workflow.d.ts +245 -0
- package/dist/locales/zh/package/workspace.d.ts +344 -0
- package/dist/locales/zh/zh_CN.d.ts +46 -0
- package/dist/main.css +333 -333
- package/dist/osui/index.d.ts +8 -0
- package/package.json +3 -2
package/dist/main.css
CHANGED
|
@@ -1323,7 +1323,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
1323
1323
|
/* stylelint-disable */
|
|
1324
1324
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1325
1325
|
|
|
1326
|
-
.item-
|
|
1326
|
+
.item-icon__5bb48ba9 {
|
|
1327
1327
|
width: 16px;
|
|
1328
1328
|
height: 16px;
|
|
1329
1329
|
margin-right: 5px;
|
|
@@ -1339,45 +1339,45 @@ div.search-popover-select-panel div.ant-popover-inner-content {
|
|
|
1339
1339
|
padding: 0;
|
|
1340
1340
|
padding-bottom: 8px;
|
|
1341
1341
|
}
|
|
1342
|
-
.
|
|
1342
|
+
.panel__3d8b6af3 {
|
|
1343
1343
|
color: #2e405e;
|
|
1344
1344
|
border-radius: 4px;
|
|
1345
1345
|
}
|
|
1346
|
-
.
|
|
1346
|
+
.panel__3d8b6af3 .search__8a1193b7 {
|
|
1347
1347
|
padding: 15px;
|
|
1348
1348
|
}
|
|
1349
|
-
.
|
|
1349
|
+
.panel__3d8b6af3 .tips__a4e5300b {
|
|
1350
1350
|
padding: 0 15px;
|
|
1351
1351
|
font-size: 12px;
|
|
1352
1352
|
cursor: default;
|
|
1353
1353
|
margin-bottom: 5px;
|
|
1354
1354
|
}
|
|
1355
|
-
.
|
|
1355
|
+
.panel__3d8b6af3 .tips__a4e5300b .clear__bbbb603f {
|
|
1356
1356
|
margin-left: 10px;
|
|
1357
1357
|
color: #0c62ff;
|
|
1358
1358
|
}
|
|
1359
|
-
.
|
|
1359
|
+
.panel__3d8b6af3 .list__f1f6de3f {
|
|
1360
1360
|
list-style: none;
|
|
1361
1361
|
padding: 0;
|
|
1362
1362
|
margin: 0;
|
|
1363
1363
|
height: 260px;
|
|
1364
1364
|
overflow: auto;
|
|
1365
1365
|
}
|
|
1366
|
-
.
|
|
1366
|
+
.panel__3d8b6af3 .list__f1f6de3f li {
|
|
1367
1367
|
padding: 0 15px;
|
|
1368
1368
|
height: 32px;
|
|
1369
1369
|
line-height: 32px;
|
|
1370
1370
|
display: flex;
|
|
1371
1371
|
}
|
|
1372
|
-
.
|
|
1372
|
+
.panel__3d8b6af3 .list__f1f6de3f li .seleted-icon__23de7bb7 {
|
|
1373
1373
|
float: right;
|
|
1374
1374
|
line-height: 32px;
|
|
1375
1375
|
color: #0c62ff;
|
|
1376
1376
|
}
|
|
1377
|
-
.
|
|
1377
|
+
.panel__3d8b6af3 .list__f1f6de3f li:hover {
|
|
1378
1378
|
background: #f4f4f5;
|
|
1379
1379
|
}
|
|
1380
|
-
.
|
|
1380
|
+
.panel__3d8b6af3 .list__f1f6de3f li .tooltip-overflow {
|
|
1381
1381
|
flex: 1;
|
|
1382
1382
|
}
|
|
1383
1383
|
/* stylelint-disable no-duplicate-selectors */
|
|
@@ -1387,7 +1387,7 @@ div.search-popover-select-panel div.ant-popover-inner-content {
|
|
|
1387
1387
|
.search-popover-select-panel {
|
|
1388
1388
|
color: #2e405e;
|
|
1389
1389
|
}
|
|
1390
|
-
.
|
|
1390
|
+
.selected__17833550 {
|
|
1391
1391
|
width: 100%;
|
|
1392
1392
|
border-radius: 4px;
|
|
1393
1393
|
height: 32px;
|
|
@@ -1396,7 +1396,7 @@ div.search-popover-select-panel div.ant-popover-inner-content {
|
|
|
1396
1396
|
padding-right: 20px;
|
|
1397
1397
|
position: relative;
|
|
1398
1398
|
}
|
|
1399
|
-
.
|
|
1399
|
+
.selected__17833550 .value-box__06497ae4 {
|
|
1400
1400
|
padding-left: 10px;
|
|
1401
1401
|
width: 100%;
|
|
1402
1402
|
white-space: nowrap;
|
|
@@ -1404,7 +1404,7 @@ div.search-popover-select-panel div.ant-popover-inner-content {
|
|
|
1404
1404
|
overflow: hidden;
|
|
1405
1405
|
text-overflow: ellipsis;
|
|
1406
1406
|
}
|
|
1407
|
-
.
|
|
1407
|
+
.selected__17833550 .value-box__06497ae4 .selected-value__8f7f4f6c {
|
|
1408
1408
|
background: #f4f4f5;
|
|
1409
1409
|
margin-right: 10px;
|
|
1410
1410
|
padding: 5px;
|
|
@@ -1413,33 +1413,33 @@ div.search-popover-select-panel div.ant-popover-inner-content {
|
|
|
1413
1413
|
font-size: 14px;
|
|
1414
1414
|
color: #2e405e;
|
|
1415
1415
|
}
|
|
1416
|
-
.
|
|
1416
|
+
.selected__17833550 .value-box__06497ae4 .placeholder__53e1cb10 {
|
|
1417
1417
|
color: #989898;
|
|
1418
1418
|
}
|
|
1419
|
-
.
|
|
1419
|
+
.selected__17833550 .value-box__06497ae4 .close-icon__df7dc141 {
|
|
1420
1420
|
margin-left: 3px;
|
|
1421
1421
|
font-size: 12px;
|
|
1422
1422
|
width: 12px;
|
|
1423
1423
|
}
|
|
1424
|
-
.
|
|
1424
|
+
.selected__17833550 .more-info__f271d6dd {
|
|
1425
1425
|
width: 10px;
|
|
1426
1426
|
position: absolute;
|
|
1427
1427
|
right: 10px;
|
|
1428
1428
|
top: 10px;
|
|
1429
1429
|
display: inline-block;
|
|
1430
1430
|
}
|
|
1431
|
-
.down-
|
|
1431
|
+
.down-icon__4bbbe906 {
|
|
1432
1432
|
position: absolute;
|
|
1433
1433
|
line-height: 32px;
|
|
1434
1434
|
}
|
|
1435
|
-
.add-
|
|
1435
|
+
.add-icon__6053e397 {
|
|
1436
1436
|
font-size: 18px;
|
|
1437
1437
|
}
|
|
1438
1438
|
/* stylelint-disable no-duplicate-selectors */
|
|
1439
1439
|
/* stylelint-disable */
|
|
1440
1440
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1441
1441
|
|
|
1442
|
-
.table-action-
|
|
1442
|
+
.table-action-icon__96bd3f1f {
|
|
1443
1443
|
display: flex;
|
|
1444
1444
|
width: 12px;
|
|
1445
1445
|
padding: 15px 8px;
|
|
@@ -1458,54 +1458,54 @@ div.search-popover-select-panel div.ant-popover-inner-content {
|
|
|
1458
1458
|
-webkit-tap-highlight-color: transparent;
|
|
1459
1459
|
}
|
|
1460
1460
|
@media (hover: hover) {
|
|
1461
|
-
.table-action-
|
|
1461
|
+
.table-action-icon__96bd3f1f:hover {
|
|
1462
1462
|
background-color: var(--action-background, rgba(0, 0, 0, 0.05));
|
|
1463
1463
|
}
|
|
1464
|
-
.table-action-
|
|
1464
|
+
.table-action-icon__96bd3f1f:hover svg {
|
|
1465
1465
|
fill: #6f7b88;
|
|
1466
1466
|
}
|
|
1467
1467
|
}
|
|
1468
|
-
.table-action-
|
|
1468
|
+
.table-action-icon__96bd3f1f svg {
|
|
1469
1469
|
flex: 0 0 auto;
|
|
1470
1470
|
margin: auto;
|
|
1471
1471
|
height: 100%;
|
|
1472
1472
|
overflow: visible;
|
|
1473
1473
|
fill: #919eab;
|
|
1474
1474
|
}
|
|
1475
|
-
.table-action-
|
|
1475
|
+
.table-action-icon__96bd3f1f:active {
|
|
1476
1476
|
background-color: var(--background, rgba(0, 0, 0, 0.05));
|
|
1477
1477
|
}
|
|
1478
|
-
.table-action-
|
|
1478
|
+
.table-action-icon__96bd3f1f:active svg {
|
|
1479
1479
|
fill: var(--fill, #788491);
|
|
1480
1480
|
}
|
|
1481
|
-
.table-action-
|
|
1481
|
+
.table-action-icon__96bd3f1f:focus-visible {
|
|
1482
1482
|
outline: none;
|
|
1483
1483
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0), 0 0px 0px 2px #4c9ffe;
|
|
1484
1484
|
}
|
|
1485
|
-
.table-action-
|
|
1485
|
+
.table-action-icon__96bd3f1f.disabled__ce8265d9 {
|
|
1486
1486
|
cursor: inherit !important;
|
|
1487
1487
|
}
|
|
1488
|
-
.table-action-
|
|
1489
|
-
.table-action-
|
|
1488
|
+
.table-action-icon__96bd3f1f.disabled__ce8265d9:hover,
|
|
1489
|
+
.table-action-icon__96bd3f1f.disabled__ce8265d9:active {
|
|
1490
1490
|
background-color: transparent;
|
|
1491
1491
|
}
|
|
1492
1492
|
/* stylelint-disable no-duplicate-selectors */
|
|
1493
1493
|
/* stylelint-disable */
|
|
1494
1494
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1495
1495
|
|
|
1496
|
-
.collapse-
|
|
1496
|
+
.collapse-handle__8640fbf5 {
|
|
1497
1497
|
margin-right: 0.5em;
|
|
1498
1498
|
transition: transform 0.15s ease-out;
|
|
1499
1499
|
transform: rotate(0deg);
|
|
1500
1500
|
}
|
|
1501
|
-
.collapse-
|
|
1501
|
+
.collapse-handle__8640fbf5.collapsed__6b2a554b {
|
|
1502
1502
|
transform: rotate(-90deg);
|
|
1503
1503
|
}
|
|
1504
1504
|
/* stylelint-disable no-duplicate-selectors */
|
|
1505
1505
|
/* stylelint-disable */
|
|
1506
1506
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1507
1507
|
|
|
1508
|
-
.hover-
|
|
1508
|
+
.hover-style__1a1bc20e {
|
|
1509
1509
|
border: 1px solid #F1F2F4;
|
|
1510
1510
|
box-sizing: border-box;
|
|
1511
1511
|
padding: 0 8px !important;
|
|
@@ -1515,10 +1515,10 @@ div.search-popover-select-panel div.ant-popover-inner-content {
|
|
|
1515
1515
|
justify-content: space-between;
|
|
1516
1516
|
align-items: center;
|
|
1517
1517
|
}
|
|
1518
|
-
.
|
|
1518
|
+
.roow__a27af4a0.handle__d64f63a4 .over-line__88b73408 {
|
|
1519
1519
|
transition: margin-lef 0.3s ease-in-out;
|
|
1520
1520
|
}
|
|
1521
|
-
.
|
|
1521
|
+
.roow__a27af4a0.clone__9c78d07d {
|
|
1522
1522
|
left: 250px !important;
|
|
1523
1523
|
width: 300px !important;
|
|
1524
1524
|
padding-left: 30px;
|
|
@@ -1531,56 +1531,56 @@ div.search-popover-select-panel div.ant-popover-inner-content {
|
|
|
1531
1531
|
-webkit-line-clamp: 1;
|
|
1532
1532
|
line-height: 48px;
|
|
1533
1533
|
}
|
|
1534
|
-
.
|
|
1534
|
+
.roow__a27af4a0.clone__9c78d07d .count__4f5ac571 {
|
|
1535
1535
|
transform: translate(-100%, -100%);
|
|
1536
1536
|
}
|
|
1537
|
-
.
|
|
1537
|
+
.roow__a27af4a0.dragging__a478b33a {
|
|
1538
1538
|
box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.1);
|
|
1539
1539
|
}
|
|
1540
|
-
.
|
|
1540
|
+
.roow__a27af4a0.active__f4f87e52:not(.above__26aead18) .over-line__88b73408 {
|
|
1541
1541
|
bottom: 0;
|
|
1542
1542
|
}
|
|
1543
|
-
.
|
|
1543
|
+
.roow__a27af4a0.active__f4f87e52.above__26aead18 .over-line__88b73408 {
|
|
1544
1544
|
top: 0;
|
|
1545
1545
|
}
|
|
1546
|
-
.
|
|
1546
|
+
.roow__a27af4a0 .over-line__88b73408 {
|
|
1547
1547
|
position: absolute;
|
|
1548
1548
|
height: 3px;
|
|
1549
1549
|
background-color: #ccc;
|
|
1550
1550
|
left: 0;
|
|
1551
1551
|
}
|
|
1552
|
-
.
|
|
1552
|
+
.roow__a27af4a0 .collapse-btn__892f3870 {
|
|
1553
1553
|
margin-left: var(--spacing);
|
|
1554
1554
|
}
|
|
1555
|
-
.
|
|
1555
|
+
.roow__a27af4a0 .draggable-btn__4474b52b {
|
|
1556
1556
|
height: 100%;
|
|
1557
1557
|
opacity: 0;
|
|
1558
1558
|
border-radius: 0;
|
|
1559
1559
|
padding: 10px 0px;
|
|
1560
1560
|
}
|
|
1561
|
-
.
|
|
1562
|
-
.
|
|
1563
|
-
.
|
|
1561
|
+
.roow__a27af4a0.BaseTable__row:hover .draggable-btn__4474b52b,
|
|
1562
|
+
.roow__a27af4a0.BaseTable__row--hovered .draggable-btn__4474b52b,
|
|
1563
|
+
.roow__a27af4a0:hover .draggable-btn__4474b52b {
|
|
1564
1564
|
opacity: 1;
|
|
1565
1565
|
background-color: #fff;
|
|
1566
1566
|
}
|
|
1567
|
-
.
|
|
1567
|
+
.roow__a27af4a0 .BaseTable__expand-icon {
|
|
1568
1568
|
margin-left: 0 !important;
|
|
1569
1569
|
margin-right: 0.2em;
|
|
1570
1570
|
}
|
|
1571
|
-
.no-sider .
|
|
1571
|
+
.no-sider .roow__a27af4a0.clone__9c78d07d {
|
|
1572
1572
|
left: 0 !important;
|
|
1573
1573
|
}
|
|
1574
1574
|
/* stylelint-disable no-duplicate-selectors */
|
|
1575
1575
|
/* stylelint-disable */
|
|
1576
1576
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1577
1577
|
|
|
1578
|
-
.upload-drag-
|
|
1578
|
+
.upload-drag-text__82cc5a6d {
|
|
1579
1579
|
display: flex;
|
|
1580
1580
|
align-items: center;
|
|
1581
1581
|
justify-content: center;
|
|
1582
1582
|
}
|
|
1583
|
-
.upload-drag-
|
|
1583
|
+
.upload-drag-text__82cc5a6d .upload__52b85ba2 {
|
|
1584
1584
|
color: #108cee;
|
|
1585
1585
|
font-size: 20px;
|
|
1586
1586
|
margin-right: 5px;
|
|
@@ -1589,7 +1589,7 @@ div.search-popover-select-panel div.ant-popover-inner-content {
|
|
|
1589
1589
|
/* stylelint-disable */
|
|
1590
1590
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1591
1591
|
|
|
1592
|
-
span.avatar-
|
|
1592
|
+
span.avatar-item__cccda211.avatar__0fe4169a {
|
|
1593
1593
|
width: 20px;
|
|
1594
1594
|
height: 20px;
|
|
1595
1595
|
border-radius: 50%;
|
|
@@ -1598,7 +1598,7 @@ span.avatar-item__c193c6b4.avatar__2650b30b {
|
|
|
1598
1598
|
margin-right: 3px;
|
|
1599
1599
|
vertical-align: middle;
|
|
1600
1600
|
}
|
|
1601
|
-
span.avatar-
|
|
1601
|
+
span.avatar-item__cccda211.default-avatar__97e44879 {
|
|
1602
1602
|
display: inline-flex;
|
|
1603
1603
|
align-items: center;
|
|
1604
1604
|
justify-content: center;
|
|
@@ -1614,36 +1614,36 @@ span.avatar-item__c193c6b4.default-avatar__6f27d311 {
|
|
|
1614
1614
|
/* stylelint-disable */
|
|
1615
1615
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1616
1616
|
|
|
1617
|
-
span.user-
|
|
1617
|
+
span.user-field__2c4c07dd {
|
|
1618
1618
|
color: #091e42;
|
|
1619
1619
|
padding-right: 10px;
|
|
1620
1620
|
padding-right: 5px;
|
|
1621
1621
|
align-items: center;
|
|
1622
1622
|
}
|
|
1623
|
-
span.user-
|
|
1623
|
+
span.user-field__2c4c07dd .username__26ce02cb {
|
|
1624
1624
|
line-height: 20px;
|
|
1625
1625
|
font-size: 14px;
|
|
1626
1626
|
padding-top: 2px;
|
|
1627
1627
|
}
|
|
1628
|
-
span.user-
|
|
1628
|
+
span.user-field__2c4c07dd .disabled {
|
|
1629
1629
|
color: #848C9F;
|
|
1630
1630
|
}
|
|
1631
|
-
span.user-
|
|
1631
|
+
span.user-field__2c4c07dd .deleted {
|
|
1632
1632
|
text-decoration: line-through;
|
|
1633
1633
|
}
|
|
1634
1634
|
/* stylelint-disable no-duplicate-selectors */
|
|
1635
1635
|
/* stylelint-disable */
|
|
1636
1636
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1637
1637
|
|
|
1638
|
-
.
|
|
1638
|
+
.annex__f0f44185 {
|
|
1639
1639
|
width: 100%;
|
|
1640
1640
|
}
|
|
1641
|
-
.upload-drag-
|
|
1641
|
+
.upload-drag-text__b3e7c8e0 {
|
|
1642
1642
|
display: flex;
|
|
1643
1643
|
align-items: center;
|
|
1644
1644
|
justify-content: center;
|
|
1645
1645
|
}
|
|
1646
|
-
.upload-drag-
|
|
1646
|
+
.upload-drag-text__b3e7c8e0 .upload__e2ddb0c9 {
|
|
1647
1647
|
color: #108cee;
|
|
1648
1648
|
font-size: 20px;
|
|
1649
1649
|
margin-right: 5px;
|
|
@@ -1652,7 +1652,7 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1652
1652
|
/* stylelint-disable */
|
|
1653
1653
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1654
1654
|
|
|
1655
|
-
.hover-
|
|
1655
|
+
.hover-style__61be09cb {
|
|
1656
1656
|
border: 1px solid #F1F2F4;
|
|
1657
1657
|
box-sizing: border-box;
|
|
1658
1658
|
padding: 0 8px !important;
|
|
@@ -1662,7 +1662,7 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1662
1662
|
justify-content: space-between;
|
|
1663
1663
|
align-items: center;
|
|
1664
1664
|
}
|
|
1665
|
-
.field-
|
|
1665
|
+
.field-value__982862b9:hover[data-hideHover='false'] {
|
|
1666
1666
|
border: 1px solid #F1F2F4;
|
|
1667
1667
|
box-sizing: border-box;
|
|
1668
1668
|
padding: 0 8px !important;
|
|
@@ -1672,19 +1672,19 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1672
1672
|
justify-content: space-between;
|
|
1673
1673
|
align-items: center;
|
|
1674
1674
|
}
|
|
1675
|
-
.field-
|
|
1675
|
+
.field-value__982862b9:hover[data-hideHover='false'] .hover-icon__b35db98f {
|
|
1676
1676
|
display: inline-block;
|
|
1677
1677
|
}
|
|
1678
|
-
.field-
|
|
1678
|
+
.field-value__982862b9 .hover-icon__b35db98f {
|
|
1679
1679
|
display: none;
|
|
1680
1680
|
}
|
|
1681
|
-
.field-
|
|
1681
|
+
.field-value__982862b9 .ant-select {
|
|
1682
1682
|
width: 100%;
|
|
1683
1683
|
}
|
|
1684
|
-
.field-
|
|
1684
|
+
.field-value__982862b9 .deleted__7b052370 {
|
|
1685
1685
|
text-decoration: line-through;
|
|
1686
1686
|
}
|
|
1687
|
-
.field-
|
|
1687
|
+
.field-value__982862b9 .disabled__b30ec661 {
|
|
1688
1688
|
color: #848C9F;
|
|
1689
1689
|
}
|
|
1690
1690
|
/* stylelint-disable no-duplicate-selectors */
|
|
@@ -1759,13 +1759,13 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1759
1759
|
/* stylelint-disable */
|
|
1760
1760
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1761
1761
|
|
|
1762
|
-
.
|
|
1762
|
+
.dropdown__1a6d7a2b {
|
|
1763
1763
|
width: 100%;
|
|
1764
1764
|
}
|
|
1765
|
-
.
|
|
1765
|
+
.dropdown__1a6d7a2b .select__1dad21f8 {
|
|
1766
1766
|
width: 100%;
|
|
1767
1767
|
}
|
|
1768
|
-
.
|
|
1768
|
+
.pointer__73ca89a0 {
|
|
1769
1769
|
cursor: pointer;
|
|
1770
1770
|
color: #0c62ff;
|
|
1771
1771
|
}
|
|
@@ -1773,25 +1773,25 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1773
1773
|
/* stylelint-disable */
|
|
1774
1774
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1775
1775
|
|
|
1776
|
-
.check-
|
|
1776
|
+
.check-box__2e3820ea .ant-checkbox-wrapper + .ant-checkbox-wrapper {
|
|
1777
1777
|
margin-left: 0;
|
|
1778
1778
|
}
|
|
1779
1779
|
/* stylelint-disable no-duplicate-selectors */
|
|
1780
1780
|
/* stylelint-disable */
|
|
1781
1781
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1782
1782
|
|
|
1783
|
-
.tag-
|
|
1783
|
+
.tag-overlay__965ba506 {
|
|
1784
1784
|
max-width: 300px;
|
|
1785
1785
|
}
|
|
1786
|
-
.tag-
|
|
1786
|
+
.tag-overlay__965ba506 .ant-tag {
|
|
1787
1787
|
margin-bottom: 5px;
|
|
1788
1788
|
cursor: pointer;
|
|
1789
1789
|
white-space: break-spaces;
|
|
1790
1790
|
}
|
|
1791
|
-
.tag-
|
|
1791
|
+
.tag-overlay__965ba506 .ant-tag:last-child {
|
|
1792
1792
|
margin-right: 0px;
|
|
1793
1793
|
}
|
|
1794
|
-
.tag-
|
|
1794
|
+
.tag-overlay__965ba506 .custom-disabled {
|
|
1795
1795
|
pointer-events: none;
|
|
1796
1796
|
color: #ccc;
|
|
1797
1797
|
}
|
|
@@ -1799,7 +1799,7 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1799
1799
|
/* stylelint-disable */
|
|
1800
1800
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1801
1801
|
|
|
1802
|
-
.hover-
|
|
1802
|
+
.hover-style__04c0a585 {
|
|
1803
1803
|
border: 1px solid #F1F2F4;
|
|
1804
1804
|
box-sizing: border-box;
|
|
1805
1805
|
padding: 0 8px !important;
|
|
@@ -1809,24 +1809,24 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1809
1809
|
justify-content: space-between;
|
|
1810
1810
|
align-items: center;
|
|
1811
1811
|
}
|
|
1812
|
-
.field-
|
|
1812
|
+
.field-date__596abaea {
|
|
1813
1813
|
width: 100%;
|
|
1814
1814
|
}
|
|
1815
|
-
.field-
|
|
1815
|
+
.field-date__596abaea .ant-picker {
|
|
1816
1816
|
padding: 0;
|
|
1817
1817
|
}
|
|
1818
|
-
.field-
|
|
1818
|
+
.field-date__596abaea .ant-picker-suffix {
|
|
1819
1819
|
position: absolute;
|
|
1820
1820
|
right: 11px;
|
|
1821
1821
|
cursor: pointer;
|
|
1822
1822
|
}
|
|
1823
|
-
.field-
|
|
1823
|
+
.field-date__596abaea .ant-picker-clear {
|
|
1824
1824
|
right: 11px;
|
|
1825
1825
|
}
|
|
1826
|
-
.field-
|
|
1826
|
+
.field-date__596abaea .ant-picker-input > input {
|
|
1827
1827
|
padding: 4px 11px 4px;
|
|
1828
1828
|
}
|
|
1829
|
-
.field-
|
|
1829
|
+
.field-value__1a437f52:hover[data-hideHover='false'] {
|
|
1830
1830
|
border: 1px solid #F1F2F4;
|
|
1831
1831
|
box-sizing: border-box;
|
|
1832
1832
|
padding: 0 8px !important;
|
|
@@ -1836,10 +1836,10 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1836
1836
|
justify-content: space-between;
|
|
1837
1837
|
align-items: center;
|
|
1838
1838
|
}
|
|
1839
|
-
.field-
|
|
1839
|
+
.field-value__1a437f52:hover[data-hideHover='false'] .hover-icon__9f10ad70 {
|
|
1840
1840
|
display: inline-block;
|
|
1841
1841
|
}
|
|
1842
|
-
.field-
|
|
1842
|
+
.field-value__1a437f52 .hover-icon__9f10ad70 {
|
|
1843
1843
|
display: none;
|
|
1844
1844
|
}
|
|
1845
1845
|
/* stylelint-disable no-duplicate-selectors */
|
|
@@ -1926,14 +1926,14 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1926
1926
|
/* stylelint-disable */
|
|
1927
1927
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1928
1928
|
|
|
1929
|
-
.range-picker-
|
|
1929
|
+
.range-picker-config__3c23504e .ant-picker-range-separator {
|
|
1930
1930
|
white-space: nowrap;
|
|
1931
1931
|
}
|
|
1932
1932
|
/* stylelint-disable no-duplicate-selectors */
|
|
1933
1933
|
/* stylelint-disable */
|
|
1934
1934
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1935
1935
|
|
|
1936
|
-
.hover-
|
|
1936
|
+
.hover-style__b4debd59 {
|
|
1937
1937
|
border: 1px solid #F1F2F4;
|
|
1938
1938
|
box-sizing: border-box;
|
|
1939
1939
|
padding: 0 8px !important;
|
|
@@ -1943,10 +1943,10 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1943
1943
|
justify-content: space-between;
|
|
1944
1944
|
align-items: center;
|
|
1945
1945
|
}
|
|
1946
|
-
.
|
|
1946
|
+
.dropdown__99620bab {
|
|
1947
1947
|
width: 100%;
|
|
1948
1948
|
}
|
|
1949
|
-
.
|
|
1949
|
+
.dropdown__99620bab:hover[data-hideHover='false'] {
|
|
1950
1950
|
border: 1px solid #F1F2F4;
|
|
1951
1951
|
box-sizing: border-box;
|
|
1952
1952
|
padding: 0 8px !important;
|
|
@@ -1956,20 +1956,20 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1956
1956
|
justify-content: space-between;
|
|
1957
1957
|
align-items: center;
|
|
1958
1958
|
}
|
|
1959
|
-
.
|
|
1959
|
+
.dropdown__99620bab:hover[data-hideHover='false'] .hover-icon__fb82e4a6 {
|
|
1960
1960
|
display: inline-block;
|
|
1961
1961
|
}
|
|
1962
|
-
.
|
|
1962
|
+
.dropdown__99620bab .hover-icon__fb82e4a6 {
|
|
1963
1963
|
display: none;
|
|
1964
1964
|
}
|
|
1965
|
-
.
|
|
1965
|
+
.dropdown__99620bab .ant-select {
|
|
1966
1966
|
width: 100%;
|
|
1967
1967
|
}
|
|
1968
1968
|
/* stylelint-disable no-duplicate-selectors */
|
|
1969
1969
|
/* stylelint-disable */
|
|
1970
1970
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1971
1971
|
|
|
1972
|
-
.toolbar-
|
|
1972
|
+
.toolbar-btn__d9826c76 {
|
|
1973
1973
|
display: flex;
|
|
1974
1974
|
justify-content: center;
|
|
1975
1975
|
align-items: center;
|
|
@@ -1982,44 +1982,44 @@ span.user-field__8fe18d00 .deleted {
|
|
|
1982
1982
|
user-select: none;
|
|
1983
1983
|
color: #2e2e2e;
|
|
1984
1984
|
}
|
|
1985
|
-
.toolbar-
|
|
1985
|
+
.toolbar-btn__d9826c76:hover {
|
|
1986
1986
|
color: #0066cc;
|
|
1987
1987
|
}
|
|
1988
|
-
.toolbar-
|
|
1988
|
+
.toolbar-btn__d9826c76 svg {
|
|
1989
1989
|
height: 14px;
|
|
1990
1990
|
}
|
|
1991
|
-
.
|
|
1991
|
+
.active__4d0c884c {
|
|
1992
1992
|
color: #0066cc;
|
|
1993
1993
|
}
|
|
1994
1994
|
/* stylelint-disable no-duplicate-selectors */
|
|
1995
1995
|
/* stylelint-disable */
|
|
1996
1996
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1997
1997
|
|
|
1998
|
-
.link-
|
|
1998
|
+
.link-popover__219e2ed8 {
|
|
1999
1999
|
width: 220px;
|
|
2000
2000
|
}
|
|
2001
|
-
.link-
|
|
2001
|
+
.link-popover__219e2ed8 .btn-group__960aa154 {
|
|
2002
2002
|
text-align: end;
|
|
2003
2003
|
margin-top: 20px;
|
|
2004
2004
|
}
|
|
2005
|
-
.link-
|
|
2005
|
+
.link-popover__219e2ed8 .btn-group__960aa154 button:last-child {
|
|
2006
2006
|
margin-left: 15px;
|
|
2007
2007
|
}
|
|
2008
2008
|
/* stylelint-disable no-duplicate-selectors */
|
|
2009
2009
|
/* stylelint-disable */
|
|
2010
2010
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2011
2011
|
|
|
2012
|
-
.
|
|
2012
|
+
.tabs__4f255ab9 {
|
|
2013
2013
|
width: 300px;
|
|
2014
2014
|
height: 200px;
|
|
2015
2015
|
}
|
|
2016
|
-
.
|
|
2016
|
+
.tabs__4f255ab9 .ant-upload {
|
|
2017
2017
|
height: 130px;
|
|
2018
2018
|
}
|
|
2019
|
-
.
|
|
2019
|
+
.tabs__4f255ab9 .tab-url__958acfb2 {
|
|
2020
2020
|
padding: 10px;
|
|
2021
2021
|
}
|
|
2022
|
-
.
|
|
2022
|
+
.tabs__4f255ab9 .tab-url__958acfb2 .btn__d5876e55 {
|
|
2023
2023
|
margin-top: 10px;
|
|
2024
2024
|
float: right;
|
|
2025
2025
|
}
|
|
@@ -2054,13 +2054,13 @@ div.BaseTable__row-cell {
|
|
|
2054
2054
|
/* stylelint-disable */
|
|
2055
2055
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2056
2056
|
|
|
2057
|
-
.
|
|
2057
|
+
.btn__9e1a1a99 {
|
|
2058
2058
|
margin-top: 10px;
|
|
2059
2059
|
}
|
|
2060
|
-
.
|
|
2060
|
+
.btn__9e1a1a99 .save__01a24b08 {
|
|
2061
2061
|
margin-right: 5px;
|
|
2062
2062
|
}
|
|
2063
|
-
.
|
|
2063
|
+
.mask__e087e8dd {
|
|
2064
2064
|
position: absolute;
|
|
2065
2065
|
left: 0;
|
|
2066
2066
|
right: 0;
|
|
@@ -2068,11 +2068,11 @@ div.BaseTable__row-cell {
|
|
|
2068
2068
|
bottom: 0;
|
|
2069
2069
|
z-index: 2;
|
|
2070
2070
|
}
|
|
2071
|
-
.
|
|
2071
|
+
.wrapper__02ee4188 {
|
|
2072
2072
|
width: 100%;
|
|
2073
2073
|
position: relative;
|
|
2074
2074
|
}
|
|
2075
|
-
.
|
|
2075
|
+
.wrapper__02ee4188 .edit__25e12e95 {
|
|
2076
2076
|
position: absolute;
|
|
2077
2077
|
right: 0;
|
|
2078
2078
|
color: #7487f2;
|
|
@@ -2080,41 +2080,41 @@ div.BaseTable__row-cell {
|
|
|
2080
2080
|
top: -34px;
|
|
2081
2081
|
cursor: pointer;
|
|
2082
2082
|
}
|
|
2083
|
-
.
|
|
2083
|
+
.wrapper__02ee4188 .inner-edit {
|
|
2084
2084
|
height: 100%;
|
|
2085
2085
|
border: 1px solid #d9d9d9;
|
|
2086
2086
|
}
|
|
2087
|
-
.
|
|
2087
|
+
.wrapper__02ee4188 .inner-edit > div:nth-child(2) {
|
|
2088
2088
|
min-height: 80px !important;
|
|
2089
2089
|
}
|
|
2090
|
-
.
|
|
2091
|
-
.
|
|
2090
|
+
.wrapper__02ee4188 .inner-edit,
|
|
2091
|
+
.wrapper__02ee4188 .inner-read {
|
|
2092
2092
|
width: 100%;
|
|
2093
2093
|
outline: 0;
|
|
2094
2094
|
}
|
|
2095
|
-
.
|
|
2096
|
-
.
|
|
2095
|
+
.wrapper__02ee4188 .inner-edit > div:first-child,
|
|
2096
|
+
.wrapper__02ee4188 .inner-read > div:first-child {
|
|
2097
2097
|
width: 100%;
|
|
2098
2098
|
margin: 0;
|
|
2099
2099
|
padding: 0;
|
|
2100
2100
|
}
|
|
2101
|
-
.
|
|
2101
|
+
.wrapper__02ee4188 .inner-read p {
|
|
2102
2102
|
padding-top: 0;
|
|
2103
2103
|
}
|
|
2104
|
-
.
|
|
2104
|
+
.wrapper__02ee4188 .inner-read > div:last-child {
|
|
2105
2105
|
padding: 0;
|
|
2106
2106
|
}
|
|
2107
2107
|
/* stylelint-disable no-duplicate-selectors */
|
|
2108
2108
|
/* stylelint-disable */
|
|
2109
2109
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2110
2110
|
|
|
2111
|
-
.upload-drag-
|
|
2111
|
+
.upload-drag-text__084d5a3e {
|
|
2112
2112
|
display: flex;
|
|
2113
2113
|
align-items: center;
|
|
2114
2114
|
justify-content: center;
|
|
2115
2115
|
white-space: nowrap;
|
|
2116
2116
|
}
|
|
2117
|
-
.upload-drag-
|
|
2117
|
+
.upload-drag-text__084d5a3e .upload__fb481b8e {
|
|
2118
2118
|
color: #108cee;
|
|
2119
2119
|
font-size: 20px;
|
|
2120
2120
|
margin-right: 5px;
|
|
@@ -2123,14 +2123,14 @@ div.BaseTable__row-cell {
|
|
|
2123
2123
|
/* stylelint-disable */
|
|
2124
2124
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2125
2125
|
|
|
2126
|
-
.
|
|
2126
|
+
.formula__bc10769e .ant-btn.ant-btn-link {
|
|
2127
2127
|
padding: 0;
|
|
2128
2128
|
}
|
|
2129
|
-
.formula-
|
|
2129
|
+
.formula-field__0ff8e683 {
|
|
2130
2130
|
display: flex!important;
|
|
2131
2131
|
}
|
|
2132
|
-
.formula-
|
|
2133
|
-
.formula-
|
|
2132
|
+
.formula-field__0ff8e683 .addonBefore_class__ab053e19,
|
|
2133
|
+
.formula-field__0ff8e683 .addonAfter_class__9d7950a3 {
|
|
2134
2134
|
line-height: 30px;
|
|
2135
2135
|
margin-right: 0px;
|
|
2136
2136
|
}
|
|
@@ -2138,7 +2138,7 @@ div.BaseTable__row-cell {
|
|
|
2138
2138
|
/* stylelint-disable */
|
|
2139
2139
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2140
2140
|
|
|
2141
|
-
.hover-
|
|
2141
|
+
.hover-style__acca81f2 {
|
|
2142
2142
|
border: 1px solid #F1F2F4;
|
|
2143
2143
|
box-sizing: border-box;
|
|
2144
2144
|
padding: 0 8px !important;
|
|
@@ -2148,7 +2148,7 @@ div.BaseTable__row-cell {
|
|
|
2148
2148
|
justify-content: space-between;
|
|
2149
2149
|
align-items: center;
|
|
2150
2150
|
}
|
|
2151
|
-
.field-
|
|
2151
|
+
.field-value__da18d13a:hover[data-hideHover='false'] {
|
|
2152
2152
|
border: 1px solid #F1F2F4;
|
|
2153
2153
|
box-sizing: border-box;
|
|
2154
2154
|
padding: 0 8px !important;
|
|
@@ -2162,7 +2162,7 @@ div.BaseTable__row-cell {
|
|
|
2162
2162
|
/* stylelint-disable */
|
|
2163
2163
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2164
2164
|
|
|
2165
|
-
.hover-
|
|
2165
|
+
.hover-style__59ae582e {
|
|
2166
2166
|
border: 1px solid #F1F2F4;
|
|
2167
2167
|
box-sizing: border-box;
|
|
2168
2168
|
padding: 0 8px !important;
|
|
@@ -2172,18 +2172,18 @@ div.BaseTable__row-cell {
|
|
|
2172
2172
|
justify-content: space-between;
|
|
2173
2173
|
align-items: center;
|
|
2174
2174
|
}
|
|
2175
|
-
.
|
|
2175
|
+
.number_field__c6a6e765 {
|
|
2176
2176
|
display: flex !important;
|
|
2177
2177
|
}
|
|
2178
|
-
.
|
|
2179
|
-
.
|
|
2178
|
+
.number_field__c6a6e765 .addonBefore_class__552619a6,
|
|
2179
|
+
.number_field__c6a6e765 .addonAfter_class__0535df33 {
|
|
2180
2180
|
line-height: 30px;
|
|
2181
2181
|
margin-right: 0px;
|
|
2182
2182
|
}
|
|
2183
|
-
.
|
|
2183
|
+
.number_field__c6a6e765 .ant-input-group {
|
|
2184
2184
|
display: flex;
|
|
2185
2185
|
}
|
|
2186
|
-
.field-
|
|
2186
|
+
.field-value__976bbd5b:hover[data-hideHover='false'] {
|
|
2187
2187
|
border: 1px solid #F1F2F4;
|
|
2188
2188
|
box-sizing: border-box;
|
|
2189
2189
|
padding: 0 8px !important;
|
|
@@ -2193,7 +2193,7 @@ div.BaseTable__row-cell {
|
|
|
2193
2193
|
justify-content: space-between;
|
|
2194
2194
|
align-items: center;
|
|
2195
2195
|
}
|
|
2196
|
-
.field-
|
|
2196
|
+
.field-value__976bbd5b:hover[data-hideHover='false'] .hover-icon__1384c7f2 {
|
|
2197
2197
|
width: 24px;
|
|
2198
2198
|
display: flex;
|
|
2199
2199
|
flex-direction: column;
|
|
@@ -2201,22 +2201,22 @@ div.BaseTable__row-cell {
|
|
|
2201
2201
|
border-left: 1px solid #F1F2F4;
|
|
2202
2202
|
margin-right: -8px;
|
|
2203
2203
|
}
|
|
2204
|
-
.field-
|
|
2204
|
+
.field-value__976bbd5b:hover[data-hideHover='false'] .hover-icon__1384c7f2 .icon__ba0838b4 {
|
|
2205
2205
|
width: 16px;
|
|
2206
2206
|
transform: scale(0.6);
|
|
2207
2207
|
}
|
|
2208
|
-
.field-
|
|
2208
|
+
.field-value__976bbd5b:hover[data-hideHover='false'] .split-line__d5107860 {
|
|
2209
2209
|
width: 100%;
|
|
2210
2210
|
border-bottom: 1px solid #F1F2F4;
|
|
2211
2211
|
}
|
|
2212
|
-
.field-
|
|
2212
|
+
.field-value__976bbd5b .hover-icon__1384c7f2 {
|
|
2213
2213
|
display: none;
|
|
2214
2214
|
}
|
|
2215
2215
|
/* stylelint-disable no-duplicate-selectors */
|
|
2216
2216
|
/* stylelint-disable */
|
|
2217
2217
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2218
2218
|
|
|
2219
|
-
.hover-
|
|
2219
|
+
.hover-style__2ec5d4aa {
|
|
2220
2220
|
border: 1px solid #F1F2F4;
|
|
2221
2221
|
box-sizing: border-box;
|
|
2222
2222
|
padding: 0 8px !important;
|
|
@@ -2226,49 +2226,49 @@ div.BaseTable__row-cell {
|
|
|
2226
2226
|
justify-content: space-between;
|
|
2227
2227
|
align-items: center;
|
|
2228
2228
|
}
|
|
2229
|
-
div.
|
|
2229
|
+
div.pointer__4c28130d {
|
|
2230
2230
|
cursor: pointer;
|
|
2231
2231
|
}
|
|
2232
|
-
.
|
|
2232
|
+
.empty__2a875060 {
|
|
2233
2233
|
color: #909aaa;
|
|
2234
2234
|
}
|
|
2235
|
-
.
|
|
2235
|
+
.empty__2a875060 .empty-icon__2d60eca5 {
|
|
2236
2236
|
padding-right: 5px;
|
|
2237
2237
|
font-size: 20px;
|
|
2238
2238
|
}
|
|
2239
|
-
.empty-
|
|
2239
|
+
.empty-tip__29636cef {
|
|
2240
2240
|
padding-left: 15px;
|
|
2241
2241
|
color: #909aaa;
|
|
2242
2242
|
}
|
|
2243
|
-
.
|
|
2243
|
+
.checked__ac36c3fc {
|
|
2244
2244
|
background-color: var(--select-item-selected-bg);
|
|
2245
2245
|
}
|
|
2246
|
-
.cell-
|
|
2247
|
-
.
|
|
2246
|
+
.cell-box__aee93867,
|
|
2247
|
+
.empty__2a875060 {
|
|
2248
2248
|
display: flex;
|
|
2249
2249
|
align-items: center;
|
|
2250
2250
|
line-height: unset;
|
|
2251
2251
|
}
|
|
2252
|
-
.cell-
|
|
2253
|
-
.
|
|
2252
|
+
.cell-box__aee93867 .ant-dropdown-menu-title-content,
|
|
2253
|
+
.empty__2a875060 .ant-dropdown-menu-title-content {
|
|
2254
2254
|
max-width: 150px;
|
|
2255
2255
|
display: flex;
|
|
2256
2256
|
align-items: center;
|
|
2257
2257
|
}
|
|
2258
|
-
.cell-
|
|
2258
|
+
.cell-box__aee93867 .color-icon__b4e87599 {
|
|
2259
2259
|
margin-right: 5px;
|
|
2260
2260
|
font-size: 12px;
|
|
2261
2261
|
}
|
|
2262
|
-
.
|
|
2262
|
+
.icon__f6feccca {
|
|
2263
2263
|
padding-left: 3px;
|
|
2264
2264
|
color: var(--theme-text-color-secondary);
|
|
2265
2265
|
}
|
|
2266
|
-
div.
|
|
2266
|
+
div.spin__2ecef7af {
|
|
2267
2267
|
width: 150px;
|
|
2268
2268
|
height: 50px;
|
|
2269
2269
|
line-height: 60px;
|
|
2270
2270
|
}
|
|
2271
|
-
.header-
|
|
2271
|
+
.header-cell__2dda276f {
|
|
2272
2272
|
padding: 0 8px;
|
|
2273
2273
|
font-size: 12px;
|
|
2274
2274
|
border-radius: 4px;
|
|
@@ -2280,38 +2280,38 @@ div.spin__38bf5240 {
|
|
|
2280
2280
|
color: #213053;
|
|
2281
2281
|
background-color: #F5F6F8;
|
|
2282
2282
|
}
|
|
2283
|
-
.header-
|
|
2283
|
+
.header-cell__2dda276f .color-icon__b4e87599 {
|
|
2284
2284
|
font-size: 10px;
|
|
2285
2285
|
margin-right: 5px;
|
|
2286
2286
|
}
|
|
2287
|
-
.header-
|
|
2287
|
+
.header-cell__2dda276f .down-icon__745e206e {
|
|
2288
2288
|
margin-left: 2px;
|
|
2289
2289
|
}
|
|
2290
|
-
.header-
|
|
2290
|
+
.header-cell__2dda276f .down-icon__745e206e svg {
|
|
2291
2291
|
vertical-align: inherit;
|
|
2292
2292
|
}
|
|
2293
|
-
.header-
|
|
2293
|
+
.header-cell__2dda276f span {
|
|
2294
2294
|
line-height: 24px;
|
|
2295
2295
|
}
|
|
2296
2296
|
/* stylelint-disable no-duplicate-selectors */
|
|
2297
2297
|
/* stylelint-disable */
|
|
2298
2298
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2299
2299
|
|
|
2300
|
-
.
|
|
2300
|
+
.script__749cc92a {
|
|
2301
2301
|
width: 100%;
|
|
2302
2302
|
}
|
|
2303
2303
|
/* stylelint-disable no-duplicate-selectors */
|
|
2304
2304
|
/* stylelint-disable */
|
|
2305
2305
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2306
2306
|
|
|
2307
|
-
.field-
|
|
2307
|
+
.field-value__0aa8fbbc.security__352dc107 .ant-select {
|
|
2308
2308
|
width: 100%;
|
|
2309
2309
|
}
|
|
2310
2310
|
/* stylelint-disable no-duplicate-selectors */
|
|
2311
2311
|
/* stylelint-disable */
|
|
2312
2312
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2313
2313
|
|
|
2314
|
-
.hover-
|
|
2314
|
+
.hover-style__6591af1e {
|
|
2315
2315
|
border: 1px solid #F1F2F4;
|
|
2316
2316
|
box-sizing: border-box;
|
|
2317
2317
|
padding: 0 8px !important;
|
|
@@ -2324,10 +2324,10 @@ div.spin__38bf5240 {
|
|
|
2324
2324
|
.ant-tooltip {
|
|
2325
2325
|
max-width: 380px;
|
|
2326
2326
|
}
|
|
2327
|
-
.tip-
|
|
2327
|
+
.tip-line__fa00dbb3 {
|
|
2328
2328
|
margin-bottom: 0;
|
|
2329
2329
|
}
|
|
2330
|
-
.field-
|
|
2330
|
+
.field-layout__75a4d16c.status-view__5c207a84 {
|
|
2331
2331
|
position: relative;
|
|
2332
2332
|
cursor: pointer;
|
|
2333
2333
|
border-top: 1px solid #ddd;
|
|
@@ -2335,18 +2335,18 @@ div.spin__38bf5240 {
|
|
|
2335
2335
|
margin-top: 10px;
|
|
2336
2336
|
font-size: 12px;
|
|
2337
2337
|
}
|
|
2338
|
-
.field-
|
|
2338
|
+
.field-layout__75a4d16c.status-view__5c207a84 .status-view-watch__a396e36a {
|
|
2339
2339
|
margin-right: 5px;
|
|
2340
2340
|
vertical-align: middle;
|
|
2341
2341
|
width: 12px;
|
|
2342
2342
|
height: 12px;
|
|
2343
2343
|
}
|
|
2344
|
-
.field-
|
|
2344
|
+
.field-layout__75a4d16c .chart-wrap__45eb1c9b {
|
|
2345
2345
|
width: 100%;
|
|
2346
2346
|
height: 100%;
|
|
2347
2347
|
min-height: 300px;
|
|
2348
2348
|
}
|
|
2349
|
-
.field-
|
|
2349
|
+
.field-layout__75a4d16c .flow-state__58719c04 {
|
|
2350
2350
|
padding: 0 8px;
|
|
2351
2351
|
height: 22px;
|
|
2352
2352
|
background: #cdcdcd;
|
|
@@ -2358,85 +2358,85 @@ div.spin__38bf5240 {
|
|
|
2358
2358
|
min-width: 52px;
|
|
2359
2359
|
text-align: center;
|
|
2360
2360
|
}
|
|
2361
|
-
.field-
|
|
2361
|
+
.field-layout__75a4d16c .field-value__a3b5256e {
|
|
2362
2362
|
box-sizing: border-box;
|
|
2363
2363
|
}
|
|
2364
|
-
.field-
|
|
2364
|
+
.field-layout__75a4d16c .field-value__a3b5256e .flow-name__6420f4e7:hover {
|
|
2365
2365
|
opacity: 0.8;
|
|
2366
2366
|
cursor: pointer;
|
|
2367
2367
|
}
|
|
2368
|
-
.field-
|
|
2368
|
+
.field-layout__75a4d16c .workflow-content__9e9d17ec {
|
|
2369
2369
|
max-width: 200px;
|
|
2370
2370
|
text-align: left;
|
|
2371
2371
|
}
|
|
2372
|
-
.field-
|
|
2372
|
+
.field-layout__75a4d16c .workflow-content__9e9d17ec .flow-state__58719c04 {
|
|
2373
2373
|
display: flex;
|
|
2374
2374
|
align-items: center;
|
|
2375
2375
|
justify-content: center;
|
|
2376
2376
|
min-width: 62px;
|
|
2377
2377
|
padding: 0 8px;
|
|
2378
2378
|
}
|
|
2379
|
-
.field-
|
|
2379
|
+
.field-layout__75a4d16c .workflow-content__9e9d17ec .flow-state__58719c04 .caret-down__180ddfb2 {
|
|
2380
2380
|
margin-left: 0;
|
|
2381
2381
|
padding-left: 2px;
|
|
2382
2382
|
line-height: 10px;
|
|
2383
2383
|
}
|
|
2384
|
-
.field-
|
|
2384
|
+
.field-layout__75a4d16c .workflow-content__9e9d17ec .flow-next__62530f2c .flow-btn__46ff0bbf {
|
|
2385
2385
|
background: #eff0f2;
|
|
2386
2386
|
margin-right: 8px;
|
|
2387
2387
|
margin-top: 4px;
|
|
2388
2388
|
color: #2e405e;
|
|
2389
2389
|
border: none;
|
|
2390
2390
|
}
|
|
2391
|
-
.field-
|
|
2391
|
+
.field-layout__75a4d16c .workflow-content__9e9d17ec .flow-next__62530f2c .flow-btn__46ff0bbf:last-child {
|
|
2392
2392
|
margin-right: 0;
|
|
2393
2393
|
}
|
|
2394
|
-
.field-
|
|
2394
|
+
.field-layout__75a4d16c .workflow-content__9e9d17ec .flow-next__62530f2c .loading-icon__c214dca8 {
|
|
2395
2395
|
font-size: 14px;
|
|
2396
2396
|
color: #333;
|
|
2397
2397
|
left: 84px;
|
|
2398
2398
|
top: 14px;
|
|
2399
2399
|
}
|
|
2400
|
-
.field-
|
|
2400
|
+
.field-layout__75a4d16c .workflow-content__9e9d17ec .no-state__23bf1799 {
|
|
2401
2401
|
color: #909aaa;
|
|
2402
2402
|
background: var(--theme-bg-color-base);
|
|
2403
2403
|
}
|
|
2404
|
-
.field-
|
|
2404
|
+
.field-layout__75a4d16c .state-btn__5526e824 {
|
|
2405
2405
|
line-height: 22px;
|
|
2406
2406
|
height: 22px;
|
|
2407
2407
|
}
|
|
2408
|
-
.flow-
|
|
2408
|
+
.flow-next__62530f2c {
|
|
2409
2409
|
max-height: 260px;
|
|
2410
2410
|
overflow: auto;
|
|
2411
2411
|
padding-top: 10px;
|
|
2412
2412
|
}
|
|
2413
|
-
.flow-
|
|
2413
|
+
.flow-btn__46ff0bbf {
|
|
2414
2414
|
display: flex;
|
|
2415
2415
|
cursor: pointer;
|
|
2416
2416
|
margin: 0;
|
|
2417
2417
|
padding: 5px 10px;
|
|
2418
2418
|
}
|
|
2419
|
-
.flow-
|
|
2420
|
-
.flow-
|
|
2419
|
+
.flow-btn__46ff0bbf .state-box__f0ad8187,
|
|
2420
|
+
.flow-btn__46ff0bbf .tooltip__17e2b478 {
|
|
2421
2421
|
width: 80px;
|
|
2422
2422
|
}
|
|
2423
|
-
.flow-
|
|
2423
|
+
.flow-btn__46ff0bbf .state-box__f0ad8187 {
|
|
2424
2424
|
display: flex;
|
|
2425
2425
|
}
|
|
2426
|
-
.flow-
|
|
2426
|
+
.flow-btn__46ff0bbf .state-box__f0ad8187 span {
|
|
2427
2427
|
padding-right: 8px;
|
|
2428
2428
|
}
|
|
2429
|
-
.flow-
|
|
2429
|
+
.flow-btn__46ff0bbf .icon__e84b8d8b {
|
|
2430
2430
|
padding: 0 6px;
|
|
2431
2431
|
color: #848C9F;
|
|
2432
2432
|
}
|
|
2433
|
-
.flow-
|
|
2433
|
+
.flow-btn__46ff0bbf:hover {
|
|
2434
2434
|
background-color: var(--select-item-selected-bg);
|
|
2435
2435
|
}
|
|
2436
|
-
button.flow-
|
|
2436
|
+
button.flow-state__58719c04 > span {
|
|
2437
2437
|
display: -webkit-box;
|
|
2438
2438
|
}
|
|
2439
|
-
.flow-
|
|
2439
|
+
.flow-state__58719c04 {
|
|
2440
2440
|
padding: 0 18px 0 8px;
|
|
2441
2441
|
height: 24px;
|
|
2442
2442
|
background: #cdcdcd;
|
|
@@ -2449,29 +2449,29 @@ button.flow-state__89891724 > span {
|
|
|
2449
2449
|
text-align: center;
|
|
2450
2450
|
box-shadow: none !important;
|
|
2451
2451
|
}
|
|
2452
|
-
.flow-
|
|
2452
|
+
.flow-state__58719c04 span {
|
|
2453
2453
|
text-decoration: none !important;
|
|
2454
2454
|
}
|
|
2455
|
-
.state-
|
|
2455
|
+
.state-popover__31e02e52 div.ant-popover-inner-content {
|
|
2456
2456
|
padding: 0;
|
|
2457
2457
|
}
|
|
2458
|
-
.no-
|
|
2458
|
+
.no-permission__4a45989b {
|
|
2459
2459
|
display: block;
|
|
2460
2460
|
font-size: 12px;
|
|
2461
2461
|
padding: 20px 10px 10px;
|
|
2462
2462
|
width: 120px;
|
|
2463
2463
|
color: #2e405e;
|
|
2464
2464
|
}
|
|
2465
|
-
div.
|
|
2465
|
+
div.spin__806f4665 {
|
|
2466
2466
|
width: 150px;
|
|
2467
2467
|
height: 50px;
|
|
2468
2468
|
line-height: 65px;
|
|
2469
2469
|
}
|
|
2470
|
-
div.
|
|
2470
|
+
div.pointer__1d02b51f {
|
|
2471
2471
|
opacity: 1;
|
|
2472
2472
|
cursor: pointer;
|
|
2473
2473
|
}
|
|
2474
|
-
div.not-
|
|
2474
|
+
div.not-allowed__55a4d4f9 {
|
|
2475
2475
|
opacity: 0.3;
|
|
2476
2476
|
cursor: not-allowed;
|
|
2477
2477
|
}
|
|
@@ -2479,7 +2479,7 @@ div.not-allowed__8c109ee9 {
|
|
|
2479
2479
|
/* stylelint-disable */
|
|
2480
2480
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2481
2481
|
|
|
2482
|
-
.hover-
|
|
2482
|
+
.hover-style__af63fa22 {
|
|
2483
2483
|
border: 1px solid #F1F2F4;
|
|
2484
2484
|
box-sizing: border-box;
|
|
2485
2485
|
padding: 0 8px !important;
|
|
@@ -2489,26 +2489,26 @@ div.not-allowed__8c109ee9 {
|
|
|
2489
2489
|
justify-content: space-between;
|
|
2490
2490
|
align-items: center;
|
|
2491
2491
|
}
|
|
2492
|
-
.base-
|
|
2492
|
+
.base-tag__0bd31b9b {
|
|
2493
2493
|
max-width: 5em;
|
|
2494
2494
|
white-space: normal;
|
|
2495
2495
|
vertical-align: middle;
|
|
2496
2496
|
}
|
|
2497
|
-
.tag-
|
|
2497
|
+
.tag-wrapper__b8f1ed2b {
|
|
2498
2498
|
white-space: nowrap;
|
|
2499
2499
|
overflow: hidden;
|
|
2500
2500
|
text-overflow: ellipsis;
|
|
2501
2501
|
}
|
|
2502
|
-
.custom-
|
|
2502
|
+
.custom-overlay__fc80c665 {
|
|
2503
2503
|
width: auto !important;
|
|
2504
2504
|
max-width: unset !important;
|
|
2505
2505
|
}
|
|
2506
|
-
.custom-
|
|
2507
|
-
.custom-
|
|
2506
|
+
.custom-overlay__fc80c665 .ant-tooltip-content,
|
|
2507
|
+
.custom-overlay__fc80c665 .ant-tooltip {
|
|
2508
2508
|
width: auto !important;
|
|
2509
2509
|
max-width: unset !important;
|
|
2510
2510
|
}
|
|
2511
|
-
.field-
|
|
2511
|
+
.field-value__3d2a8781:hover[data-hideHover='false'] {
|
|
2512
2512
|
border: 1px solid #F1F2F4;
|
|
2513
2513
|
box-sizing: border-box;
|
|
2514
2514
|
padding: 0 8px !important;
|
|
@@ -2518,21 +2518,21 @@ div.not-allowed__8c109ee9 {
|
|
|
2518
2518
|
justify-content: space-between;
|
|
2519
2519
|
align-items: center;
|
|
2520
2520
|
}
|
|
2521
|
-
.field-
|
|
2521
|
+
.field-value__3d2a8781:hover[data-hideHover='false'] .hover-icon__b94feeef {
|
|
2522
2522
|
display: flex;
|
|
2523
2523
|
flex: 1;
|
|
2524
2524
|
}
|
|
2525
|
-
.hover-
|
|
2525
|
+
.hover-icon__b94feeef {
|
|
2526
2526
|
display: none;
|
|
2527
2527
|
}
|
|
2528
|
-
.hover-
|
|
2528
|
+
.hover-icon__b94feeef > * {
|
|
2529
2529
|
margin-left: 4px;
|
|
2530
2530
|
}
|
|
2531
2531
|
/* stylelint-disable no-duplicate-selectors */
|
|
2532
2532
|
/* stylelint-disable */
|
|
2533
2533
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
2534
2534
|
|
|
2535
|
-
.time-range-
|
|
2535
|
+
.time-range-config__6ea81f2e .ant-picker-range-separator {
|
|
2536
2536
|
white-space: nowrap;
|
|
2537
2537
|
}
|
|
2538
2538
|
/* stylelint-disable no-duplicate-selectors */
|
|
@@ -29249,83 +29249,83 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29249
29249
|
/* stylelint-disable */
|
|
29250
29250
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
29251
29251
|
|
|
29252
|
-
.query-
|
|
29252
|
+
.query-expression__226ba89b.formik__abbeed03 .search-btn__8045381f {
|
|
29253
29253
|
height: 100%;
|
|
29254
29254
|
}
|
|
29255
|
-
.query-
|
|
29255
|
+
.query-expression__226ba89b.formik__abbeed03 .form-field-error-message-wrapper {
|
|
29256
29256
|
height: 0;
|
|
29257
29257
|
max-height: none;
|
|
29258
29258
|
min-height: auto;
|
|
29259
29259
|
display: none;
|
|
29260
29260
|
}
|
|
29261
|
-
.query-
|
|
29261
|
+
.query-expression__226ba89b .ant-form-item {
|
|
29262
29262
|
margin-bottom: 0;
|
|
29263
29263
|
}
|
|
29264
29264
|
/* stylelint-disable no-duplicate-selectors */
|
|
29265
29265
|
/* stylelint-disable */
|
|
29266
29266
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
29267
29267
|
|
|
29268
|
-
.selector-
|
|
29268
|
+
.selector-content__dd2d4eac {
|
|
29269
29269
|
max-height: 250px;
|
|
29270
29270
|
overflow: auto;
|
|
29271
29271
|
margin-right: -20px;
|
|
29272
29272
|
}
|
|
29273
|
-
.selector-
|
|
29273
|
+
.selector-content__dd2d4eac .row__ef5072e3 {
|
|
29274
29274
|
margin-bottom: 12px;
|
|
29275
29275
|
}
|
|
29276
|
-
.selector-
|
|
29276
|
+
.selector-content__dd2d4eac .row__ef5072e3 .field-select__54977fe4 {
|
|
29277
29277
|
width: 164px;
|
|
29278
29278
|
height: 34px;
|
|
29279
29279
|
margin-right: 8px;
|
|
29280
29280
|
}
|
|
29281
|
-
.selector-
|
|
29281
|
+
.selector-content__dd2d4eac .row__ef5072e3 .field-select__54977fe4 .ant-select-selection-item {
|
|
29282
29282
|
padding-right: 0;
|
|
29283
29283
|
}
|
|
29284
|
-
.selector-
|
|
29284
|
+
.selector-content__dd2d4eac .row__ef5072e3 .expression-select__5a7c6db6 {
|
|
29285
29285
|
width: 120px;
|
|
29286
29286
|
margin-right: 3px;
|
|
29287
29287
|
}
|
|
29288
|
-
.selector-
|
|
29288
|
+
.selector-content__dd2d4eac .row__ef5072e3 .field-component__dde6a7dc {
|
|
29289
29289
|
width: 196px;
|
|
29290
29290
|
display: inline-block;
|
|
29291
29291
|
vertical-align: top;
|
|
29292
29292
|
margin-right: 8px;
|
|
29293
29293
|
}
|
|
29294
|
-
.selector-
|
|
29294
|
+
.selector-content__dd2d4eac .row__ef5072e3 .field-component__dde6a7dc .field-layout__94d21cbf .ant-col__24049e62.field-value__b480d4a2 {
|
|
29295
29295
|
padding-left: 0;
|
|
29296
29296
|
}
|
|
29297
|
-
.selector-
|
|
29297
|
+
.selector-content__dd2d4eac .row__ef5072e3 .field-component__dde6a7dc .ant-select {
|
|
29298
29298
|
width: 197px;
|
|
29299
29299
|
}
|
|
29300
|
-
.selector-
|
|
29300
|
+
.selector-content__dd2d4eac .row__ef5072e3 .field-component__dde6a7dc .block__b19a8a7a {
|
|
29301
29301
|
width: 197px;
|
|
29302
29302
|
margin-left: 5px;
|
|
29303
29303
|
height: 32px;
|
|
29304
29304
|
background: #ededed;
|
|
29305
29305
|
display: inline-block;
|
|
29306
29306
|
}
|
|
29307
|
-
.selector-
|
|
29307
|
+
.selector-content__dd2d4eac .row__ef5072e3 .flex__113af326 {
|
|
29308
29308
|
width: 320px;
|
|
29309
29309
|
}
|
|
29310
|
-
.selector-
|
|
29310
|
+
.selector-content__dd2d4eac .row__ef5072e3 .flex__113af326 .ant-picker.ant-picker-range {
|
|
29311
29311
|
width: 320px;
|
|
29312
29312
|
}
|
|
29313
|
-
.selector-
|
|
29313
|
+
.selector-content__dd2d4eac .row__ef5072e3 .delete-icon__e363252d svg {
|
|
29314
29314
|
width: 16px;
|
|
29315
29315
|
height: 16px;
|
|
29316
29316
|
}
|
|
29317
|
-
.filter-
|
|
29317
|
+
.filter-selectors__9ffe61e3 button.query-selector-add {
|
|
29318
29318
|
background: none;
|
|
29319
29319
|
}
|
|
29320
|
-
.filter-
|
|
29320
|
+
.filter-selectors__9ffe61e3 button.query-selector-add .anticon + span {
|
|
29321
29321
|
margin-left: 3px;
|
|
29322
29322
|
}
|
|
29323
|
-
.filter-
|
|
29324
|
-
.filter-
|
|
29325
|
-
.filter-
|
|
29323
|
+
.filter-selectors__9ffe61e3 button.query-selector-add,
|
|
29324
|
+
.filter-selectors__9ffe61e3 button.query-selector-add:hover,
|
|
29325
|
+
.filter-selectors__9ffe61e3 button.query-selector-add:focus {
|
|
29326
29326
|
color: #0045d9;
|
|
29327
29327
|
}
|
|
29328
|
-
.filter-
|
|
29328
|
+
.filter-selectors__9ffe61e3 button.query-selector-add:focus {
|
|
29329
29329
|
border: none;
|
|
29330
29330
|
box-shadow: none;
|
|
29331
29331
|
}
|
|
@@ -29333,14 +29333,14 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29333
29333
|
/* stylelint-disable */
|
|
29334
29334
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
29335
29335
|
|
|
29336
|
-
.search-filters-
|
|
29336
|
+
.search-filters-panel__4e39cd64 {
|
|
29337
29337
|
width: 560px;
|
|
29338
29338
|
min-height: 50px;
|
|
29339
29339
|
background: #fff;
|
|
29340
29340
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
29341
29341
|
border-radius: 4px;
|
|
29342
29342
|
}
|
|
29343
|
-
.search-filters-
|
|
29343
|
+
.search-filters-panel__4e39cd64 .panel-header__8b16e314 {
|
|
29344
29344
|
padding: 16px 20px;
|
|
29345
29345
|
padding-bottom: 8px;
|
|
29346
29346
|
display: flex;
|
|
@@ -29349,32 +29349,32 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29349
29349
|
width: 100%;
|
|
29350
29350
|
position: relative;
|
|
29351
29351
|
}
|
|
29352
|
-
.search-filters-
|
|
29352
|
+
.search-filters-panel__4e39cd64 .panel-title__5e512183 {
|
|
29353
29353
|
font-weight: 500;
|
|
29354
29354
|
font-size: 16px;
|
|
29355
29355
|
flex: 1;
|
|
29356
29356
|
}
|
|
29357
|
-
.search-filters-
|
|
29357
|
+
.search-filters-panel__4e39cd64 .panel-content__e30a6cdb {
|
|
29358
29358
|
padding: 0 20px 16px;
|
|
29359
29359
|
}
|
|
29360
|
-
.search-filters-
|
|
29360
|
+
.search-filters-panel__4e39cd64 .panel-footer__c31e27bd {
|
|
29361
29361
|
padding: 12px 20px;
|
|
29362
29362
|
border-top: 1px solid;
|
|
29363
29363
|
border-color: #e6e9ef;
|
|
29364
29364
|
display: flex;
|
|
29365
29365
|
justify-content: space-between;
|
|
29366
29366
|
}
|
|
29367
|
-
.search-filters-
|
|
29367
|
+
.search-filters-panel__4e39cd64 .iql-switch-btn__d5e6aec6 {
|
|
29368
29368
|
color: #0045d9;
|
|
29369
29369
|
}
|
|
29370
|
-
.search-filters-
|
|
29370
|
+
.search-filters-panel__4e39cd64 .iql-switch-btn__d5e6aec6:not([disabled]):hover {
|
|
29371
29371
|
background: none;
|
|
29372
29372
|
}
|
|
29373
29373
|
/* stylelint-disable no-duplicate-selectors */
|
|
29374
29374
|
/* stylelint-disable */
|
|
29375
29375
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
29376
29376
|
|
|
29377
|
-
.hover-
|
|
29377
|
+
.hover-style__579d27b6 {
|
|
29378
29378
|
border: 1px solid #F1F2F4;
|
|
29379
29379
|
box-sizing: border-box;
|
|
29380
29380
|
padding: 0 8px !important;
|
|
@@ -29384,7 +29384,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29384
29384
|
justify-content: space-between;
|
|
29385
29385
|
align-items: center;
|
|
29386
29386
|
}
|
|
29387
|
-
.column-
|
|
29387
|
+
.column-setting__faa80027 {
|
|
29388
29388
|
position: absolute;
|
|
29389
29389
|
z-index: 1;
|
|
29390
29390
|
top: 0;
|
|
@@ -29396,14 +29396,14 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29396
29396
|
justify-content: center;
|
|
29397
29397
|
background: #fff;
|
|
29398
29398
|
}
|
|
29399
|
-
.column-setting-
|
|
29399
|
+
.column-setting-icon__ccbd0785:hover {
|
|
29400
29400
|
color: var(--theme-primary-color);
|
|
29401
29401
|
}
|
|
29402
29402
|
/* stylelint-disable no-duplicate-selectors */
|
|
29403
29403
|
/* stylelint-disable */
|
|
29404
29404
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
29405
29405
|
|
|
29406
|
-
.empty-
|
|
29406
|
+
.empty-box__5444287a {
|
|
29407
29407
|
height: calc(100vh - 400px);
|
|
29408
29408
|
display: flex;
|
|
29409
29409
|
flex-direction: column;
|
|
@@ -29411,14 +29411,14 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29411
29411
|
justify-content: center;
|
|
29412
29412
|
visibility: initial;
|
|
29413
29413
|
}
|
|
29414
|
-
.empty-
|
|
29414
|
+
.empty-box__5444287a .icon__e4a02def {
|
|
29415
29415
|
margin-bottom: 10px;
|
|
29416
29416
|
}
|
|
29417
|
-
.empty-
|
|
29418
|
-
.empty-
|
|
29417
|
+
.empty-box__5444287a .tip__085e6197,
|
|
29418
|
+
.empty-box__5444287a .btn__c7c2c699 {
|
|
29419
29419
|
font-size: 12px;
|
|
29420
29420
|
}
|
|
29421
|
-
.empty-
|
|
29421
|
+
.empty-box__5444287a .tip__085e6197 {
|
|
29422
29422
|
margin-bottom: 5px;
|
|
29423
29423
|
color: #666;
|
|
29424
29424
|
}
|
|
@@ -29426,43 +29426,43 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29426
29426
|
/* stylelint-disable */
|
|
29427
29427
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
29428
29428
|
|
|
29429
|
-
.table-title-
|
|
29429
|
+
.table-title-cell__67c959cb {
|
|
29430
29430
|
display: flex;
|
|
29431
29431
|
flex: 1;
|
|
29432
29432
|
align-items: center;
|
|
29433
29433
|
}
|
|
29434
|
-
.table-title-
|
|
29434
|
+
.table-title-cell__67c959cb:hover {
|
|
29435
29435
|
color: #1890ff;
|
|
29436
29436
|
cursor: pointer;
|
|
29437
29437
|
}
|
|
29438
|
-
.table-title-cell-
|
|
29438
|
+
.table-title-cell-text__5d4451bb {
|
|
29439
29439
|
flex: 1;
|
|
29440
29440
|
margin-right: 5px;
|
|
29441
29441
|
}
|
|
29442
|
-
.table-title-cell-
|
|
29442
|
+
.table-title-cell-acitons__85596ce0 {
|
|
29443
29443
|
opacity: 0;
|
|
29444
29444
|
}
|
|
29445
|
-
.table-title-
|
|
29445
|
+
.table-title-cell__67c959cb .more-actions {
|
|
29446
29446
|
font-size: 16px;
|
|
29447
29447
|
padding: 3px 6px;
|
|
29448
29448
|
border-radius: 6px;
|
|
29449
29449
|
display: inline-flex;
|
|
29450
29450
|
transition: opacity 0.2s ease, transform 0.2s ease;
|
|
29451
29451
|
}
|
|
29452
|
-
.table-title-
|
|
29452
|
+
.table-title-cell__67c959cb .more-actions:hover {
|
|
29453
29453
|
background-color: #F1F2F4;
|
|
29454
29454
|
color: #2e405e;
|
|
29455
29455
|
}
|
|
29456
|
-
.table-title-
|
|
29456
|
+
.table-title-cell__67c959cb .more-actions .anticon {
|
|
29457
29457
|
transform: scale(1.5);
|
|
29458
29458
|
}
|
|
29459
|
-
.name-itemType-
|
|
29459
|
+
.name-itemType-img__385e9585 {
|
|
29460
29460
|
width: 16px;
|
|
29461
29461
|
height: 16px;
|
|
29462
29462
|
margin-right: 8px;
|
|
29463
29463
|
}
|
|
29464
|
-
.BaseTable__row--hovered .table-title-cell-
|
|
29465
|
-
.BaseTable__row:hover .table-title-cell-
|
|
29464
|
+
.BaseTable__row--hovered .table-title-cell-acitons__85596ce0,
|
|
29465
|
+
.BaseTable__row:hover .table-title-cell-acitons__85596ce0 {
|
|
29466
29466
|
opacity: 0.8;
|
|
29467
29467
|
}
|
|
29468
29468
|
/* stylelint-disable no-duplicate-selectors */
|
|
@@ -29745,70 +29745,70 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29745
29745
|
/* stylelint-disable */
|
|
29746
29746
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
29747
29747
|
|
|
29748
|
-
.list-
|
|
29748
|
+
.list-view__5aa308de {
|
|
29749
29749
|
position: relative;
|
|
29750
29750
|
padding: 0 24px;
|
|
29751
29751
|
}
|
|
29752
|
-
.list-
|
|
29752
|
+
.list-view__5aa308de .BaseTable {
|
|
29753
29753
|
box-shadow: none;
|
|
29754
29754
|
}
|
|
29755
|
-
.list-
|
|
29755
|
+
.list-view__5aa308de .BaseTable__table-main {
|
|
29756
29756
|
outline: none;
|
|
29757
29757
|
border-bottom: 1px solid #eee;
|
|
29758
29758
|
}
|
|
29759
|
-
.list-
|
|
29759
|
+
.list-view__5aa308de .BaseTable__table-frozen-right {
|
|
29760
29760
|
box-shadow: -1px 0 2px 0 #eee;
|
|
29761
29761
|
}
|
|
29762
|
-
.list-
|
|
29762
|
+
.list-view__5aa308de .BaseTable__table-frozen-left {
|
|
29763
29763
|
box-shadow: 1px -3px 2px 0 #eee;
|
|
29764
29764
|
}
|
|
29765
|
-
.list-
|
|
29766
|
-
.list-
|
|
29765
|
+
.list-view__5aa308de .BaseTable__table-main .BaseTable__header,
|
|
29766
|
+
.list-view__5aa308de .BaseTable__header-row {
|
|
29767
29767
|
background-color: inherit;
|
|
29768
29768
|
}
|
|
29769
|
-
.list-
|
|
29769
|
+
.list-view__5aa308de .BaseTable__header-cell-text {
|
|
29770
29770
|
color: #848C9F;
|
|
29771
29771
|
}
|
|
29772
|
-
.list-
|
|
29772
|
+
.list-view__5aa308de .view-column-setting__9dfb2ee8 {
|
|
29773
29773
|
height: 39px;
|
|
29774
29774
|
}
|
|
29775
|
-
.structure-
|
|
29775
|
+
.structure-view__a5ab4ccf {
|
|
29776
29776
|
display: flex;
|
|
29777
29777
|
flex-direction: column;
|
|
29778
29778
|
height: 100%;
|
|
29779
29779
|
overflow: hidden;
|
|
29780
29780
|
}
|
|
29781
|
-
.structure-
|
|
29781
|
+
.structure-view__a5ab4ccf .disabled-row {
|
|
29782
29782
|
pointer-events: none;
|
|
29783
29783
|
color: #848C9F;
|
|
29784
29784
|
}
|
|
29785
|
-
.structure-
|
|
29785
|
+
.structure-view__a5ab4ccf .BaseTable__footer .table-footer__61d99cea {
|
|
29786
29786
|
padding: 8px 16px;
|
|
29787
29787
|
display: flex;
|
|
29788
29788
|
justify-content: space-between;
|
|
29789
29789
|
}
|
|
29790
|
-
.structure-
|
|
29790
|
+
.structure-view__a5ab4ccf .BaseTable__table-main .BaseTable__row.gray-row {
|
|
29791
29791
|
opacity: 0.85;
|
|
29792
29792
|
}
|
|
29793
|
-
.structure-
|
|
29793
|
+
.structure-view__a5ab4ccf .BaseTable__table-frozen-left .BaseTable__row.gray-row div {
|
|
29794
29794
|
opacity: 0.85;
|
|
29795
29795
|
}
|
|
29796
|
-
.structure-
|
|
29797
|
-
.structure-
|
|
29796
|
+
.structure-view__a5ab4ccf .BaseTable__table-frozen-left .BaseTable__header-cell:first-child,
|
|
29797
|
+
.structure-view__a5ab4ccf .BaseTable__table-frozen-left .BaseTable__row-cell:first-child {
|
|
29798
29798
|
padding-left: 0;
|
|
29799
29799
|
padding-left: 28px;
|
|
29800
29800
|
}
|
|
29801
|
-
.structure-
|
|
29801
|
+
.structure-view__a5ab4ccf .BaseTable__table-frozen-left {
|
|
29802
29802
|
margin-left: 0;
|
|
29803
29803
|
}
|
|
29804
|
-
.structure-
|
|
29804
|
+
.structure-view__a5ab4ccf .BaseTable__table-frozen-left .BaseTable__header-row {
|
|
29805
29805
|
margin-left: 0;
|
|
29806
29806
|
}
|
|
29807
|
-
.structure-
|
|
29807
|
+
.structure-view__a5ab4ccf .BaseTable__body .BaseTable__row[class*='active__'] {
|
|
29808
29808
|
background: #F5F6F8;
|
|
29809
29809
|
border: solid 1px #F1F2F4;
|
|
29810
29810
|
}
|
|
29811
|
-
.loading-layer-
|
|
29811
|
+
.loading-layer-wrapper__5fc44bce {
|
|
29812
29812
|
display: flex;
|
|
29813
29813
|
align-items: center;
|
|
29814
29814
|
justify-content: center;
|
|
@@ -29817,10 +29817,10 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29817
29817
|
width: 100%;
|
|
29818
29818
|
height: 100%;
|
|
29819
29819
|
}
|
|
29820
|
-
.structor-
|
|
29820
|
+
.structor-outer__c311d775 {
|
|
29821
29821
|
height: 100%;
|
|
29822
29822
|
}
|
|
29823
|
-
.name-itemType-
|
|
29823
|
+
.name-itemType-img__3255195f {
|
|
29824
29824
|
width: 16px;
|
|
29825
29825
|
height: 16px;
|
|
29826
29826
|
margin-right: 8px;
|
|
@@ -29829,32 +29829,32 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29829
29829
|
/* stylelint-disable */
|
|
29830
29830
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
29831
29831
|
|
|
29832
|
-
.
|
|
29832
|
+
.activity__cb1edd1e {
|
|
29833
29833
|
width: 100%;
|
|
29834
29834
|
position: relative;
|
|
29835
29835
|
margin-top: 10px;
|
|
29836
29836
|
}
|
|
29837
|
-
.
|
|
29837
|
+
.activity__cb1edd1e .panel__a901f36f .ant-collapse-content > .ant-collapse-content-box {
|
|
29838
29838
|
padding-top: 1px;
|
|
29839
29839
|
}
|
|
29840
|
-
.
|
|
29840
|
+
.user__36a9effc {
|
|
29841
29841
|
color: #108cee;
|
|
29842
29842
|
}
|
|
29843
|
-
.comment-
|
|
29843
|
+
.comment-panel__3cdd1de7 {
|
|
29844
29844
|
margin-bottom: 50px;
|
|
29845
29845
|
}
|
|
29846
|
-
.comment-
|
|
29846
|
+
.comment-p__5b6989fb .time__0f568470 {
|
|
29847
29847
|
color: #333;
|
|
29848
29848
|
margin-left: 15px;
|
|
29849
29849
|
}
|
|
29850
|
-
.comment-
|
|
29850
|
+
.comment-p__5b6989fb .reply__b3151a67 {
|
|
29851
29851
|
padding: 0 6px;
|
|
29852
29852
|
color: #666;
|
|
29853
29853
|
}
|
|
29854
|
-
.comment-
|
|
29854
|
+
.comment-p__5b6989fb .btns__9a779c12 {
|
|
29855
29855
|
padding-left: 18px;
|
|
29856
29856
|
}
|
|
29857
|
-
.comment-
|
|
29857
|
+
.comment-p__5b6989fb .btns__9a779c12 button {
|
|
29858
29858
|
padding: 0px 10px;
|
|
29859
29859
|
color: #999;
|
|
29860
29860
|
height: 20px;
|
|
@@ -29862,40 +29862,40 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29862
29862
|
border-radius: 0;
|
|
29863
29863
|
border-right: 1px solid #999;
|
|
29864
29864
|
}
|
|
29865
|
-
.comment-
|
|
29865
|
+
.comment-p__5b6989fb .btns__9a779c12 button:not(:last-child):hover {
|
|
29866
29866
|
border-right: 1px solid #999;
|
|
29867
29867
|
}
|
|
29868
|
-
.comment-
|
|
29868
|
+
.comment-p__5b6989fb .btns__9a779c12 button:last-child {
|
|
29869
29869
|
border: 0;
|
|
29870
29870
|
}
|
|
29871
|
-
.comment-
|
|
29871
|
+
.comment-p__5b6989fb .btns__9a779c12 button:focus {
|
|
29872
29872
|
box-shadow: none;
|
|
29873
29873
|
}
|
|
29874
|
-
.comment-
|
|
29874
|
+
.comment-p__5b6989fb .ant-row {
|
|
29875
29875
|
width: calc(100% - 28px);
|
|
29876
29876
|
margin-left: 28px;
|
|
29877
29877
|
}
|
|
29878
|
-
.children-
|
|
29878
|
+
.children-comment__2a79cefc .reply-content__7968ba9f {
|
|
29879
29879
|
margin-left: 28px;
|
|
29880
29880
|
margin-bottom: 10px;
|
|
29881
29881
|
background: #f8f8f8;
|
|
29882
29882
|
border-left: 3px solid #e0e0e0;
|
|
29883
29883
|
}
|
|
29884
|
-
.children-
|
|
29884
|
+
.children-comment__2a79cefc .reply-content__7968ba9f .ant-row {
|
|
29885
29885
|
margin-left: 0;
|
|
29886
29886
|
}
|
|
29887
|
-
.
|
|
29887
|
+
.avatar__233cbd6a {
|
|
29888
29888
|
width: 22px;
|
|
29889
29889
|
height: 22px;
|
|
29890
29890
|
border-radius: 50%;
|
|
29891
29891
|
display: inline-block;
|
|
29892
29892
|
background: #fff center / contain no-repeat;
|
|
29893
29893
|
}
|
|
29894
|
-
.
|
|
29895
|
-
.default-
|
|
29894
|
+
.avatar__233cbd6a,
|
|
29895
|
+
.default-avatar__845be45f {
|
|
29896
29896
|
margin-right: 8px;
|
|
29897
29897
|
}
|
|
29898
|
-
.default-
|
|
29898
|
+
.default-avatar__845be45f {
|
|
29899
29899
|
display: inline-flex;
|
|
29900
29900
|
align-items: center;
|
|
29901
29901
|
justify-content: center;
|
|
@@ -29906,7 +29906,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29906
29906
|
font-size: 11px;
|
|
29907
29907
|
color: #fff;
|
|
29908
29908
|
}
|
|
29909
|
-
.comment-
|
|
29909
|
+
.comment-box__887c5988 {
|
|
29910
29910
|
position: relative;
|
|
29911
29911
|
bottom: 0;
|
|
29912
29912
|
left: 0;
|
|
@@ -29915,128 +29915,128 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
29915
29915
|
width: 100%;
|
|
29916
29916
|
z-index: 10;
|
|
29917
29917
|
}
|
|
29918
|
-
.comment-
|
|
29918
|
+
.comment-box__887c5988 p {
|
|
29919
29919
|
margin-bottom: 0;
|
|
29920
29920
|
margin-top: 15px;
|
|
29921
29921
|
}
|
|
29922
|
-
.comment-
|
|
29922
|
+
.comment-box__887c5988 p .btn-cancel__f1daee65 {
|
|
29923
29923
|
margin-left: 10px;
|
|
29924
29924
|
}
|
|
29925
|
-
.comment-
|
|
29925
|
+
.comment-box__887c5988 div[class^='editor-field-wrapper__'] div[class^='editor-field__'] div:nth-child(2) {
|
|
29926
29926
|
max-height: 300px;
|
|
29927
29927
|
overflow-y: auto;
|
|
29928
29928
|
overflow-x: hidden;
|
|
29929
29929
|
}
|
|
29930
|
-
.comment-
|
|
29930
|
+
.comment-box__887c5988 div[class^='editor-field-wrapper__'] div[class*='fullscreen-editor__'] {
|
|
29931
29931
|
height: calc(100vh - 62px);
|
|
29932
29932
|
}
|
|
29933
|
-
.comment-
|
|
29933
|
+
.comment-box__887c5988 div[class^='editor-field-wrapper__'] div[class*='fullscreen-editor__'] div:nth-child(2) {
|
|
29934
29934
|
max-height: calc(100vh - 105px);
|
|
29935
29935
|
height: calc(100vh - 105px);
|
|
29936
29936
|
}
|
|
29937
|
-
.
|
|
29937
|
+
.tabs__47de4c8a {
|
|
29938
29938
|
position: relative;
|
|
29939
29939
|
margin-top: 10px;
|
|
29940
29940
|
}
|
|
29941
|
-
.
|
|
29941
|
+
.tabs__47de4c8a .ant-tabs-content-holder {
|
|
29942
29942
|
height: 340px;
|
|
29943
29943
|
overflow: auto;
|
|
29944
29944
|
}
|
|
29945
|
-
.
|
|
29945
|
+
.panel__a901f36f .ant-tabs-nav-list .ant-tabs-tab {
|
|
29946
29946
|
display: flex;
|
|
29947
29947
|
padding: 6px 10px;
|
|
29948
29948
|
}
|
|
29949
|
-
.
|
|
29949
|
+
.panel__a901f36f .ant-tabs > .ant-tabs-nav::before {
|
|
29950
29950
|
border-bottom: none;
|
|
29951
29951
|
}
|
|
29952
|
-
.
|
|
29952
|
+
.panel__a901f36f .ant-tabs-tab + .ant-tabs-tab {
|
|
29953
29953
|
margin-left: 20px;
|
|
29954
29954
|
}
|
|
29955
|
-
.
|
|
29955
|
+
.panel__a901f36f .ant-tabs .ant-tabs-nav-wrap {
|
|
29956
29956
|
border-bottom: 2px solid #F1F2F4;
|
|
29957
29957
|
}
|
|
29958
|
-
.sort-
|
|
29958
|
+
.sort-icon__fa1ff755 {
|
|
29959
29959
|
cursor: pointer;
|
|
29960
29960
|
position: absolute;
|
|
29961
29961
|
right: 0;
|
|
29962
29962
|
top: 8px;
|
|
29963
29963
|
}
|
|
29964
|
-
.sort-
|
|
29964
|
+
.sort-icon__fa1ff755 .normal-icon__7cc49d7b {
|
|
29965
29965
|
color: #6c6969;
|
|
29966
29966
|
}
|
|
29967
|
-
.sort-
|
|
29967
|
+
.sort-icon__fa1ff755 .icon-checked__3388e781 {
|
|
29968
29968
|
color: #108cee;
|
|
29969
29969
|
}
|
|
29970
|
-
.no-
|
|
29970
|
+
.no-data__7749008c {
|
|
29971
29971
|
color: #888;
|
|
29972
29972
|
height: 100px;
|
|
29973
29973
|
line-height: 100px;
|
|
29974
29974
|
text-align: center;
|
|
29975
29975
|
}
|
|
29976
|
-
.
|
|
29976
|
+
.history__74f6cf9a .watch-btn__822613af {
|
|
29977
29977
|
padding-left: 0;
|
|
29978
29978
|
}
|
|
29979
|
-
.
|
|
29979
|
+
.history__74f6cf9a .content-top__7ce4b06b {
|
|
29980
29980
|
display: flex;
|
|
29981
29981
|
align-items: center;
|
|
29982
29982
|
margin: 15px 0 5px 0;
|
|
29983
29983
|
}
|
|
29984
|
-
.
|
|
29984
|
+
.history__74f6cf9a .content-top__7ce4b06b .user__36a9effc {
|
|
29985
29985
|
width: 120px;
|
|
29986
29986
|
}
|
|
29987
|
-
.
|
|
29987
|
+
.history__74f6cf9a .content-top__7ce4b06b .text__08470371 {
|
|
29988
29988
|
padding-left: 10px;
|
|
29989
29989
|
padding-right: 20px;
|
|
29990
29990
|
}
|
|
29991
|
-
.
|
|
29992
|
-
.
|
|
29991
|
+
.history__74f6cf9a .user__36a9effc,
|
|
29992
|
+
.history__74f6cf9a .label__3e2bec8a {
|
|
29993
29993
|
display: inline-block;
|
|
29994
29994
|
text-overflow: ellipsis;
|
|
29995
29995
|
white-space: nowrap;
|
|
29996
29996
|
overflow: hidden;
|
|
29997
29997
|
}
|
|
29998
|
-
.
|
|
29998
|
+
.history__74f6cf9a .content__e32d45a4 {
|
|
29999
29999
|
margin-left: 29px;
|
|
30000
30000
|
border-left: 3px solid #f2f2f2;
|
|
30001
30001
|
padding: 3px 0 3px 8px;
|
|
30002
30002
|
display: flex;
|
|
30003
30003
|
align-items: center;
|
|
30004
30004
|
}
|
|
30005
|
-
.
|
|
30005
|
+
.history__74f6cf9a .content__e32d45a4 .label__3e2bec8a {
|
|
30006
30006
|
color: #797979;
|
|
30007
30007
|
width: 110px;
|
|
30008
30008
|
margin-right: 10px;
|
|
30009
30009
|
flex-shrink: 0;
|
|
30010
30010
|
}
|
|
30011
|
-
.
|
|
30011
|
+
.history__74f6cf9a .content__e32d45a4 .old-value__613e72c1 {
|
|
30012
30012
|
color: #797979;
|
|
30013
30013
|
}
|
|
30014
|
-
.
|
|
30015
|
-
.
|
|
30016
|
-
.
|
|
30014
|
+
.history__74f6cf9a .content__e32d45a4 .old-value__613e72c1 div,
|
|
30015
|
+
.history__74f6cf9a .content__e32d45a4 .old-value__613e72c1 span:not([class^='flow-state']):not([class^='default-avatar']):not([class^='avatar-item']),
|
|
30016
|
+
.history__74f6cf9a .content__e32d45a4 .old-value__613e72c1 p {
|
|
30017
30017
|
color: #797979;
|
|
30018
30018
|
}
|
|
30019
|
-
.
|
|
30020
|
-
.
|
|
30019
|
+
.history__74f6cf9a .content__e32d45a4 .new-value__13aed063,
|
|
30020
|
+
.history__74f6cf9a .content__e32d45a4 .old-value__613e72c1 {
|
|
30021
30021
|
max-width: calc(50% - 80px);
|
|
30022
30022
|
max-height: 200px;
|
|
30023
30023
|
overflow: auto;
|
|
30024
30024
|
}
|
|
30025
|
-
.
|
|
30025
|
+
.history__74f6cf9a .content__e32d45a4 .arrow-right__949342d9 {
|
|
30026
30026
|
margin: 0 10px;
|
|
30027
30027
|
flex-shrink: 0;
|
|
30028
30028
|
}
|
|
30029
|
-
.
|
|
30029
|
+
.timeline__9f6f0ead {
|
|
30030
30030
|
padding: 21px 0 30px;
|
|
30031
30031
|
}
|
|
30032
|
-
.
|
|
30032
|
+
.timeline__9f6f0ead .tag__5a343b10 {
|
|
30033
30033
|
display: inline-block;
|
|
30034
30034
|
position: relative;
|
|
30035
30035
|
height: 22px;
|
|
30036
30036
|
line-height: 22px;
|
|
30037
30037
|
border-radius: 4px;
|
|
30038
30038
|
}
|
|
30039
|
-
.
|
|
30039
|
+
.timeline__9f6f0ead .tag-text__55fdd7e3 {
|
|
30040
30040
|
padding: 0 8px;
|
|
30041
30041
|
min-width: 52px;
|
|
30042
30042
|
max-width: 80px;
|
|
@@ -30047,7 +30047,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
30047
30047
|
overflow: hidden;
|
|
30048
30048
|
text-align: center;
|
|
30049
30049
|
}
|
|
30050
|
-
.
|
|
30050
|
+
.timeline__9f6f0ead .tag-time__0bc59783 {
|
|
30051
30051
|
position: absolute;
|
|
30052
30052
|
right: 0;
|
|
30053
30053
|
width: 80px;
|
|
@@ -30056,27 +30056,27 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
30056
30056
|
color: #878c96;
|
|
30057
30057
|
text-align: right;
|
|
30058
30058
|
}
|
|
30059
|
-
.
|
|
30059
|
+
.timeline__9f6f0ead .tag-time__0bc59783.tag-time-top__ca477946 {
|
|
30060
30060
|
bottom: calc(100% + 16px);
|
|
30061
30061
|
}
|
|
30062
|
-
.
|
|
30062
|
+
.timeline__9f6f0ead .tag-time__0bc59783.tag-time-bottom__1c7138ec {
|
|
30063
30063
|
top: calc(100% + 8px);
|
|
30064
30064
|
}
|
|
30065
|
-
.timeline-
|
|
30065
|
+
.timeline-dot__ad54257d {
|
|
30066
30066
|
width: 5px;
|
|
30067
30067
|
height: 5px;
|
|
30068
30068
|
border-radius: 100%;
|
|
30069
30069
|
background: #d8d8d8;
|
|
30070
30070
|
}
|
|
30071
|
-
.timeline-
|
|
30071
|
+
.timeline-dot__ad54257d.active__5f6968c7 {
|
|
30072
30072
|
background: #0c62ff;
|
|
30073
30073
|
}
|
|
30074
|
-
.timeline-
|
|
30074
|
+
.timeline-item__5be613d3 {
|
|
30075
30075
|
display: flex;
|
|
30076
30076
|
flex-direction: column;
|
|
30077
30077
|
padding-top: 2px;
|
|
30078
30078
|
}
|
|
30079
|
-
.timeline-item-
|
|
30079
|
+
.timeline-item-status__436a971f {
|
|
30080
30080
|
margin-bottom: 8px;
|
|
30081
30081
|
height: 20px;
|
|
30082
30082
|
line-height: 20px;
|
|
@@ -30084,15 +30084,15 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
30084
30084
|
color: #1e2a3d;
|
|
30085
30085
|
font-size: 14px;
|
|
30086
30086
|
}
|
|
30087
|
-
.timeline-
|
|
30087
|
+
.timeline-item__5be613d3 .username {
|
|
30088
30088
|
color: #4d545e;
|
|
30089
30089
|
}
|
|
30090
|
-
.timeline-item-
|
|
30090
|
+
.timeline-item-info__6ae8e2ae {
|
|
30091
30091
|
display: flex;
|
|
30092
30092
|
justify-content: flex-start;
|
|
30093
30093
|
align-items: center;
|
|
30094
30094
|
}
|
|
30095
|
-
.timeline-item-
|
|
30095
|
+
.timeline-item-date__7162eb37 {
|
|
30096
30096
|
margin: 0 0 0 8px;
|
|
30097
30097
|
height: 22px;
|
|
30098
30098
|
line-height: 22px;
|
|
@@ -30100,58 +30100,58 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
30100
30100
|
font-weight: 400;
|
|
30101
30101
|
color: #878c96;
|
|
30102
30102
|
}
|
|
30103
|
-
.
|
|
30103
|
+
.timeline__9f6f0ead .antd-timeline__99dc3918.ant-timeline-item {
|
|
30104
30104
|
display: flex;
|
|
30105
30105
|
justify-content: flex-start;
|
|
30106
30106
|
padding-bottom: 16px;
|
|
30107
30107
|
}
|
|
30108
|
-
.
|
|
30108
|
+
.timeline__9f6f0ead .antd-timeline__99dc3918.ant-timeline-item .ant-timeline-item-label {
|
|
30109
30109
|
display: flex;
|
|
30110
30110
|
justify-content: flex-end;
|
|
30111
30111
|
position: relative;
|
|
30112
30112
|
width: 80px;
|
|
30113
30113
|
text-align: left;
|
|
30114
30114
|
}
|
|
30115
|
-
.
|
|
30115
|
+
.timeline__9f6f0ead .antd-timeline__99dc3918.ant-timeline-item .ant-timeline-item-tail {
|
|
30116
30116
|
top: -10px;
|
|
30117
30117
|
left: 93px;
|
|
30118
30118
|
height: calc(90% + 55px);
|
|
30119
30119
|
border-left: 1px solid #d8d8d8;
|
|
30120
30120
|
box-sizing: content-box;
|
|
30121
30121
|
}
|
|
30122
|
-
.
|
|
30122
|
+
.timeline__9f6f0ead .antd-timeline__99dc3918.ant-timeline-item .ant-timeline-item-head-custom {
|
|
30123
30123
|
margin: 0;
|
|
30124
30124
|
padding: 0;
|
|
30125
30125
|
left: 93px;
|
|
30126
30126
|
transform: translate(-2px, -50%);
|
|
30127
30127
|
}
|
|
30128
|
-
.
|
|
30128
|
+
.timeline__9f6f0ead .antd-timeline__99dc3918.ant-timeline-item .ant-timeline-item-content {
|
|
30129
30129
|
left: 12px !important;
|
|
30130
30130
|
width: calc(100% - 180px) !important;
|
|
30131
30131
|
}
|
|
30132
|
-
.editor-
|
|
30132
|
+
.editor-modal__e67450cc .show-editor__2a2768ab {
|
|
30133
30133
|
display: block;
|
|
30134
30134
|
}
|
|
30135
|
-
.editor-
|
|
30135
|
+
.editor-modal__e67450cc .ant-modal-body {
|
|
30136
30136
|
display: flex;
|
|
30137
30137
|
}
|
|
30138
|
-
.editor-
|
|
30138
|
+
.editor-modal__e67450cc .ant-modal-body > div {
|
|
30139
30139
|
width: 50%;
|
|
30140
30140
|
}
|
|
30141
|
-
.editor-
|
|
30141
|
+
.editor-modal__e67450cc .ant-modal-body > div .field-layout {
|
|
30142
30142
|
height: 500px;
|
|
30143
30143
|
overflow: auto;
|
|
30144
30144
|
margin-bottom: 40px;
|
|
30145
30145
|
border: 1px solid #eee;
|
|
30146
30146
|
padding: 10px;
|
|
30147
30147
|
}
|
|
30148
|
-
p.
|
|
30148
|
+
p.deleted__15838353 {
|
|
30149
30149
|
margin: 0;
|
|
30150
30150
|
height: 36px;
|
|
30151
30151
|
line-height: 36px;
|
|
30152
30152
|
padding-left: 30px;
|
|
30153
30153
|
}
|
|
30154
|
-
.user-
|
|
30154
|
+
.user-box__22344fb7 {
|
|
30155
30155
|
display: flex;
|
|
30156
30156
|
align-items: center;
|
|
30157
30157
|
}
|