@atlaskit/editor-core 221.11.0 → 221.11.1
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/CHANGELOG.md +10 -0
- package/dist/cjs/ui/Appearance/FullPage/FullPageToolbarNext.js +19 -7
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +0 -47
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.js +2 -4
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-emotion.js +1 -7
- package/dist/cjs/ui/EditorContentContainer/styles/blockTypeStyles.js +1 -97
- package/dist/cjs/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +1 -21
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/Appearance/FullPage/FullPageToolbarNext.js +17 -7
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +0 -47
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.js +2 -4
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-emotion.js +3 -9
- package/dist/es2019/ui/EditorContentContainer/styles/blockTypeStyles.js +0 -96
- package/dist/es2019/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +0 -20
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/Appearance/FullPage/FullPageToolbarNext.js +19 -7
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +0 -47
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.js +2 -4
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-emotion.js +3 -9
- package/dist/esm/ui/EditorContentContainer/styles/blockTypeStyles.js +0 -96
- package/dist/esm/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +0 -20
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/types/markdown-mode.d.ts +1 -0
- package/dist/types/ui/EditorContentContainer/styles/blockTypeStyles.d.ts +0 -7
- package/dist/types/ui/EditorContentContainer/styles/editorUGCTokenStyles.d.ts +0 -10
- package/package.json +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 221.11.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6a14c075f433a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6a14c075f433a) -
|
|
8
|
+
Always use refreshed UGC font tokens and new heading styles in editor content containers.
|
|
9
|
+
- [`ed6e0c3974d3c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ed6e0c3974d3c) -
|
|
10
|
+
EDITOR-7466 scope markdown preview toolbar preference to converted live pages
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 221.11.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -63,8 +63,13 @@ var SecondChildWrapper = function SecondChildWrapper(_ref3) {
|
|
|
63
63
|
var shouldShowToolbarContainer = function shouldShowToolbarContainer(toolbar, customPrimaryToolbarComponents) {
|
|
64
64
|
return !!toolbar || !!customPrimaryToolbarComponents;
|
|
65
65
|
};
|
|
66
|
-
var getToolbarComponentsForMarkdownView = function getToolbarComponentsForMarkdownView(components, markdownModeView) {
|
|
66
|
+
var getToolbarComponentsForMarkdownView = function getToolbarComponentsForMarkdownView(components, markdownModeView, isConvertedMarkdownPreview) {
|
|
67
67
|
if ((markdownModeView === 'syntax' || markdownModeView === 'preview') && (0, _platformFeatureFlags.fg)('platform_editor_markdown_mode_hide_source_toolbar')) {
|
|
68
|
+
// Converted markdown live pages in preview should show full toolbar content
|
|
69
|
+
// so preference-based docking can work consistently.
|
|
70
|
+
if (isConvertedMarkdownPreview) {
|
|
71
|
+
return components;
|
|
72
|
+
}
|
|
68
73
|
return components.filter(function (component) {
|
|
69
74
|
return component.key === _toolbar.TOOLBARS.PRIMARY_TOOLBAR || component.key === _toolbar.VIEW_MODE_TOGGLE_SECTION.key;
|
|
70
75
|
});
|
|
@@ -89,18 +94,22 @@ var FullPageToolbarNext = exports.FullPageToolbarNext = function FullPageToolbar
|
|
|
89
94
|
});
|
|
90
95
|
var effectiveRuntimeOverride = runtimeOverride !== undefined && (0, _platformFeatureFlags.fg)('platform_editor_toolbar_mode_override') ? runtimeOverride : undefined;
|
|
91
96
|
var contextualFormattingEnabled = effectiveRuntimeOverride !== null && effectiveRuntimeOverride !== void 0 ? effectiveRuntimeOverride : editorAPI === null || editorAPI === void 0 || (_editorAPI$toolbar2 = editorAPI.toolbar) === null || _editorAPI$toolbar2 === void 0 ? void 0 : _editorAPI$toolbar2.actions.contextualFormattingMode();
|
|
92
|
-
var
|
|
93
|
-
|
|
94
|
-
return (_states$markdownModeS = states.markdownModeState) === null || _states$markdownModeS === void 0 ? void 0 : _states$markdownModeS.view;
|
|
97
|
+
var markdownModeState = (0, _hooks.useSharedPluginStateWithSelector)(editorAPI, ['markdownMode'], function (states) {
|
|
98
|
+
return states.markdownModeState;
|
|
95
99
|
});
|
|
100
|
+
var isLivePage = markdownModeState === null || markdownModeState === void 0 ? void 0 : markdownModeState.isLivePage;
|
|
101
|
+
var isMarkdownMode = markdownModeState === null || markdownModeState === void 0 ? void 0 : markdownModeState.isMarkdownMode;
|
|
102
|
+
var markdownModeView = markdownModeState === null || markdownModeState === void 0 ? void 0 : markdownModeState.view;
|
|
103
|
+
var isConvertedMarkdownPreview = isMarkdownMode === true && isLivePage === true && markdownModeView === 'preview' && (0, _platformFeatureFlags.fg)('platform_editor_markdown_patch_m3');
|
|
96
104
|
var intl = (0, _reactIntl.useIntl)();
|
|
97
105
|
var toolbar = components === null || components === void 0 ? void 0 : components.find(function (component) {
|
|
98
106
|
return component.key === _toolbar.TOOLBARS.PRIMARY_TOOLBAR;
|
|
99
107
|
});
|
|
100
108
|
var visibleToolbarComponents = (0, _react.useMemo)(function () {
|
|
101
|
-
return components ? getToolbarComponentsForMarkdownView(components, markdownModeView) : undefined;
|
|
102
|
-
}, [components, markdownModeView]);
|
|
103
|
-
var
|
|
109
|
+
return components ? getToolbarComponentsForMarkdownView(components, markdownModeView, isConvertedMarkdownPreview) : undefined;
|
|
110
|
+
}, [components, markdownModeView, isConvertedMarkdownPreview]);
|
|
111
|
+
var effectiveContextualFormattingEnabled = isConvertedMarkdownPreview && contextualFormattingEnabled === 'always-pinned' ? 'controlled' : contextualFormattingEnabled;
|
|
112
|
+
var primaryToolbarDockingConfigEnabled = (0, _toolbar.shouldShowPrimaryToolbar)(effectiveContextualFormattingEnabled, toolbarDockingPosition);
|
|
104
113
|
|
|
105
114
|
// When a toolbar portal context is provided, render the toolbar inside a portal.
|
|
106
115
|
// Otherwise fall back to a fragment just to avoid forking rendering logic.
|
|
@@ -134,6 +143,9 @@ var FullPageToolbarNext = exports.FullPageToolbarNext = function FullPageToolbar
|
|
|
134
143
|
if (!isAwaitingToolbarComponents && !shouldShowToolbarContainer(toolbar, customPrimaryToolbarComponents)) {
|
|
135
144
|
return /*#__PURE__*/_react.default.createElement(ToolbarPortal, null, null);
|
|
136
145
|
}
|
|
146
|
+
if (isConvertedMarkdownPreview && !primaryToolbarDockingConfigEnabled && !customPrimaryToolbarComponents) {
|
|
147
|
+
return /*#__PURE__*/_react.default.createElement(ToolbarPortal, null, null);
|
|
148
|
+
}
|
|
137
149
|
return /*#__PURE__*/_react.default.createElement(_contextPanel.ContextPanelConsumer, null, function (_ref6) {
|
|
138
150
|
var ContextPanelWidth = _ref6.width;
|
|
139
151
|
return /*#__PURE__*/_react.default.createElement(_uiMenu.ToolbarArrowKeyNavigationProvider, {
|
|
@@ -503,7 +503,6 @@
|
|
|
503
503
|
._12qtb3bt .ProseMirror .danger .code-block .line-number-gutter:after{content:""}
|
|
504
504
|
._12qwgrf3 .ProseMirror .ak-editor-panel__content>.ProseMirror-widget:first-child+.code-block{margin-bottom:0!important}
|
|
505
505
|
._12rjidpf .ProseMirror .ak-editor-bodied-sync-block{margin-bottom:0}
|
|
506
|
-
._12rk1pd9 .ProseMirror h5{font-weight:var(--ds-font-weight-semibold,600)}
|
|
507
506
|
._12sp1aa5 .ProseMirror .fabric-editor-block-mark.fabric-editor-alignment:not(:first-child)>h6:first-child{margin-top:1.455em}
|
|
508
507
|
._12te1q9c .ProseMirror mark[data-type-ahead-query=true]:has(.placeholder-decoration-wrap){white-space:nowrap}
|
|
509
508
|
._12tyzjw7 .editor-mention-primitive{padding-right:.3em}
|
|
@@ -527,7 +526,6 @@
|
|
|
527
526
|
._13641bqt .ProseMirror blockquote.danger{border-left-color:var(--ds-border-danger,#e2483d)}
|
|
528
527
|
._1377r4us .ProseMirror .ak-editor-selected-node .emoji-common-emoji-unicode{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
529
528
|
._137bidpf [data-prosemirror-node-name=blockTaskItem] [data-component=content]{margin-left:0}
|
|
530
|
-
._138n1kw7 .ProseMirror h4{font-style:inherit}
|
|
531
529
|
._13az1kdv .ak-editor-panel.ak-editor-selected-node:not(.danger){-webkit-user-select:text}
|
|
532
530
|
._13bv3ney .search-match-block.search-match-block-selected.search-match-dark .loader-wrapper>a{box-shadow:0 0 0 4px var(--ds-background-accent-magenta-bolder-hovered,#943d73),0 0 0 5px var(--ds-background-accent-magenta-bolder,#ae4787)}
|
|
533
531
|
._13dhs0v8 .ProseMirror .fabric-editor-block-mark.fabric-editor-alignment:not(:first-child)>h2:first-child{margin-top:1.8em}
|
|
@@ -555,7 +553,6 @@
|
|
|
555
553
|
._13y1kb7n .resizer-item:hover>.resizer-handle-wrapper>.resizer-handle{opacity:1}
|
|
556
554
|
._13zuidpf .ProseMirror .ak-editor-selected-node .emoji-common-emoji-unicode:before{top:0}
|
|
557
555
|
._140c15tv .ProseMirror h1{margin-top:1.45833em}
|
|
558
|
-
._140cs05q .ProseMirror h1{margin-top:1.667em}
|
|
559
556
|
._141u1hna [data-prosemirror-node-name=taskItem] [data-component=content]{word-wrap:break-word}
|
|
560
557
|
._144ruibq .ProseMirror .telepointer.color-0{--telepointer-participant-bg-color:var(--ds-background-accent-red-bolder,#c9372c)}
|
|
561
558
|
._146b1j28 .ak-editor-panel.ak-editor-selected-node:not(.danger)::-moz-selection{background-color:transparent}
|
|
@@ -575,7 +572,6 @@
|
|
|
575
572
|
._14igidpf [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=placeholder]{margin-bottom:0}
|
|
576
573
|
._14ijglyw .ProseMirror .placeholder-decoration{pointer-events:none}
|
|
577
574
|
._14j01n1a .ak-editor-expand.ak-editor-selected-node:not(.danger):after{right:-1px}
|
|
578
|
-
._14jf1rpy .ProseMirror h6{color:var(--ds-text-subtlest,#6b6e76)}
|
|
579
575
|
._14jm1ntv .pm-table-container>table hr{box-sizing:content-box}
|
|
580
576
|
._14l7idpf [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]{margin-left:0}
|
|
581
577
|
._14lv1jih .ProseMirror .extensionView-content-wrap{margin-top:var(--ak-editor-extension-block-spacing,.75rem)}
|
|
@@ -621,7 +617,6 @@
|
|
|
621
617
|
._15haglyw .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]{clear:none}
|
|
622
618
|
._15hdglyw .ak-editor-selected-node>[data-decision-wrapper]:before{pointer-events:none}
|
|
623
619
|
._15hr1ial .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]:before{z-index:12}
|
|
624
|
-
._15hx9q8f{--editor-font-ugc-token-heading-h4:normal 600 1em/1.14286 ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
625
620
|
._15hxe8o0{--editor-font-ugc-token-heading-h4:normal 600 1em/1.14286 "Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
626
621
|
._15i0idpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child h4 style:first-child+*{margin-top:0}
|
|
627
622
|
._15kbidpf .bodiedExtensionView-content-wrap .extension-container .bodiedExtension-content-inner-wrapper{margin-bottom:0}
|
|
@@ -718,11 +713,9 @@
|
|
|
718
713
|
._17kl1wth .ProseMirror ul ul ul ul{list-style-type:disc}
|
|
719
714
|
._17lhgrf3 .ak-editor-panel__content>div[data-task-list-local-id]:first-child{margin-top:0!important}
|
|
720
715
|
._17liidpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child h5 style:first-child+*{margin-top:0}
|
|
721
|
-
._17m4wu06 .ProseMirror h6{font-weight:var(--ds-font-weight-bold,653)}
|
|
722
716
|
._17n0myb0 .fabric-editor-breakout-mark:has(>.fabric-editor-breakout-mark-dom>[data-prosemirror-node-name=panel_c1])>.pm-breakout-resize-handle-container--right{right:-4px}
|
|
723
717
|
._17qpt94y .ProseMirror .ak-editor-annotation-hover{padding-top:1px}
|
|
724
718
|
._17rd17vv .ProseMirror h1>.mediaInlineView-content-wrap>.media-inline-image-wrapper{transform:translateY(-3px)}
|
|
725
|
-
._17rf1kw7 .ProseMirror h3{font-style:inherit}
|
|
726
719
|
._17sv1q9c .ak-editor-expand:not(.ak-editor-expand__expanded) .ak-editor-expand__content{white-space:nowrap}
|
|
727
720
|
._17thtlke .ProseMirror .ak-editor-bodied-sync-block{cursor:pointer}
|
|
728
721
|
._17v9idpf .pm-table-wrapper>table>tbody>tr>td{border-bottom-width:0}
|
|
@@ -900,7 +893,6 @@
|
|
|
900
893
|
._1bkq11dc .ProseMirror [data-layout-section]>[data-layout-column].ak-editor-selected-node:not(.danger):before{width:calc(100% - 8px)}
|
|
901
894
|
._1bkq1osq .ProseMirror [data-layout-section]>[data-layout-column].ak-editor-selected-node:not(.danger):before{width:100%}
|
|
902
895
|
._1blo4viv .code-block .search-match.selected-search-match span{color:var(--ds-text,#292a2e)!important}
|
|
903
|
-
._1blq44hb .ProseMirror h4{letter-spacing:-.003em}
|
|
904
896
|
._1bnfhteq [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]+svg rect:first-of-type{stroke:var(--checkbox-border-color)}
|
|
905
897
|
._1bnx1j28 .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]::selection{background-color:transparent}
|
|
906
898
|
._1bo71y6m .resizer-handle.left{align-items:flex-start}
|
|
@@ -948,7 +940,6 @@
|
|
|
948
940
|
._1cjx1sou .extensionView-content-wrap.danger>span>.legacy-content-header .status-lozenge-span>span{background-color:var(--ds-background-accent-red-subtle-hovered,#fd9891)}
|
|
949
941
|
._1ckw1h6o .fabric-editor-align-center{text-align:center}
|
|
950
942
|
._1clfstnw .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.multiBodiedExtension--container:before{position:absolute}
|
|
951
|
-
._1cllcjiy .ProseMirror h2{line-height:1.2}
|
|
952
943
|
._1cma1osq [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]{height:100%}
|
|
953
944
|
._1cmi15ob div[extensionType="com.atlassian.ai-blocks"] .extension-container:before{background-size:200%}
|
|
954
945
|
._1cnfidpf .ProseMirror .ak-editor-sync-block .ak-editor-bodied-sync-block__content{padding-top:0}
|
|
@@ -960,7 +951,6 @@
|
|
|
960
951
|
._1crlidpf .blockCardView-content-wrap{margin-right:0}
|
|
961
952
|
._1crm1txw .pm-breakout-resize-handle-rail{display:flex}
|
|
962
953
|
._1crwidpf [data-prosemirror-node-name=taskItem] [data-component=content]{margin-top:0}
|
|
963
|
-
._1cs1qdok .ProseMirror h3{letter-spacing:-.006em}
|
|
964
954
|
._1cub16ux .ak-editor-selected-node.unsupportedBlockView-content-wrap>div:after{content:"\00a0"}
|
|
965
955
|
._1cvgidpf .ProseMirror .layout-section-container [data-layout-section]>.ProseMirror-widget+[data-layout-column]{margin-right:0}
|
|
966
956
|
._1cvqewfl .resizer-item:hover>.resizer-handle-wrapper>.resizer-handle{visibility:visible}
|
|
@@ -1013,7 +1003,6 @@
|
|
|
1013
1003
|
._1dx5idpf .ak-editor-expand__icon-button{margin-left:0}
|
|
1014
1004
|
._1dx5idpf .pm-breakout-resize-handle-hit-box{z-index:0}
|
|
1015
1005
|
._1dyh1l7b .ProseMirror .ak-editor-annotation-hover:has([data-inline-card]){padding-bottom:3px}
|
|
1016
|
-
._1dzb1aa5 .ProseMirror h6{margin-top:1.455em}
|
|
1017
1006
|
._1dzb6yhe .ProseMirror h6{margin-top:1.59091em}
|
|
1018
1007
|
._1dzvzd3w .fabric-editor-breakout-mark:has(>.fabric-editor-breakout-mark-dom>[data-prosemirror-node-name=codeBlock])>.pm-breakout-resize-handle-container{height:calc(100% - 9pt)}
|
|
1019
1008
|
._1e01v47k .ak-editor-content-area.appearance-full-page .ProseMirror .ak-editor-panel.ak-editor-panel__no-icon{padding-left:var(--ds-space-250,20px)}
|
|
@@ -1059,7 +1048,6 @@
|
|
|
1059
1048
|
._1euekb7n .ProseMirror .ak-editor-sync-block.user-is-dragging .ak-editor-sync-block__label{opacity:1}
|
|
1060
1049
|
._1eui1o36 .ProseMirror .placeholder-decoration .placeholder-android{outline-width:medium}
|
|
1061
1050
|
._1eus161g div[extensionType="com.atlassian.ai-blocks"] .extension-container:after{transform:translate3d(0,0,0)}
|
|
1062
|
-
._1eut1kw7 .ProseMirror h5{font-style:inherit}
|
|
1063
1051
|
._1ev3r4us .statusView-content-wrap.ak-editor-selected-node .status-lozenge-span>span{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
1064
1052
|
._1ev3w5lj .statusView-content-wrap.ak-editor-selected-node .status-lozenge-span>span{box-shadow:0 0 0 2px var(--ds-border-selected,#1868db)}
|
|
1065
1053
|
._1ev778tn .ak-editor-expand__title-input{line-height:1.714}
|
|
@@ -1115,14 +1103,12 @@
|
|
|
1115
1103
|
._1fxzidpf .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:before{right:0}
|
|
1116
1104
|
._1fyh1osq .ProseMirror .danger.code-block .line-number-gutter:after{height:100%}
|
|
1117
1105
|
._1fyjrq1m .embedCardView-content-wrap.show-diff-deleted-node-traditional.show-diff-deleted-active .loader-wrapper>div:after{box-shadow:0 0 0 4px var(--ds-background-accent-red-subtler-pressed,#fd9891)}
|
|
1118
|
-
._1fyni7uo .ProseMirror h5{color:var(--ds-text,#292a2e)}
|
|
1119
1106
|
._1fzc12et .ProseMirror .ak-editor-sync-block{margin-right:-19px}
|
|
1120
1107
|
._1fzu1j28 .ProseMirror.ProseMirror-hide-gapcursor{caret-color:transparent}
|
|
1121
1108
|
._1g0kmz2b [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:active+svg{--checkbox-background-color:var(--local-background-disabled)}
|
|
1122
1109
|
._1g12116y .ProseMirror .ak-editor-panel .ak-editor-panel__icon>span{display:inline-flex}
|
|
1123
1110
|
._1g1f1l7x{--local-border-active:var(--ds-border,#0b120e24)}
|
|
1124
1111
|
._1g1uidpf .ProseMirror [data-layout-section] [data-layout-column]>div>:nth-child(1 of :not(style,.ProseMirror-gapcursor,.ProseMirror-widget,span)){margin-top:0}
|
|
1125
|
-
._1g2sncm8{--editor-font-ugc-token-body:normal 400 1em/1.714 ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
1126
1112
|
._1g2st7zq{--editor-font-ugc-token-body:normal 400 1em/1.714 "Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
1127
1113
|
._1g35idpf .ProseMirror .ak-editor-annotation-hover:has(.card){padding-right:0}
|
|
1128
1114
|
._1g35idpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]+*{margin-top:0}
|
|
@@ -1194,7 +1180,6 @@
|
|
|
1194
1180
|
._1hmbexct [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=icon]{flex-basis:16px}
|
|
1195
1181
|
._1hmgv2br [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap{align-self:start}
|
|
1196
1182
|
._1hmn1j28 ol[data-node-type=decisionList].ak-editor-selected-node ::-moz-selection{background-color:transparent}
|
|
1197
|
-
._1hmq1kw7 .ProseMirror h2{font-style:inherit}
|
|
1198
1183
|
._1hmsewfl .ProseMirror .ak-editor-bodied-sync-block.ak-editor-bodied-sync-block__selection_inside .ak-editor-sync-block__label{visibility:visible}
|
|
1199
1184
|
._1hn6idpf .ProseMirror [data-layout-section]>[data-layout-column]:last-of-type{margin-right:0}
|
|
1200
1185
|
._1ho1yfq0 .pm-table-wrapper>table>tbody>tr>th[data-valign=bottom]{vertical-align:bottom}
|
|
@@ -1212,7 +1197,6 @@
|
|
|
1212
1197
|
._1hwsbimv .danger .statusView-content-wrap.ak-editor-selected-node .status-lozenge-span>span{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
1213
1198
|
._1hwxidpf .fabric-editor-font-size:first-of-type:first-child h4:first-child:not(style){margin-top:0}
|
|
1214
1199
|
._1hxi1j28 ol[data-node-type=decisionList].ak-editor-selected-node::selection{background-color:transparent}
|
|
1215
|
-
._1hxvye00 .ProseMirror h5{line-height:1.33333}
|
|
1216
1200
|
._1hy1bokp .pm-table-resizer-container{will-change:width,margin-left}
|
|
1217
1201
|
._1hy4nkob .pm-table-sticky-wrapper>table>tbody>tr>th[data-valign=middle]{vertical-align:middle}
|
|
1218
1202
|
._1hz91n9t .pm-table-wrapper>table{table-layout:fixed}
|
|
@@ -1366,7 +1350,6 @@
|
|
|
1366
1350
|
._1ljoidpf .ProseMirror .code-block .code-block--end{bottom:0}
|
|
1367
1351
|
._1lm915cr .ProseMirror .telepointer.color-6{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
1368
1352
|
._1lm92bgk .fabric-editor-breakout-mark:has([data-prosemirror-node-name=syncBlock])>.pm-breakout-resize-handle-container--right{right:-24px}
|
|
1369
|
-
._1lng10nf .ProseMirror h3{line-height:1.25}
|
|
1370
1353
|
._1lp9kb7n [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]{z-index:1}
|
|
1371
1354
|
._1lpf187o .ProseMirror .ak-editor-bodied-sync-block:has(.ak-editor-sync-block__error_state){background-color:var(--ds-background-disabled,#0515240f)}
|
|
1372
1355
|
._1lqhstnw .resizer-handle-thumb:focus:after{position:absolute}
|
|
@@ -1411,7 +1394,6 @@
|
|
|
1411
1394
|
._1mej1kdv .ProseMirror :is(ul,ol,div[data-node-type=actionList]):not(:is(ul,ol,div[data-node-type=actionList]) *).ak-editor-selected-node:not(.ak-editor-selected-node *){-webkit-user-select:text}
|
|
1412
1395
|
._1mel1txw .ProseMirror .code-block-content-wrapper>.code-content{display:flex}
|
|
1413
1396
|
._1mglglyw .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.multiBodiedExtension--container:before{pointer-events:none}
|
|
1414
|
-
._1mlf1x4e .ProseMirror h4{font-size:1em}
|
|
1415
1397
|
._1mni17v8 .search-match-text.search-match-dark{box-shadow:inset 0 0 0 1px var(--ds-background-accent-magenta-bolder,#ae4787),inset 0 0 0 5px var(--ds-background-accent-magenta-bolder-pressed,#77325b)}
|
|
1416
1398
|
._1mnz1j28 .bodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container ::-moz-selection{background-color:transparent}
|
|
1417
1399
|
._1mok1kdv .ProseMirror .ak-editor-selected-node .emoji-common-emoji-unicode{-webkit-user-select:text}
|
|
@@ -1448,7 +1430,6 @@
|
|
|
1448
1430
|
._1nehnqa1 .ProseMirror blockquote{border-left-style:solid}
|
|
1449
1431
|
._1nhdi8nm .danger .mentionView-content-wrap>span>span>span{background-color:var(--ds-background-neutral,#0515240f)}
|
|
1450
1432
|
._1nhw13gf [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:focus+svg{cursor:not-allowed}
|
|
1451
|
-
._1nip1bvj .ProseMirror h2{font-size:1.42857em}
|
|
1452
1433
|
._1njsh2mm [data-prosemirror-node-name=taskItem] [data-component=task-item-main]{position:relative}
|
|
1453
1434
|
._1nl0glyw .inlineExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label{box-shadow:none}
|
|
1454
1435
|
._1nl9idpf .ProseMirror .ak-editor-annotation-draft:has(.card){padding-right:0}
|
|
@@ -1513,7 +1494,6 @@
|
|
|
1513
1494
|
._1orf1b66 .ProseMirror li>ol{margin-top:var(--ds-space-050,4px)}
|
|
1514
1495
|
._1orf1tuv .ProseMirror li>ol{margin-top:max(0px,calc((var(--ak-editor-base-font-size, 1pc) - 13px)*1.33333))}
|
|
1515
1496
|
._1ot0vbgk .richMedia-resize-handle-left:after{height:4pc}
|
|
1516
|
-
._1ot51kw7 .ProseMirror h6{font-style:inherit}
|
|
1517
1497
|
._1otekb7n .ProseMirror .ak-editor-sync-block.ak-editor-selected-node .ak-editor-sync-block__label{opacity:1}
|
|
1518
1498
|
._1otj1rjc .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{transition-property:transform,opacity}
|
|
1519
1499
|
._1otoidpf .ak-editor-selected-node.unsupportedInlineView-content-wrap>span:nth-of-type(2):after{top:0}
|
|
@@ -1605,7 +1585,6 @@
|
|
|
1605
1585
|
._1qomidpf .ProseMirror .left-shadow:before{left:0}
|
|
1606
1586
|
._1qrtidpf .ProseMirror [data-mark-type=fragment]:nth-last-of-type(-n+2):not(:first-of-type)>.extensionView-content-wrap{margin-bottom:0}
|
|
1607
1587
|
._1qs312nz{--editor-font-ugc-token-heading-h5:normal 600 0.857143em/1.33333 "Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
1608
|
-
._1qs3ddzq{--editor-font-ugc-token-heading-h5:normal 600 0.857143em/1.33333 ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
1609
1588
|
._1qs3i7a9 .editor-mention-primitive{font-weight:var(--ds-font-weight-regular,400)}
|
|
1610
1589
|
._1qsab3bt .resizer-handle-thumb:focus:after{content:""}
|
|
1611
1590
|
._1quk1aqn .ProseMirror .pm-table-wrapper>table:hover::-webkit-scrollbar-thumb{background-color:var(--ds-background-neutral-bold,#292a2e)}
|
|
@@ -1744,7 +1723,6 @@
|
|
|
1744
1723
|
._1tytusvi .pm-table-container>table>tbody>tr>td[data-reaches-bottom]{background-clip:border-box}
|
|
1745
1724
|
._1tz91ial .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:before{z-index:12}
|
|
1746
1725
|
._1tzc1b66 [data-prosemirror-node-name=status] .lozenge-wrapper{padding-inline-start:var(--ds-space-050,4px)}
|
|
1747
|
-
._1tzri7uo .ProseMirror h1{color:var(--ds-text,#292a2e)}
|
|
1748
1726
|
._1u0115vq .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]:after{visibility:hidden}
|
|
1749
1727
|
._1u09utpp .ProseMirror table .rich-media-item.image-wrap-right[data-layout]:first-child{margin-top:var(--ds-space-150,9pt)}
|
|
1750
1728
|
._1u19b3bt .ProseMirror.ua-chrome li>.mediaSingleView-content-wrap:before{content:""}
|
|
@@ -1756,7 +1734,6 @@
|
|
|
1756
1734
|
._1u6pkb7n .extensionView-content-wrap.danger>span>div>.extension-label{opacity:1}
|
|
1757
1735
|
._1u701ule .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{display:block}
|
|
1758
1736
|
._1u7x1v8p{--editor-font-ugc-token-heading-h6:normal 600 0.785714em/1.45455 "Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
1759
|
-
._1u7xm9w9{--editor-font-ugc-token-heading-h6:normal 700 0.785714em/1.45455 ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
1760
1737
|
._1u7yidpf .ProseMirror [data-layout-section]>.layout-column-divider{flex-shrink:0}
|
|
1761
1738
|
._1u7ymz2b [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:focus+svg{--checkbox-background-color:var(--local-background-disabled)}
|
|
1762
1739
|
._1u8dp3kn div[extensionType="com.atlassian.ai-blocks"]:has(.streaming) .extension-container:after{animation-timing-function:linear}
|
|
@@ -1851,7 +1828,6 @@
|
|
|
1851
1828
|
._1wdeh2mm .ProseMirror .code-block .code-block-content-wrapper{position:relative}
|
|
1852
1829
|
._1we4bimv .inlineExtensionView-content-wrap.danger.ak-editor-selected-node>span>div>.extension-label.with-bodied-macro-live-page-styles{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
1853
1830
|
._1wet1hna .editor-mention-primitive{word-break:break-word}
|
|
1854
|
-
._1wfa1pd9 .ProseMirror h3{font-weight:var(--ds-font-weight-semibold,600)}
|
|
1855
1831
|
._1wgaidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]+*>*{margin-top:0}
|
|
1856
1832
|
._1wgw13gf [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled+svg{cursor:not-allowed}
|
|
1857
1833
|
._1wh51v6z .resizer-handle.bottom .resizer-handle-track{height:7px}
|
|
@@ -1874,7 +1850,6 @@
|
|
|
1874
1850
|
._1wysidpf .ProseMirror .code-block .code-block--end{right:0}
|
|
1875
1851
|
._1wzd1t4y div[extensionType="com.atlassian.ai-blocks"] .extension-container .with-margin-styles{background-color:var(--ds-surface,#fff)!important}
|
|
1876
1852
|
._1wzi15tv .ProseMirror h5{margin-top:1.45833em}
|
|
1877
|
-
._1wzis05q .ProseMirror h5{margin-top:1.667em}
|
|
1878
1853
|
._1x09glyw .ProseMirror.ua-firefox .mediaSingleView-content-wrap{-webkit-user-select:none;-ms-user-select:none;user-select:none}
|
|
1879
1854
|
._1x187wq0 .ProseMirror .ak-editor-selected-node .emoji-common-emoji-sprite:before{background-color:var(--ds-blanket-selected,#388bff14)}
|
|
1880
1855
|
._1x2nt94y .ProseMirror .ak-editor-annotation-blur{padding-top:1px}
|
|
@@ -1906,7 +1881,6 @@
|
|
|
1906
1881
|
._1xkp16ch .ProseMirror h4 .emoji-common-placeholder{height:18.25px}
|
|
1907
1882
|
._1xktidpf .ProseMirror .ak-editor-annotation-focus:has([data-inline-card]){padding-left:0}
|
|
1908
1883
|
._1xlrb3bt .ProseMirror [data-layout-section].selected [data-layout-column]:not(:first-of-type) [data-layout-content]:before{content:""}
|
|
1909
|
-
._1xm41tc5 .ProseMirror h1{line-height:1.16667}
|
|
1910
1884
|
._1xm91l7b .ProseMirror .ak-editor-annotation-focus:has(.card){padding-bottom:3px}
|
|
1911
1885
|
._1xmbfeiv .ProseMirror .ak-editor-annotation-blur{border-bottom-color:var(--ds-border-accent-yellow,#b38600)}
|
|
1912
1886
|
._1xnzidpf .ak-editor-expand__icon-button{padding-bottom:0}
|
|
@@ -1952,7 +1926,6 @@
|
|
|
1952
1926
|
._1ydu1up9 .search-match-block .loader-wrapper>a{box-shadow:0 0 0 4px var(--ds-background-accent-magenta-subtler,#fdd0ec),0 0 0 5px var(--ds-border-accent-magenta,#cd519d)}
|
|
1953
1927
|
._1yg7azsu .ak-editor-selected-node>.editor-mention-primitive.mention-self{color:var(--ds-text-subtle,#505258)}
|
|
1954
1928
|
._1yh3ssxh .danger .statusView-content-wrap:not(.search-match-block).ak-editor-selected-node .status-lozenge-span>span{box-shadow:0 0 0 2px var(--ds-border-danger,#e2483d)}
|
|
1955
|
-
._1yh6vkfx .ProseMirror h2{letter-spacing:-.008em}
|
|
1956
1929
|
._1yi41osq .ProseMirror .ProseMirror-gapcursor span{height:100%}
|
|
1957
1930
|
._1yj9stnw .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-column]:after{position:absolute}
|
|
1958
1931
|
._1yjc1v1w{--local-border-focus:var(--ds-border-focused,#4688ec)}
|
|
@@ -2011,7 +1984,6 @@
|
|
|
2011
1984
|
._2qpjr4us .ak-editor-selected-node>.editor-mention-primitive{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
2012
1985
|
._2qpqidpf [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]{opacity:0}
|
|
2013
1986
|
._2s1d1xgx{--editor-font-ugc-token-heading-h3:normal 600 1.14286em/1.25 "Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
2014
|
-
._2s1dh9f3{--editor-font-ugc-token-heading-h3:normal 600 1.14286em/1.25 ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
2015
1987
|
._2s2x15vq [data-prosemirror-node-name=taskItem] [data-component=placeholder]{overflow-y:hidden}
|
|
2016
1988
|
._2ss61y2m .ProseMirror .telepointer.telepointer-pulse-during-tr .telepointer-initial{animation-duration:7.5s}
|
|
2017
1989
|
._2w21m0zr .ProseMirror [layout^=wrap-]+[layout^=wrap-]+h4{clear:both!important}
|
|
@@ -2158,7 +2130,6 @@
|
|
|
2158
2130
|
._5jm5h2mm .layout-column-divider{position:relative}
|
|
2159
2131
|
._5l361j28 .bodiedExtensionView-content-wrap.danger>span>.with-danger-overlay{background-color:transparent}
|
|
2160
2132
|
._5m891b66 .ProseMirror .telepointer.telepointer-selection-badge .telepointer-initial{padding-left:var(--ds-space-050,4px)}
|
|
2161
|
-
._5mgiz5jk .ProseMirror h1{letter-spacing:-.01em}
|
|
2162
2133
|
._5nd3r5cr .resizer-handle-thumb:focus:after{right:var(--ds-space-negative-050,-4px)}
|
|
2163
2134
|
._5o16utpp .pm-table-wrapper>table>tbody>tr>td th p:not(:first-of-type){margin-top:var(--ds-space-150,9pt)}
|
|
2164
2135
|
._5qeg1txw .pm-breakout-resize-handle-rail-wrapper{display:flex}
|
|
@@ -2272,7 +2243,6 @@
|
|
|
2272
2243
|
._7wwkkb7n .ProseMirror .ak-editor-sync-block.ak-editor-bodied-sync-block__selection_inside .ak-editor-sync-block__label{opacity:1}
|
|
2273
2244
|
._7xjx1ytf .ProseMirror .telepointer.telepointer-pulse-animate .telepointer-initial{animation-timing-function:ease-in-out}
|
|
2274
2245
|
._7xl8ckbl .pm-table-container>table>tbody>tr>td{min-width:3pc}
|
|
2275
|
-
._7yqie01w .ProseMirror h1{font-size:1.71429em}
|
|
2276
2246
|
._7z9f13gf [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled[data-invalid]+svg{cursor:not-allowed}
|
|
2277
2247
|
._802o12et .ProseMirror .ak-editor-bodied-sync-block{margin-right:-19px}
|
|
2278
2248
|
._80qob3bt .ProseMirror .danger.code-block .line-number-gutter:after{content:""}
|
|
@@ -2399,7 +2369,6 @@
|
|
|
2399
2369
|
._aoe7p1qy .ProseMirror h6>.mediaInlineView-content-wrap>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2400
2370
|
._aof7d439 .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{top:-14px}
|
|
2401
2371
|
._apdb1t5o .ProseMirror h3{margin-top:1.31249em}
|
|
2402
|
-
._apdb44jv .ProseMirror h3{margin-top:2em}
|
|
2403
2372
|
._ar1b1b18 .search-match-text.selected-search-match{box-shadow:inset 0 0 0 1px var(--ds-background-accent-magenta-bolder-hovered,#943d73),inset 0 0 0 5px var(--ds-background-accent-magenta-subtlest-pressed,#fcb6e1)}
|
|
2404
2373
|
._ar4h1h6o .ak-editor-expand__title-container{align-items:center}
|
|
2405
2374
|
._as951j5o .ProseMirror h2 strong{font-weight:var(--editor-font-ugc-token-weight-heading-bold)}
|
|
@@ -2482,7 +2451,6 @@
|
|
|
2482
2451
|
._c9uhf1ug .ProseMirror [data-layout-section] [data-layout-column]{flex-basis:0%}
|
|
2483
2452
|
._ca0qv47k{padding-top:var(--ds-space-250,20px)}
|
|
2484
2453
|
._ca2s1j28 ol[data-node-type=decisionList].ak-editor-selected-node ::selection{background-color:transparent}
|
|
2485
|
-
._cah11wq8 .ProseMirror h2{font-weight:var(--ds-font-weight-medium,500)}
|
|
2486
2454
|
._cajk14no .ProseMirror h1>.media-inline-image-wrapper{height:36px}
|
|
2487
2455
|
._caue1rpy .ak-editor-expand__title-input{color:var(--ds-text-subtlest,#6b6e76)}
|
|
2488
2456
|
._cbmx261p .ProseMirror .pm-table-wrapper table[data-initial-width-mode=content]>colgroup>col{width:unset!important}
|
|
@@ -2498,10 +2466,8 @@
|
|
|
2498
2466
|
._cle21ok8 .search-match-expand-title.selected-search-match.search-match-dark>.ak-editor-expand__title-container>.ak-editor-expand__input-container{background-color:var(--ds-background-accent-magenta-bolder-hovered,#943d73)}
|
|
2499
2467
|
._clq7grf3 div[extensiontype="com.atlassian.ai-blocks"][extensionkey="ai-action-items-block:aiActionItemsBodiedExtension"] div[data-node-type=actionList]{margin-bottom:0!important}
|
|
2500
2468
|
._cnga1w81 .ProseMirror .fabric-editor-indentation-mark[data-level="5"]{margin-left:150px}
|
|
2501
|
-
._cnsrx6qu .ProseMirror h6{font-size:.78571em}
|
|
2502
2469
|
._cnvup1qy .ProseMirror h6>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2503
2470
|
._co5y155b [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:checked:active+svg{--checkbox-background-color:var(--local-background-active)}
|
|
2504
|
-
._coici7uo .ProseMirror h4{color:var(--ds-text,#292a2e)}
|
|
2505
2471
|
._cp58idpf .ProseMirror .layout-section-container [data-layout-section]>.ProseMirror-widget+[data-layout-column]{margin-bottom:0}
|
|
2506
2472
|
._crev1j28 .extensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container::-moz-selection{background-color:transparent}
|
|
2507
2473
|
._cs4didpf .ProseMirror [data-layout-section] [data-layout-column]>div>[data-node-type=decisionList] li:first-of-type [data-decision-wrapper]{margin-top:0}
|
|
@@ -2522,7 +2488,6 @@
|
|
|
2522
2488
|
._d90xmyb0 .richMedia-resize-handle-right{margin-right:-4px}
|
|
2523
2489
|
._d9tridpf :not(.fabric-editor-block-mark)>div.fabric-editor-block-mark:first-of-type:not(.fabric-editor-indentation-mark):not(.fabric-editor-alignment):not(.fabric-editor-font-size) h3 style:first-child+*{margin-top:0}
|
|
2524
2490
|
._da23111w{--editor-font-ugc-token-heading-h1:normal 600 1.71429em/1.16667 "Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
2525
|
-
._da23275c{--editor-font-ugc-token-heading-h1:normal 500 1.71429em/1.16667 ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
2526
2491
|
._da7in729 .ProseMirror .ak-editor-panel[data-panel-type=tip]{background-color:var(--ds-background-accent-green-subtlest,#dcfff1)}
|
|
2527
2492
|
._dafh1j28 .ak-editor-selected-node>.editor-mention-primitive::-moz-selection{background-color:transparent}
|
|
2528
2493
|
._dai01kxc .gridContainer{height:100vh}
|
|
@@ -2593,7 +2558,6 @@
|
|
|
2593
2558
|
._ek7i13gf [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:active+svg{cursor:not-allowed}
|
|
2594
2559
|
._ekb2stnw [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]{position:absolute}
|
|
2595
2560
|
._el4et94y [data-prosemirror-node-name=date] .date-lozenger-container span{margin-left:1px}
|
|
2596
|
-
._emxw59la .ProseMirror h3{font-size:1.14286em}
|
|
2597
2561
|
._enj9p1qy .ProseMirror h5>:is(a,span[data-mark-type=border]) .mediaInlineView-content-wrap>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2598
2562
|
._et2r17cl [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:checked+svg{--checkbox-tick-color:var(--local-tick-checked)}
|
|
2599
2563
|
._et601yvi .multiBodiedExtensionView-content-wrap.danger>span>.with-danger-overlay .multiBodiedExtension--overlay{background-color:var(--ds-background-danger-hovered,#ffd5d2)}
|
|
@@ -2611,12 +2575,10 @@
|
|
|
2611
2575
|
._ez6hglyw [data-blocks-drop-target-container]~[data-layout-column]>[data-layout-content]:before{display:none}
|
|
2612
2576
|
._f2dr1j28 .inlineExtensionView-content-wrap.danger>span>.with-danger-overlay{background-color:transparent}
|
|
2613
2577
|
._f30jidpf .pm-table-header-content-wrap :not(p,.fabric-editor-block-mark)+div.fabric-editor-block-mark p:first-of-type{margin-top:0}
|
|
2614
|
-
._f3d81wq8 .ProseMirror h1{font-weight:var(--ds-font-weight-medium,500)}
|
|
2615
2578
|
._f4ee1jcr .search-match-block.search-match-dark.ak-editor-sync-block.ak-editor-selected-node{box-shadow:inset 0 0 0 1px var(--ds-background-accent-magenta-bolder,#ae4787),inset 0 0 0 5px var(--ds-background-accent-magenta-bolder-pressed,#77325b),0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
2616
2579
|
._f4wb1b66 .ProseMirror .ak-editor-sync-block.danger .ak-editor-sync-block__label{padding-top:var(--ds-space-050,4px)}
|
|
2617
2580
|
._f50o1j5o .ProseMirror h1 strong{font-weight:var(--editor-font-ugc-token-weight-heading-bold)}
|
|
2618
2581
|
._f561cs5v .resizer-handle-thumb{z-index:2}
|
|
2619
|
-
._f5pc1xde .ProseMirror h4{line-height:1.14286}
|
|
2620
2582
|
._f5slidpf :not(.fabric-editor-block-mark)>div.fabric-editor-block-mark:first-of-type:not(.fabric-editor-indentation-mark):not(.fabric-editor-alignment):not(.fabric-editor-font-size) h3:first-child:not(style){margin-top:0}
|
|
2621
2583
|
._f6io10o2 .ProseMirror [data-layout-section]>[data-layout-column][style*="--column-width"]{flex-basis:var(--column-resize-width,var(--column-width))}
|
|
2622
2584
|
._f7p0b3bt .ProseMirror .ak-editor-selected-node .emoji-common-emoji-sprite:before{content:""}
|
|
@@ -2863,7 +2825,6 @@
|
|
|
2863
2825
|
._jr3h1wug .pm-table-sticky-wrapper>table[data-autosize=true]{table-layout:auto}
|
|
2864
2826
|
._js8cidpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]:after{font-size:0}
|
|
2865
2827
|
._js9kidpf .ProseMirror>.blockCardView-content-wrap:first-child{margin-top:0}
|
|
2866
|
-
._jt2ui7uo .ProseMirror h2{color:var(--ds-text,#292a2e)}
|
|
2867
2828
|
._jtpj1nu9 .ProseMirror .ProseMirror-fake-text-selection{display:inline}
|
|
2868
2829
|
._jtxaglyw [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=placeholder]{pointer-events:none}
|
|
2869
2830
|
._jv52utpp .richMedia-resize-handle-left{padding-left:var(--ds-space-150,9pt)}
|
|
@@ -2882,7 +2843,6 @@
|
|
|
2882
2843
|
._k31i1txw .resizer-handle-thumb{display:flex}
|
|
2883
2844
|
._k3s4idpf .ProseMirror .rich-media-item.image-wrap-left+.rich-media-item.image-wrap-left{margin-right:0}
|
|
2884
2845
|
._k3ws1xfb .ProseMirror h4{margin-top:1.25em}
|
|
2885
|
-
._k3wsq19t .ProseMirror h4{margin-top:1.357em}
|
|
2886
2846
|
._k50g15vq .ak-editor-sync-block__label{visibility:hidden}
|
|
2887
2847
|
._k5rqstnw ol[data-node-type=decisionList].ak-editor-selected-node:before{position:absolute}
|
|
2888
2848
|
._k6mw1osq .resizer-hover-zone{width:100%}
|
|
@@ -2930,7 +2890,6 @@
|
|
|
2930
2890
|
._kze5vi1l .pm-table-container:has(>.pm-table-wrapper>table[data-initial-width-mode=content]){width:max-content!important}
|
|
2931
2891
|
._kzf2h2mm [data-prosemirror-node-name=blockTaskItem] [data-component=task-item-main]{position:relative}
|
|
2932
2892
|
._l1qiidpf .ak-editor-panel.ak-editor-selected-node:not(.danger):before{top:0}
|
|
2933
|
-
._l2nti7uo .ProseMirror h3{color:var(--ds-text,#292a2e)}
|
|
2934
2893
|
._l3h6p1qy .ProseMirror h4>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2935
2894
|
._l3rpidpf .inlineExtensionView-content-wrap.danger.ak-editor-selected-node>span>div>.extension-label.always-hide-label{opacity:0}
|
|
2936
2895
|
._l4vzglyw .ProseMirror .ProseMirror-gapcursor{pointer-events:none}
|
|
@@ -2953,7 +2912,6 @@
|
|
|
2953
2912
|
._limd1q9c [data-prosemirror-node-name=blockTaskItem] [data-component=placeholder]{white-space:nowrap}
|
|
2954
2913
|
._lkzl1n9t .ProseMirror .pm-table-wrapper table{table-layout:fixed}
|
|
2955
2914
|
._lm211rpy .ProseMirror span.pm-placeholder__text{color:var(--ds-text-subtlest,#6b6e76)}
|
|
2956
|
-
._lmfnvz0p .ProseMirror h5{font-size:.85714em}
|
|
2957
2915
|
._lnhebimv .ProseMirror .danger.code-block{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
2958
2916
|
._lnnb1rtt .inlineExtensionView-content-wrap.danger>span>div>.extension-label{background-color:var(--ds-background-accent-red-subtler,#ffd5d2)}
|
|
2959
2917
|
._lqso1o8l .ProseMirror blockquote{display:inline-block}
|
|
@@ -3008,7 +2966,6 @@
|
|
|
3008
2966
|
._muxp1rpy .ProseMirror .code-block .code-content__line-number--wrapped{color:var(--ds-text-subtlest,#6b6e76)}
|
|
3009
2967
|
._mxi51xf3 .search-match-block.ak-editor-selected-node .lozenge-wrapper{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db),0 0 0 4px var(--ds-background-accent-magenta-subtler,#fdd0ec),0 0 0 5px var(--ds-border-accent-magenta,#cd519d)}
|
|
3010
2968
|
._mxneidpf .bodiedExtensionView-content-wrap{margin-right:0}
|
|
3011
|
-
._myzt1kw7 .ProseMirror h1{font-style:inherit}
|
|
3012
2969
|
._mz7q1v6z .resizer-handle{width:7px}
|
|
3013
2970
|
._mzasidpf .fabric-editor-alignment:first-of-type:first-child h2 style:first-child+*{margin-top:0}
|
|
3014
2971
|
._mzo1idpf .pm-table-wrapper>table>tbody>tr>th{border-right-width:0}
|
|
@@ -3083,7 +3040,6 @@
|
|
|
3083
3040
|
._oaj1rsbi{--local-border-hover:var(--ds-border-input,#8c8f97)}
|
|
3084
3041
|
._oay31j28 .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]::selection{background-color:transparent}
|
|
3085
3042
|
._obfm1j28 .inlineCardView-content-wrap .card .loader-wrapper>a:focus::-moz-selection{background-color:transparent}
|
|
3086
|
-
._ocu01rwh{--editor-font-ugc-token-heading-h2:normal 500 1.42857em/1.2 ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
3087
3043
|
._ocu0mnnt{--editor-font-ugc-token-heading-h2:normal 600 1.42857em/1.2 "Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif}
|
|
3088
3044
|
._ocz2idpf :not(.fabric-editor-block-mark)>h1 style:first-child+*{margin-top:0}
|
|
3089
3045
|
._od11grf3 .ProseMirror li:has(>ul:only-child){margin-top:0!important}
|
|
@@ -3404,7 +3360,6 @@
|
|
|
3404
3360
|
._ue9bidpf .ProseMirror .danger.code-block .line-number-gutter:after{top:0}
|
|
3405
3361
|
._ufoh1lfe .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{transition-timing-function:ease-out,ease-out}
|
|
3406
3362
|
._ug3m1nu9 .ProseMirror span.pm-placeholder__text[data-placeholder]:after{display:inline}
|
|
3407
|
-
._uh5u1pd9 .ProseMirror h4{font-weight:var(--ds-font-weight-semibold,600)}
|
|
3408
3363
|
._ui89idpf .ProseMirror li>.code-block{margin-left:0}
|
|
3409
3364
|
._ujemidpf .fabric-editor-alignment:first-of-type:first-child h1 style:first-child+*{margin-top:0}
|
|
3410
3365
|
._ujyhidpf .bodiedExtensionView-content-wrap.danger.ak-editor-selected-node>span>div>.extension-label.always-hide-label{opacity:0}
|
|
@@ -3554,7 +3509,6 @@
|
|
|
3554
3509
|
._x0l08jkm .ProseMirror .ak-editor-sync-block .ak-editor-sync-block__renderer{padding-left:19px}
|
|
3555
3510
|
._x1d2idpf .fabric-editor--full-width-mode .ProseMirror [data-layout-section] .pm-table-container{margin-bottom:0}
|
|
3556
3511
|
._x3di14vx .ProseMirror h2{margin-top:1.4em}
|
|
3557
|
-
._x3dis0v8 .ProseMirror h2{margin-top:1.8em}
|
|
3558
3512
|
._x6bu11lh .ProseMirror .ProseMirror-fake-text-selection{color:HighlightText}
|
|
3559
3513
|
._x74zidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]:after{height:0}
|
|
3560
3514
|
._x81614y2 .ProseMirror .ak-editor-annotation-blur:has(.card){padding-top:5px}
|
|
@@ -3570,7 +3524,6 @@
|
|
|
3570
3524
|
._xldsidpf .ProseMirror .code-block{margin-bottom:0}
|
|
3571
3525
|
._xlm615cr .ProseMirror .telepointer.color-4{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
3572
3526
|
._xm1gtlke [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]{cursor:pointer}
|
|
3573
|
-
._xmetlpk9 .ProseMirror h6{line-height:1.45455}
|
|
3574
3527
|
._xpqwidpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]>div{margin-left:0}
|
|
3575
3528
|
._xqgtidpf .ProseMirror .rich-media-item.image-wrap-left+.rich-media-item.image-wrap-right{margin-right:0}
|
|
3576
3529
|
._xrkseawv .search-match-block.search-match-dark.ak-editor-sync-block.ak-editor-selected-node{background-color:var(--ds-background-accent-magenta-bolder-pressed,#77325b)}
|
|
@@ -166,7 +166,6 @@ var editorContentStyles = {
|
|
|
166
166
|
blocktypeStyles: "_6st2oqnp _g09oidpf _19vkidpf _17vdidpf _1gtxusvi _1htf1kw7 _a3pn1osq _lqso1o8l _19v7idpf _oql5idpf _1w3ipxbi _1sz21dm9 _1nehnqa1 _95mn1l7x _1ezqidpf _s6l1pxbi _1j9eidpf _ymd7b3bt _1cbmglyw _ew481ule _104r17hw _1mzi17hw _15l01ule _12lj1ule _q4ju1ule _yqzd1ule _1ohls05q _13dhs0v8 _1qup44jv _mhqkq19t _fziqs05q _12sp1aa5 _ab5gidpf _10u5idpf _f850idpf",
|
|
167
167
|
blocktypeStyles_fg_platform_editor_nested_dnd_styles_changes: "_t9o3v47k _iqu9pxbi",
|
|
168
168
|
blocktypeStyles_fg_platform_editor_typography_ugc: "_1nit1gso _rec2idpf _140c15tv _f50o1j5o _dkhuhd14 _3kuhidpf _x3di14vx _as951j5o _1wg21bjq _1hijidpf _apdb1t5o _wylb1j5o _1i421gfe _k3ws1xfb _h0b91j5o _1uvf1sei _1wzi15tv _qg7oglyw _180c1j5o _a4utehg4 _1dzb6yhe _1k54glyw _pgjg1j5o",
|
|
169
|
-
blocktypeStyles_without_fg_platform_editor_typography_ugc: "_7yqie01w _myzt1kw7 _1xm41tc5 _1tzri7uo _f3d81wq8 _5mgiz5jk _rec2idpf _140cs05q _1nip1bvj _1hmq1kw7 _1cllcjiy _jt2ui7uo _cah11wq8 _1yh6vkfx _x3dis0v8 _3kuhidpf _emxw59la _17rf1kw7 _1lng10nf _l2nti7uo _1wfa1pd9 _1cs1qdok _apdb44jv _1hijidpf _1mlf1x4e _138n1kw7 _f5pc1xde _coici7uo _uh5u1pd9 _1blq44hb _k3wsq19t _lmfnvz0p _1eut1kw7 _1hxvye00 _1fyni7uo _12rk1pd9 _1wzis05q _qg7oglyw _cnsrx6qu _1ot51kw7 _xmetlpk9 _14jf1rpy _17m4wu06 _1dzb1aa5 _1k54glyw",
|
|
170
169
|
codeBlockStyles: "_rv60kb7n _fcmlkb7n _yh39f1ug _1mel1txw _124dkb7n _1wjzqvpr _qt48fajl _s5gzoqnp _at5bidpf _xldsidpf _ano2idpf _1jp6fajl _1vnn1kew _1wdeh2mm _vln5i8nm _123d1txw _19pw1osq _1uue1mxr _18hp1wug _de6kmgnk _ald71cn9 _ip0144v4 _6w9s1o0l _1m9i15vq _1pyru2gc _1y79i8nm _1sg0h2mm _ou5ucuwt _19wyidpf _puavoxwj _155d1ntv _1xgih8dc _c4n5glyw _m7kfglyw _1m67cuwt _48wmidpf _rhzrstnw _tucgoxwj _7q4h1k8s _1sgkusic _muxp1rpy _uq761ntv _1744h2mm _rv0ahp5a _1y8rzzfg _d19zckbl _4ryltlke _aneu1hrf _e8554jg8 _1s981isi _1r0kstnw _i2t315vq _aatx1k8s _4nofidpf _1y3zidpf _6udpstnw _4b4b15vq _1op21k8s _1ljoidpf _1wysidpf _abre6hgr _1r6r15vq _o85roxwj _uazj1k8s _hdw8fajl _16iru2gc _hleuegat _1itz1kdv _c7r7i7uo _19kmoxwj _1rjz1k8s _44nb1j28 _ayedr4us _vpdlh2mm _fmi51kdv _45xostnw _vlc6b3bt _ncseidpf _cfapidpf _4l45idpf _eaptidpf _1bao1osq _812dglyw _u96x1ial _vi8r7wq0 _ffe41j28 _msbp1j28 _4ae31j28 _kfw11j28 _yv3iu2gc _1xtl1ule _1fh01hna _1lr11jtm _naf3oqnp _o60fidpf _3t04idpf _ui89idpf _1de7idpf _1lezidpf _11acoqnp _lr83oqnp _lnhebimv _jvh11gly _16nl1tmw _1fyh1osq _80qob3bt _qgcnstnw _1rakidpf _ue9bidpf _90e31tcg _ja1jrprw _pdshrprw _15ve1gly _b0ld1tmw _s6jz1osq _12qtb3bt _12dbstnw _ce0yidpf _1jh6idpf _ndx01tcg _ytehrprw _i521rprw",
|
|
171
170
|
codeBlockStylesWithEmUnits: "_1af5ok4x _1cbn1q5e _19km1wqq _1rjz1q5e",
|
|
172
171
|
codeMarkStyles: "_59uzyh40 _6p44m5ip _1i9tyh40 _2lvxm5ip _9g7rfajl _1iyw1wug _syi51wug _pwh8glyw _af7gi8nm _1bsc1nu9 _1atv187e _1srjqvcn _z49mi7uo _95t2zzfg _ri7p1wqq _5061i7a9 _9ef31hna _or5e1jtm",
|
|
@@ -186,7 +185,6 @@ var editorContentStyles = {
|
|
|
186
185
|
editorLargeGutterPuddingBaseStyles: "_1vk21ex1",
|
|
187
186
|
editorLargeGutterPuddingBaseStylesEditorControls: "_1vk2t9kd",
|
|
188
187
|
editorLargeGutterPuddingReducedBaseStyles: "_lh101tcg",
|
|
189
|
-
editorUGCTokensDefault: "_da23275c _ocu01rwh _2s1dh9f3 _15hx9q8f _1qs3ddzq _1u7xm9w9 _1g2sncm8 _11d01fw0",
|
|
190
188
|
editorUGCTokensRefreshed: "_da23111w _ocu0mnnt _2s1d1xgx _15hxe8o0 _1qs312nz _1u7x1v8p _1g2st7zq _11d01fw0",
|
|
191
189
|
editorUGCSmallText: "_1v2gnkc8",
|
|
192
190
|
embedCardStyles: "_bxhh1osq _1xquh2mm _1do8cs5v _15no1e5h _z75ousic _197w1hrf",
|
|
@@ -399,13 +397,13 @@ var EditorContentContainerCompiled = exports.EditorContentContainerCompiled = /*
|
|
|
399
397
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
400
398
|
className: (0, _runtime.ax)([editorContentStyles.baseStyles, editorContentStyles.maxModeReizeFixStyles, editorContentStyles.baseStylesMaxContainerWidthFixes, (0, _platformFeatureFlags.fg)('platform_editor_controls_increase_full_page_gutter') && (0, _experiments.editorExperiment)('platform_editor_controls', 'variant1') ? editorContentStyles.editorLargeGutterPuddingBaseStylesEditorControls : editorContentStyles.editorLargeGutterPuddingBaseStyles, (0, _experiments.editorExperiment)('platform_editor_preview_panel_responsiveness', true, {
|
|
401
399
|
exposure: true
|
|
402
|
-
}) && editorContentStyles.editorLargeGutterPuddingReducedBaseStyles, editorContentStyles.whitespaceStyles, editorContentStyles.indentationStyles, (0, _expValEquals.expValEquals)('platform_editor_small_font_size', 'isEnabled', true) && editorContentStyles.fontSizeStyles, editorContentStyles.shadowStyles, editorContentStyles.InlineNodeViewSharedStyles, editorContentStyles.hideSelectionStyles, editorContentStyles.hideCursorWhenHideSelectionStyles, editorContentStyles.selectedNodeStyles, editorContentStyles.cursorStyles, editorContentStyles.firstFloatingToolbarButtonStyles, editorContentStyles.placeholderTextStyles, editorContentStyles.placeholderStyles, (0, _experiments.editorExperiment)('platform_editor_controls', 'variant1') && editorContentStyles.placeholderOverflowStyles, (0, _experiments.editorExperiment)('platform_editor_controls', 'variant1') && (0, _platformFeatureFlags.fg)('platform_editor_quick_insert_placeholder') && editorContentStyles.placeholderWrapStyles, editorContentStyles.codeBlockStyles, contentMode === 'compact' && editorContentStyles.codeBlockStylesWithEmUnits,
|
|
400
|
+
}) && editorContentStyles.editorLargeGutterPuddingReducedBaseStyles, editorContentStyles.whitespaceStyles, editorContentStyles.indentationStyles, (0, _expValEquals.expValEquals)('platform_editor_small_font_size', 'isEnabled', true) && editorContentStyles.fontSizeStyles, editorContentStyles.shadowStyles, editorContentStyles.InlineNodeViewSharedStyles, editorContentStyles.hideSelectionStyles, editorContentStyles.hideCursorWhenHideSelectionStyles, editorContentStyles.selectedNodeStyles, editorContentStyles.cursorStyles, editorContentStyles.firstFloatingToolbarButtonStyles, editorContentStyles.placeholderTextStyles, editorContentStyles.placeholderStyles, (0, _experiments.editorExperiment)('platform_editor_controls', 'variant1') && editorContentStyles.placeholderOverflowStyles, (0, _experiments.editorExperiment)('platform_editor_controls', 'variant1') && (0, _platformFeatureFlags.fg)('platform_editor_quick_insert_placeholder') && editorContentStyles.placeholderWrapStyles, editorContentStyles.codeBlockStyles, contentMode === 'compact' && editorContentStyles.codeBlockStylesWithEmUnits, editorContentStyles.editorUGCTokensRefreshed, (0, _expValEquals.expValEquals)('platform_editor_small_font_size', 'isEnabled', true) && editorContentStyles.editorUGCSmallText, editorContentStyles.blocktypeStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true, {
|
|
403
401
|
exposure: true
|
|
404
402
|
}) && editorContentStyles.blockquoteSelectedNodeStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true, {
|
|
405
403
|
exposure: true
|
|
406
404
|
}) && editorContentStyles.listSelectedNodeStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true, {
|
|
407
405
|
exposure: true
|
|
408
|
-
}) && editorContentStyles.textSelectedNodeStyles,
|
|
406
|
+
}) && editorContentStyles.textSelectedNodeStyles, editorContentStyles.blocktypeStyles_fg_platform_editor_typography_ugc, (0, _platformFeatureFlags.fg)('platform_editor_nested_dnd_styles_changes') && editorContentStyles.blocktypeStyles_fg_platform_editor_nested_dnd_styles_changes, editorContentStyles.codeMarkStyles, (0, _expValEquals.expValEquals)('platform_editor_a11y_scrollable_region', 'isEnabled', true) && editorContentStyles.codeMarkStylesA11yFix, editorContentStyles.textColorStyles, editorContentStyles.backgroundColorStyles, !(0, _expValEquals.expValEquals)('platform_editor_lovability_text_bg_color', 'isEnabled', true) && editorContentStyles.highlightLinksUnsetStyles, editorContentStyles.textHighlightPaddingStyles, editorContentStyles.listsStyles, (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_flexible_list_schema', 'isEnabled', true) && editorContentStyles.listItemHiddenMarkerStyles, editorContentStyles.diffListStyles, contentMode === 'compact' && isDense && editorContentStyles.listsDenseStyles, isFullPage && editorContentStyles.listsStylesMarginLayoutShiftFix, editorContentStyles.ruleStyles, editorContentStyles.smartCardDiffStyles, (0, _expValEquals.expValEquals)('platform_editor_enghealth_a11y_jan_fixes', 'isEnabled', true) ? editorContentStyles.showDiffDeletedNodeStylesNew : editorContentStyles.showDiffDeletedNodeStyles, editorContentStyles.mediaStyles, contentMode === 'compact' && editorContentStyles.mediaCaptionStyles, (0, _platformFeatureFlags.fg)('platform_editor_fix_media_in_renderer') && editorContentStyles.firstWrappedMediaStyles, editorContentStyles.telepointerStyle, /* This needs to be after telepointer styles as some overlapping rules have equal specificity, and so the order is significant */
|
|
409
407
|
editorContentStyles.telepointerColorAndCommonStyle, editorContentStyles.gapCursorStyles, (0, _experiments.editorExperiment)('platform_synced_block', true) && editorContentStyles.gapCursorStylesVisibilityFix, editorContentStyles.panelStyles, editorContentStyles.nestedPanelBorderStylesMixin, (0, _platformFeatureFlags.fg)('platform_editor_nested_dnd_styles_changes') && editorContentStyles.panelStylesMixin_fg_platform_editor_nested_dnd_styles_changes, editorContentStyles.panelStylesMixin, editorContentStyles.mentionsStyles, editorContentStyles.tasksAndDecisionsStyles, contentMode === 'compact' && isDense && editorContentStyles.tasksAndDecisionsDenseStyles, editorContentStyles.gridStyles, editorContentStyles.blockMarksStyles, editorContentStyles.dateStyles, editorContentStyles.extensionStyles, contentMode === 'compact' && editorContentStyles.extensionStylesDense, (0, _expValEquals.expValEquals)('platform_editor_bodiedextension_layoutshift_fix', 'isEnabled', true) && editorContentStyles.bodiedExtensionLayoutShiftFix, editorContentStyles.extensionDiffStyles, editorContentStyles.expandStylesBase, !useStandardNodeWidth && editorContentStyles.expandStyles, contentMode === 'compact' && isDense && editorContentStyles.expandDenseStyles, (0, _platformFeatureFlags.fg)('platform_editor_nested_dnd_styles_changes') ? editorContentStyles.expandStylesMixin_fg_platform_editor_nested_dnd_styles_changes : editorContentStyles.expandStylesMixin_without_fg_platform_editor_nested_dnd_styles_changes, editorContentStyles.expandStylesMixin_fg_platform_visual_refresh_icons, isChromeless && editorContentStyles.expandStylesMixin_chromeless_expand_fix, (0, _expValEquals.expValEquals)('platform_editor_find_and_replace_improvements', 'isEnabled', true) ? editorContentStyles.findReplaceStylesNewWithA11Y : editorContentStyles.findReplaceStyles, (0, _expValEquals.expValEquals)('platform_editor_find_and_replace_improvements', 'isEnabled', true) && editorContentStyles.findReplaceStylesNewWithCodeblockColorContrastFix, !(0, _expValEquals.expValEquals)('platform_editor_find_and_replace_improvements', 'isEnabled', true) && editorContentStyles.findReplaceStylesWithCodeblockColorContrastFix, (0, _experiments.editorExperiment)('platform_synced_block', true) && editorContentStyles.findReplaceStylesWithRefSyncBlock, editorContentStyles.textHighlightStyle, editorContentStyles.decisionStyles, (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_blocktaskitem_node_tenantid', 'isEnabled', true) ? editorContentStyles.taskItemStylesWithBlockTaskItem : editorContentStyles.taskItemStyles, editorContentStyles.taskItemCheckboxStyles, editorContentStyles.decisionIconWithVisualRefresh, editorContentStyles.statusStyles, (0, _platformFeatureFlags.fg)('platform-dst-lozenge-tag-badge-visual-uplifts') ? editorContentStyles.statusStylesTeam26 : (0, _platformFeatureFlags.fg)('platform-component-visual-refresh') ? (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_find_and_replace_improvements', 'isEnabled', true) ? editorContentStyles.statusStylesMixin_fg_platform_component_visual_refresh_with_search_match : editorContentStyles.statusStylesMixin_fg_platform_component_visual_refresh : (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_find_and_replace_improvements', 'isEnabled', true) ? editorContentStyles.statusStylesMixin_without_fg_platform_component_visual_refresh_with_search_match : editorContentStyles.statusStylesMixin_without_fg_platform_component_visual_refresh, colorMode === 'dark' && (0, _platformFeatureFlags.fg)('platform-dst-lozenge-tag-badge-visual-uplifts') && editorContentStyles.statusStylesTeam26DarkMode, editorContentStyles.annotationStyles, (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_find_and_replace_improvements', 'isEnabled', true) ? (0, _experiments.editorExperiment)('platform_editor_block_menu', true) ? editorContentStyles.smartCardStylesWithSearchMatchAndBlockMenuDangerStyles : editorContentStyles.smartCardStylesWithSearchMatch : editorContentStyles.smartCardStyles, (0, _experiments.editorExperiment)('platform_editor_preview_panel_responsiveness', true) && editorContentStyles.smartCardStylesWithSearchMatchAndPreviewPanelResponsiveness, ((0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_controls', 'cohort', 'variant1') || (0, _experiments.editorExperiment)('platform_editor_preview_panel_linking_exp', true)) && editorContentStyles.editorControlsSmartCardStyles, editorContentStyles.embedCardStyles, editorContentStyles.unsupportedStyles, editorContentStyles.resizerStyles, (0, _expValEqualsNoExposure.expValEqualsNoExposure)('cc-maui-experiment', 'isEnabled', true) && (0, _expValEquals.expValEquals)('databases-native-embeds-v2', 'isEnabled', true) && editorContentStyles.resizerBottomHandleStyles, editorContentStyles.layoutBaseStyles, (0, _expValEquals.expValEquals)('platform_editor_table_excerpts_fix', 'isEnabled', true) && editorContentStyles.layoutBaseStylesWithTableExcerptsFix, (0, _platformFeatureFlags.fg)('platform_editor_fix_media_in_renderer') && editorContentStyles.alignMultipleWrappedImageInLayoutStyles, (0, _experiments.editorExperiment)('platform_synced_block', true) && editorContentStyles.syncBlockStylesBase, (0, _experiments.editorExperiment)('platform_synced_block', true) &&
|
|
410
408
|
// Apply sync block delta styles conditionally based on useStandardNodeWidth (negative margins or not)
|
|
411
409
|
!useStandardNodeWidth && editorContentStyles.syncBlockStyles, (0, _experiments.editorExperiment)('platform_synced_block', true) && editorContentStyles.syncBlockOverflowStyles, (0, _experiments.editorExperiment)('platform_synced_block', true) && editorContentStyles.syncBlockFirstNodeStyles, (0, _experiments.editorExperiment)('platform_synced_block', true) && (0, _platformFeatureFlags.fg)('platform_synced_block_patch_14') && editorContentStyles.syncBlockTextSelectionStyles, isSyncBlockActivationEnabled && (0, _experiments.editorExperiment)('platform_synced_block', true) && editorContentStyles.syncBlockInteractiveCursorStyles, (0, _experiments.editorExperiment)('advanced_layouts', true) && editorContentStyles.layoutBaseStylesAdvanced, (0, _experiments.editorExperiment)('advanced_layouts', true) ? editorContentStyles.layoutSectionStylesAdvanced : editorContentStyles.layoutSectionStylesNotAdvanced, (0, _experiments.editorExperiment)('advanced_layouts', true) && (0, _experiments.editorExperiment)('platform_editor_layout_column_resize_handle', true) && editorContentStyles.layoutColumnDividerStyles, (0, _experiments.editorExperiment)('advanced_layouts', true) && (0, _experiments.editorExperiment)('platform_editor_layout_column_resize_handle', true) && (0, _platformFeatureFlags.fg)('platform_editor_nested_dnd_styles_changes') && editorContentStyles.layoutColumnDividerStylesNestedDnD, (0, _experiments.editorExperiment)('advanced_layouts', true) ? editorContentStyles.layoutColumnStylesAdvanced : editorContentStyles.layoutColumnStylesNotAdvanced, (0, _experiments.editorExperiment)('advanced_layouts', true) && (0, _experiments.editorExperiment)('platform_editor_layout_column_resize_handle', true) && editorContentStyles.layoutColumnResizeStyles, (0, _experiments.editorExperiment)('advanced_layouts', true) ? editorContentStyles.layoutSelectedStylesAdvanced : editorContentStyles.layoutSelectedStylesNotAdvanced, (0, _experiments.editorExperiment)('platform_synced_block', true) && editorContentStyles.layoutSelectedStylesAdvancedFix, (0, _experiments.editorExperiment)('advanced_layouts', true) && editorContentStyles.layoutColumnResponsiveStyles, (0, _experiments.editorExperiment)('advanced_layouts', true) && editorContentStyles.layoutResponsiveBaseStyles, (0, _experiments.editorExperiment)('platform_synced_block', true) && (0, _platformFeatureFlags.fg)('platform_editor_nested_dnd_styles_changes') && editorContentStyles.layoutBaseStylesFixesUnderNestedDnDFGExcludingBodiedSync, !(0, _experiments.editorExperiment)('platform_synced_block', true) && (0, _platformFeatureFlags.fg)('platform_editor_nested_dnd_styles_changes') && editorContentStyles.layoutBaseStylesFixesUnderNestedDnDFG, (0, _platformFeatureFlags.fg)('platform_editor_nested_dnd_styles_changes') ? editorContentStyles.layoutColumnMartinTopFixesNew : editorContentStyles.layoutColumnMartinTopFixesOld, editorContentStyles.smartLinksInLivePagesStyles, editorContentStyles.linkingVisualRefreshV1Styles, editorContentStyles.dateVanillaStyles, (0, _platformFeatureFlags.fg)('platform_editor_typography_ugc') ? contentMode === 'compact' ? editorContentStyles.paragraphStylesWithScaledMargin : editorContentStyles.paragraphStylesUGCRefreshed : contentMode === 'compact' ? editorContentStyles.paragraphStylesOldWithScaledMargin : editorContentStyles.paragraphStylesOld, editorContentStyles.linkStyles, browser.safari && editorContentStyles.listsStylesSafariFix, (0, _experiments.editorExperiment)('platform_synced_block', true) && editorContentStyles.pragmaticResizerStylesSyncedBlock, (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_breakout_resizing', 'isEnabled', true) && editorContentStyles.pragmaticResizerStyles, (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_breakout_resizing', 'isEnabled', true) && (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_lovability_resize_dividers_panels', 'isEnabled', true) && editorContentStyles.pragmaticResizerStylesPanelAndRule, (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_breakout_resizing', 'isEnabled', true) && (0, _experiments.editorExperiment)('platform_synced_block', true) && editorContentStyles.pragmaticResizerStylesCodeBlockSyncedBlockPatch, (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_breakout_resizing', 'isEnabled', true) && !(0, _experiments.editorExperiment)('platform_synced_block', true) && editorContentStyles.pragmaticResizerStylesCodeBlockLegacy, (0, _experiments.editorExperiment)('advanced_layouts', true) && (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_breakout_resizing', 'isEnabled', true) && editorContentStyles.pragmaticStylesLayoutFirstNodeResizeHandleFix, (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_breakout_resizing', 'isEnabled', true) && editorContentStyles.pragmaticResizerStylesForTooltip, (0, _experiments.editorExperiment)('platform_editor_preview_panel_responsiveness', true) && ((0, _experiments.editorExperiment)('advanced_layouts', true) || (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_breakout_resizing', 'isEnabled', true)) && editorContentStyles.pragmaticResizerStylesWithReducedEditorGutter, editorContentStyles.aiPanelBaseStyles, isFirefox && editorContentStyles.aiPanelBaseFirefoxStyles, colorMode === 'dark' && editorContentStyles.aiPanelDarkStyles, colorMode === 'dark' && isFirefox && editorContentStyles.aiPanelDarkFirefoxStyles, viewMode === 'view' && editorContentStyles.layoutStylesForView, viewMode === 'view' && (0, _experiments.editorExperiment)('advanced_layouts', true) && editorContentStyles.layoutSelectedStylesForViewAdvanced, viewMode === 'view' && (0, _experiments.editorExperiment)('advanced_layouts', false) && editorContentStyles.layoutSelectedStylesForViewNotAdvanced, viewMode === 'view' && (0, _experiments.editorExperiment)('advanced_layouts', true) && editorContentStyles.layoutResponsiveStylesForView, isComment && editorContentStyles.commentEditorStyles, isComment && editorContentStyles.tableCommentEditorStyles, (isComment || isChromeless) && (0, _platformFeatureFlags.fg)('platform_comment_container_query') && editorContentStyles.nonFullPageContainerTypeStyles, isFullPage && editorContentStyles.fullPageEditorStyles, isFullPage && editorContentStyles.scrollbarStyles, (0, _platformFeatureFlags.fg)('platform_editor_nested_dnd_styles_changes') ? editorContentStyles.firstCodeBlockWithNoMargin : editorContentStyles.firstCodeBlockWithNoMarginOld, editorContentStyles.firstBlockNodeStyles, (0, _experiments.editorExperiment)('platform_editor_first_node_fix', true) && editorContentStyles.firstNodeWidgetFixStyles, editorContentStyles.mentionNodeStyles, (0, _expValEqualsNoExposure.expValEqualsNoExposure)('platform_editor_find_and_replace_improvements', 'isEnabled', true) ? editorContentStyles.mentionsSelectionStylesWithSearchMatch : editorContentStyles.mentionsSelectionStyles, (0, _expValEquals.expValEquals)('platform_editor_lovability_emoji_scaling', 'isEnabled', true) ? editorContentStyles.scaledEmojiStyles : editorContentStyles.emojiStyles, contentMode === 'compact' && isDense && (0, _expValEquals.expValEquals)('platform_editor_lovability_emoji_scaling', 'isEnabled', true) && editorContentStyles.scaledEmojiDenseStyles, contentMode === 'compact' && isDense && !(0, _expValEquals.expValEquals)('platform_editor_lovability_emoji_scaling', 'isEnabled', true) && editorContentStyles.emojiDenseStyles, editorContentStyles.panelViewStyles, editorContentStyles.mediaGroupStyles, editorContentStyles.mediaAlignmentStyles, (0, _expValEquals.expValEquals)('platform_editor_small_font_size', 'isEnabled', true) ? editorContentStyles.tableLayoutFixesWithFontSize : editorContentStyles.tableLayoutFixes, editorContentStyles.tableContainerStyles, editorContentStyles.tableSharedStyle, (browser.gecko || browser.ie || browser.mac && browser.chrome) && editorContentStyles.tableSharedStyleBackgroundClipFix, (0, _expValEquals.expValEquals)('platform_editor_table_q4_loveability', 'isEnabled', true) ? editorContentStyles.tableSharedStyle_with_platform_editor_table_q4_loveability : editorContentStyles.tableSharedStyle_without_platform_editor_table_q4_loveability, (0, _expValEquals.expValEquals)('platform_editor_table_menu_updates', 'isEnabled', true) && editorContentStyles.tableSharedStyle_with_platform_editor_table_menu_updates, (0, _platformFeatureFlags.fg)('platform_editor_bordered_panel_nested_in_table') && editorContentStyles.tableSharedStyle_with_platform_editor_bordered_panel_nested_in_table, editorContentStyles.tableEmptyRowStyles, (0, _expValEquals.expValEquals)('platform_editor_table_q4_loveability', 'isEnabled', true) && (0, _platformFeatureFlags.fg)('platform_editor_table_q4_patch_1') && editorContentStyles.tableRoundedCornerStyles, (0, _expValEquals.expValEquals)('platform_editor_table_fit_to_content_auto_convert', 'isEnabled', true) && editorContentStyles.tableContentModeStyles, (0, _expValEquals.expValEquals)('platform_editor_table_fit_to_content_auto_convert', 'isEnabled', true) && (0, _platformFeatureFlags.fg)('platform_editor_table_nested_renderer_fix') && editorContentStyles.tableContentModeNestedTableStyles, editorContentStyles.hyperLinkFloatingToolbarStyles, editorContentStyles.selectionToolbarAnimationStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.blockquoteDangerStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.textDangerStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.listDangerStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.dangerDateStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.emojiDangerStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.mentionDangerStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.decisionDangerStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.statusDangerStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.dangerRuleStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.mediaDangerStyles, (0, _experiments.editorExperiment)('platform_editor_block_menu', true) && editorContentStyles.nestedPanelDangerStyles, isBlockSpacingEnabled && editorContentStyles.blockSpacingVarStyles, isBlockSpacingEnabled && isDense && editorContentStyles.blockSpacingVarScaledStyles, className || undefined]),
|
|
@@ -205,8 +205,6 @@ var EditorContentContainerEmotion = exports.EditorContentContainerEmotion = /*#_
|
|
|
205
205
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
206
206
|
contentMode === 'compact' && _codeBlockStyles.codeBlockStylesWithEmUnits,
|
|
207
207
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
208
|
-
!(0, _platformFeatureFlags.fg)('platform_editor_typography_ugc') && _editorUGCTokenStyles.editorUGCTokensDefault, (0, _platformFeatureFlags.fg)('platform_editor_typography_ugc') &&
|
|
209
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
210
208
|
_editorUGCTokenStyles.editorUGCTokensRefreshed,
|
|
211
209
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
212
210
|
(0, _expValEquals.expValEquals)('platform_editor_small_font_size', 'isEnabled', true) && _editorUGCTokenStyles.editorUGCSmallText,
|
|
@@ -225,11 +223,7 @@ var EditorContentContainerEmotion = exports.EditorContentContainerEmotion = /*#_
|
|
|
225
223
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
226
224
|
_blockTypeStyles.textSelectedNodeStyles,
|
|
227
225
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
228
|
-
(0, _platformFeatureFlags.fg)('
|
|
229
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
230
|
-
_blockTypeStyles.blocktypeStyles_fg_platform_editor_typography_ugc :
|
|
231
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
232
|
-
_blockTypeStyles.blocktypeStyles_without_fg_platform_editor_typography_ugc, (0, _platformFeatureFlags.fg)('platform_editor_nested_dnd_styles_changes') &&
|
|
226
|
+
_blockTypeStyles.blocktypeStyles_fg_platform_editor_typography_ugc, (0, _platformFeatureFlags.fg)('platform_editor_nested_dnd_styles_changes') &&
|
|
233
227
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
234
228
|
_blockTypeStyles.blocktypeStyles_fg_platform_editor_nested_dnd_styles_changes,
|
|
235
229
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|