@atlaskit/editor-core 221.11.0 → 221.12.0
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 +25 -0
- package/EditorContentContainer/package.json +10 -0
- package/dist/cjs/entry-points/EditorContentContainer.js +13 -0
- package/dist/cjs/ui/Appearance/FullPage/FullPageToolbarNext.js +19 -7
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +17 -47
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.js +10 -11
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-emotion.js +4 -8
- package/dist/cjs/ui/EditorContentContainer/styles/blockTypeStyles.js +1 -97
- package/dist/cjs/ui/EditorContentContainer/styles/dateStyles.js +16 -1
- package/dist/cjs/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +1 -21
- package/dist/cjs/ui/EditorContentContainer/styles/emoji.js +34 -0
- package/dist/cjs/ui/EditorContentContainer/styles/layout.js +10 -6
- package/dist/cjs/ui/EditorContentContainer/styles/mentions.js +14 -0
- package/dist/cjs/ui/EditorContentContainer/styles/statusStyles.js +14 -0
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/entry-points/EditorContentContainer.js +2 -0
- package/dist/es2019/ui/Appearance/FullPage/FullPageToolbarNext.js +17 -7
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +17 -47
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.js +10 -11
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-emotion.js +7 -11
- package/dist/es2019/ui/EditorContentContainer/styles/blockTypeStyles.js +0 -96
- package/dist/es2019/ui/EditorContentContainer/styles/dateStyles.js +14 -0
- package/dist/es2019/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +0 -20
- package/dist/es2019/ui/EditorContentContainer/styles/emoji.js +34 -0
- package/dist/es2019/ui/EditorContentContainer/styles/layout.js +9 -5
- package/dist/es2019/ui/EditorContentContainer/styles/mentions.js +14 -0
- package/dist/es2019/ui/EditorContentContainer/styles/statusStyles.js +14 -0
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/entry-points/EditorContentContainer.js +2 -0
- package/dist/esm/ui/Appearance/FullPage/FullPageToolbarNext.js +19 -7
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +17 -47
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.js +10 -11
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-emotion.js +7 -11
- package/dist/esm/ui/EditorContentContainer/styles/blockTypeStyles.js +0 -96
- package/dist/esm/ui/EditorContentContainer/styles/dateStyles.js +16 -1
- package/dist/esm/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +0 -20
- package/dist/esm/ui/EditorContentContainer/styles/emoji.js +34 -0
- package/dist/esm/ui/EditorContentContainer/styles/layout.js +9 -5
- package/dist/esm/ui/EditorContentContainer/styles/mentions.js +14 -0
- package/dist/esm/ui/EditorContentContainer/styles/statusStyles.js +14 -0
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/entry-points/EditorContentContainer.d.ts +1 -0
- 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/dist/types/ui/EditorContentContainer/styles/layout.d.ts +1 -0
- package/package.json +13 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 221.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`8c398862a4d1d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8c398862a4d1d) -
|
|
8
|
+
Add an `EditorContentContainer` entry point.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- [`161922d5b8cee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/161922d5b8cee) -
|
|
13
|
+
Fix editor tooltips affected by inline top-layer rendering. Table cell menu tooltips are no longer
|
|
14
|
+
constrained by the button background selector, and layout column drag handles now own their
|
|
15
|
+
wrapper layout without flattening the tooltip's visual surface.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
18
|
+
## 221.11.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- [`6a14c075f433a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6a14c075f433a) -
|
|
23
|
+
Always use refreshed UGC font tokens and new heading styles in editor content containers.
|
|
24
|
+
- [`ed6e0c3974d3c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ed6e0c3974d3c) -
|
|
25
|
+
EDITOR-7466 scope markdown preview toolbar preference to converted live pages
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
|
|
3
28
|
## 221.11.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-core/EditorContentContainer",
|
|
3
|
+
"main": "../dist/cjs/entry-points/EditorContentContainer.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/EditorContentContainer.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/EditorContentContainer.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/EditorContentContainer.d.ts"
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "EditorContentContainer", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _EditorContentContainer.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _EditorContentContainer = _interopRequireDefault(require("../ui/EditorContentContainer/EditorContentContainer"));
|
|
@@ -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, {
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
._14wj12b0 .ak-editor-expand__icon-button{border-radius:var(--ds-radius-small,4px)}
|
|
20
20
|
._150s1cgb .warning .rich-media-item .media-card-inline-player:after{border:1px solid var(--ds-border-warning,#e06c00)}
|
|
21
21
|
._157i1f61 .ProseMirror [data-prosemirror-node-name=bodiedSyncBlock] [data-layout-section]{margin:var(--ds-space-100,8px) -9pt 0}
|
|
22
|
+
._15gc1qfv .show-diff-atomic-inline-changed-emoji :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image,.emoji-common-emoji-unicode){outline:2px solid var(--show-diff-atomic-inline-changed-border-color)}
|
|
22
23
|
._15xd12b0 .show-diff-deleted-node-traditional .media-card-wrapper>div{border-radius:var(--ds-radius-small,4px)}
|
|
23
24
|
._165awrdo .danger .richMedia-resize-handle-right:after{background:var(--ds-icon-danger,#c9372c)!important}
|
|
24
25
|
._168ss4qr .resizer-item.resizer-handle-danger .resizer-handle-thumb{background:var(--ds-icon-danger,#c9372c)}
|
|
@@ -68,6 +69,7 @@
|
|
|
68
69
|
._1l4zlb4i .fabric-background-color-mark{border-radius:var(--ds-radius-xsmall,2px)}
|
|
69
70
|
._1m4qyvqg .pm-table-container>table:after{inset:-.5px}
|
|
70
71
|
._1mc7glyw .ak-editor-selected-node.unsupportedInlineView-content-wrap>span:nth-of-type(2):after{border:none}
|
|
72
|
+
._1mi81qi0 .show-diff-atomic-inline-changed-date{border-radius:var(--ds-radius-medium,6px)}
|
|
71
73
|
._1mml7qp0 .pm-table-container .pm-table-right-border{background:var(--ds-background-accent-gray-subtler,#dddee1)}
|
|
72
74
|
._1mx211so [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]+svg rect:first-of-type{transition:stroke .2s ease-in-out}
|
|
73
75
|
._1n0xibhp .ProseMirror .ak-editor-annotation-blur{background:var(--ds-background-accent-yellow-subtlest,#fef7c8)}
|
|
@@ -181,6 +183,7 @@
|
|
|
181
183
|
._cfrg12b0 .show-diff-deleted-node.show-diff-deleted-active .media-card-wrapper>div{border-radius:var(--ds-radius-small,4px)}
|
|
182
184
|
._cx2xutpp .ProseMirror [data-layout-section] [data-layout-column]{padding:var(--ds-space-150,9pt)}
|
|
183
185
|
._d10bhq3d .ProseMirror li>p:not(:first-child){margin:var(--ds-space-050,4px) 0 0 0}
|
|
186
|
+
._d3xw1qfv .show-diff-atomic-inline-changed-date{outline:2px solid var(--show-diff-atomic-inline-changed-border-color)}
|
|
184
187
|
._d8sss8vo .resizer-hover-zone.resizer-is-extended{padding:0 var(--ds-space-150,9pt)}
|
|
185
188
|
._db2z1b66 .search-match-block.ak-editor-sync-block{border-radius:var(--ds-space-050,4px)}
|
|
186
189
|
._dci5qo0w div[extensionType="com.atlassian.ai-blocks"]:after{background:linear-gradient(90deg,#0065ff,#0469ff 12%,#bf63f3 24%,#ffa900 48%,#bf63f3 64%,#0469ff 80%,#0065ff)}
|
|
@@ -190,6 +193,7 @@
|
|
|
190
193
|
._e2i01856 .editor-mention-primitive.mention-self{background:var(--ds-background-brand-bold,#1868db)}
|
|
191
194
|
._e3z7glyw .resizer-handle-track.none{background:none}
|
|
192
195
|
._e89f1v1w .pm-breakout-resize-handle-container--active .pm-breakout-resize-handle-thumb{background:var(--ds-border-focused,#4688ec)}
|
|
196
|
+
._ejgqlb4i .show-diff-atomic-inline-changed-emoji :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image,.emoji-common-emoji-unicode){border-radius:var(--ds-radius-xsmall,2px)}
|
|
193
197
|
._ev4yz97a .layout-column-divider-rail{transition:background-color .2s}
|
|
194
198
|
._exlk10ym .resizer-handle-track{transition:background-color .2s,visibility .2s,opacity .2s}
|
|
195
199
|
._eyk7fyzg .ak-editor-expand.ak-editor-selected-node:not(.danger){border:var(--ds-border-width,1px) solid var(--ds-border-selected,#1868db)}
|
|
@@ -503,7 +507,6 @@
|
|
|
503
507
|
._12qtb3bt .ProseMirror .danger .code-block .line-number-gutter:after{content:""}
|
|
504
508
|
._12qwgrf3 .ProseMirror .ak-editor-panel__content>.ProseMirror-widget:first-child+.code-block{margin-bottom:0!important}
|
|
505
509
|
._12rjidpf .ProseMirror .ak-editor-bodied-sync-block{margin-bottom:0}
|
|
506
|
-
._12rk1pd9 .ProseMirror h5{font-weight:var(--ds-font-weight-semibold,600)}
|
|
507
510
|
._12sp1aa5 .ProseMirror .fabric-editor-block-mark.fabric-editor-alignment:not(:first-child)>h6:first-child{margin-top:1.455em}
|
|
508
511
|
._12te1q9c .ProseMirror mark[data-type-ahead-query=true]:has(.placeholder-decoration-wrap){white-space:nowrap}
|
|
509
512
|
._12tyzjw7 .editor-mention-primitive{padding-right:.3em}
|
|
@@ -527,7 +530,6 @@
|
|
|
527
530
|
._13641bqt .ProseMirror blockquote.danger{border-left-color:var(--ds-border-danger,#e2483d)}
|
|
528
531
|
._1377r4us .ProseMirror .ak-editor-selected-node .emoji-common-emoji-unicode{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
529
532
|
._137bidpf [data-prosemirror-node-name=blockTaskItem] [data-component=content]{margin-left:0}
|
|
530
|
-
._138n1kw7 .ProseMirror h4{font-style:inherit}
|
|
531
533
|
._13az1kdv .ak-editor-panel.ak-editor-selected-node:not(.danger){-webkit-user-select:text}
|
|
532
534
|
._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
535
|
._13dhs0v8 .ProseMirror .fabric-editor-block-mark.fabric-editor-alignment:not(:first-child)>h2:first-child{margin-top:1.8em}
|
|
@@ -550,12 +552,12 @@
|
|
|
550
552
|
._13q91ypf .search-match-block.search-match-block-selected [data-smart-link-container=true]{box-shadow:inset 0 0 0 1px var(--ds-background-accent-magenta-bolder-hovered,#943d73),inset 0 0 0 4px var(--ds-background-accent-magenta-subtlest-pressed,#fcb6e1)}
|
|
551
553
|
._13qpkb7n .pm-table-sticky-wrapper>table:after{z-index:1}
|
|
552
554
|
._13skidpf .ProseMirror .decisionItemView-content-wrap{margin-top:0}
|
|
555
|
+
._13u41hqq .show-diff-atomic-inline-changed-mention{--show-diff-atomic-inline-changed-border-color:var(--ds-border-accent-purple,#af59e1)}
|
|
553
556
|
._13uz1j28 .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]::-moz-selection{background-color:transparent}
|
|
554
557
|
._13v3glyw .ak-editor-no-interaction #newFileExperienceWrapper{box-shadow:none}
|
|
555
558
|
._13y1kb7n .resizer-item:hover>.resizer-handle-wrapper>.resizer-handle{opacity:1}
|
|
556
559
|
._13zuidpf .ProseMirror .ak-editor-selected-node .emoji-common-emoji-unicode:before{top:0}
|
|
557
560
|
._140c15tv .ProseMirror h1{margin-top:1.45833em}
|
|
558
|
-
._140cs05q .ProseMirror h1{margin-top:1.667em}
|
|
559
561
|
._141u1hna [data-prosemirror-node-name=taskItem] [data-component=content]{word-wrap:break-word}
|
|
560
562
|
._144ruibq .ProseMirror .telepointer.color-0{--telepointer-participant-bg-color:var(--ds-background-accent-red-bolder,#c9372c)}
|
|
561
563
|
._146b1j28 .ak-editor-panel.ak-editor-selected-node:not(.danger)::-moz-selection{background-color:transparent}
|
|
@@ -575,7 +577,6 @@
|
|
|
575
577
|
._14igidpf [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=placeholder]{margin-bottom:0}
|
|
576
578
|
._14ijglyw .ProseMirror .placeholder-decoration{pointer-events:none}
|
|
577
579
|
._14j01n1a .ak-editor-expand.ak-editor-selected-node:not(.danger):after{right:-1px}
|
|
578
|
-
._14jf1rpy .ProseMirror h6{color:var(--ds-text-subtlest,#6b6e76)}
|
|
579
580
|
._14jm1ntv .pm-table-container>table hr{box-sizing:content-box}
|
|
580
581
|
._14l7idpf [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]{margin-left:0}
|
|
581
582
|
._14lv1jih .ProseMirror .extensionView-content-wrap{margin-top:var(--ak-editor-extension-block-spacing,.75rem)}
|
|
@@ -621,7 +622,6 @@
|
|
|
621
622
|
._15haglyw .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]{clear:none}
|
|
622
623
|
._15hdglyw .ak-editor-selected-node>[data-decision-wrapper]:before{pointer-events:none}
|
|
623
624
|
._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
625
|
._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
626
|
._15i0idpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child h4 style:first-child+*{margin-top:0}
|
|
627
627
|
._15kbidpf .bodiedExtensionView-content-wrap .extension-container .bodiedExtension-content-inner-wrapper{margin-bottom:0}
|
|
@@ -718,11 +718,9 @@
|
|
|
718
718
|
._17kl1wth .ProseMirror ul ul ul ul{list-style-type:disc}
|
|
719
719
|
._17lhgrf3 .ak-editor-panel__content>div[data-task-list-local-id]:first-child{margin-top:0!important}
|
|
720
720
|
._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
721
|
._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
722
|
._17qpt94y .ProseMirror .ak-editor-annotation-hover{padding-top:1px}
|
|
724
723
|
._17rd17vv .ProseMirror h1>.mediaInlineView-content-wrap>.media-inline-image-wrapper{transform:translateY(-3px)}
|
|
725
|
-
._17rf1kw7 .ProseMirror h3{font-style:inherit}
|
|
726
724
|
._17sv1q9c .ak-editor-expand:not(.ak-editor-expand__expanded) .ak-editor-expand__content{white-space:nowrap}
|
|
727
725
|
._17thtlke .ProseMirror .ak-editor-bodied-sync-block{cursor:pointer}
|
|
728
726
|
._17v9idpf .pm-table-wrapper>table>tbody>tr>td{border-bottom-width:0}
|
|
@@ -858,6 +856,7 @@
|
|
|
858
856
|
._1af7idpf .fabric-editor-font-size:first-of-type:first-child .heading-wrapper style:first-child+*{margin-top:0}
|
|
859
857
|
._1afyidpf [layout=wrap-right]+.ProseMirror-gapcursor+span+[layout=wrap-left]+*{margin-top:0}
|
|
860
858
|
._1ag412c5 .ProseMirror .ProseMirror-gapcursor span:after{animation-iteration-count:infinite}
|
|
859
|
+
._1agdt94y .show-diff-atomic-inline-changed-date{outline-offset:1px}
|
|
861
860
|
._1aho1ejb .pm-table-container .pm-table-left-border{top:var(--ds-space-300,24px)}
|
|
862
861
|
._1ailojke .ProseMirror h2 .emoji-common-placeholder{width:22.25px}
|
|
863
862
|
._1aim1nu9 [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]+svg{display:inline}
|
|
@@ -872,6 +871,7 @@
|
|
|
872
871
|
._1ato5u61 .ProseMirror .ak-editor-bodied-sync-block.danger .ak-editor-sync-block__label>span{color:var(--ds-text-danger,#ae2e24)!important}
|
|
873
872
|
._1atv187e .code{background-color:var(--ds--code--bg-color,var(--ds-background-neutral,#0515240f))}
|
|
874
873
|
._1av3idpf :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) h6:first-child:not(style){margin-top:0}
|
|
874
|
+
._1awuxju9 .show-diff-atomic-inline-changed-status .lozenge-wrapper{box-shadow:0 0 0 2px var(--show-diff-atomic-inline-changed-border-color)}
|
|
875
875
|
._1ayiyh40 .fabric-editor--full-width-mode .ProseMirror [data-layout-section] .pm-table-container{margin-right:2px}
|
|
876
876
|
._1az4vuon .pm-table-container>table>tbody>tr>td{background-color:var(--ds-surface,#fff)}
|
|
877
877
|
._1azw1o8l .ak-editor-selected-node.unsupportedBlockView-content-wrap>div:after{display:inline-block}
|
|
@@ -900,7 +900,6 @@
|
|
|
900
900
|
._1bkq11dc .ProseMirror [data-layout-section]>[data-layout-column].ak-editor-selected-node:not(.danger):before{width:calc(100% - 8px)}
|
|
901
901
|
._1bkq1osq .ProseMirror [data-layout-section]>[data-layout-column].ak-editor-selected-node:not(.danger):before{width:100%}
|
|
902
902
|
._1blo4viv .code-block .search-match.selected-search-match span{color:var(--ds-text,#292a2e)!important}
|
|
903
|
-
._1blq44hb .ProseMirror h4{letter-spacing:-.003em}
|
|
904
903
|
._1bnfhteq [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]+svg rect:first-of-type{stroke:var(--checkbox-border-color)}
|
|
905
904
|
._1bnx1j28 .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]::selection{background-color:transparent}
|
|
906
905
|
._1bo71y6m .resizer-handle.left{align-items:flex-start}
|
|
@@ -948,7 +947,6 @@
|
|
|
948
947
|
._1cjx1sou .extensionView-content-wrap.danger>span>.legacy-content-header .status-lozenge-span>span{background-color:var(--ds-background-accent-red-subtle-hovered,#fd9891)}
|
|
949
948
|
._1ckw1h6o .fabric-editor-align-center{text-align:center}
|
|
950
949
|
._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
950
|
._1cma1osq [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]{height:100%}
|
|
953
951
|
._1cmi15ob div[extensionType="com.atlassian.ai-blocks"] .extension-container:before{background-size:200%}
|
|
954
952
|
._1cnfidpf .ProseMirror .ak-editor-sync-block .ak-editor-bodied-sync-block__content{padding-top:0}
|
|
@@ -960,7 +958,6 @@
|
|
|
960
958
|
._1crlidpf .blockCardView-content-wrap{margin-right:0}
|
|
961
959
|
._1crm1txw .pm-breakout-resize-handle-rail{display:flex}
|
|
962
960
|
._1crwidpf [data-prosemirror-node-name=taskItem] [data-component=content]{margin-top:0}
|
|
963
|
-
._1cs1qdok .ProseMirror h3{letter-spacing:-.006em}
|
|
964
961
|
._1cub16ux .ak-editor-selected-node.unsupportedBlockView-content-wrap>div:after{content:"\00a0"}
|
|
965
962
|
._1cvgidpf .ProseMirror .layout-section-container [data-layout-section]>.ProseMirror-widget+[data-layout-column]{margin-right:0}
|
|
966
963
|
._1cvqewfl .resizer-item:hover>.resizer-handle-wrapper>.resizer-handle{visibility:visible}
|
|
@@ -985,6 +982,7 @@
|
|
|
985
982
|
._1dcuglyw .ProseMirror table[data-initial-width-mode=content]>tbody>tr>:is(th,td) .pm-table-container>.pm-table-wrapper>table{max-width:none}
|
|
986
983
|
._1ddmu2gc .ProseMirror .ak-editor-panel{padding-top:var(--ds-space-100,8px)}
|
|
987
984
|
._1de7idpf .ProseMirror li>.ProseMirror-gapcursor:first-child+.code-block{margin-top:0}
|
|
985
|
+
._1de8t94y .show-diff-atomic-inline-changed-emoji :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image,.emoji-common-emoji-unicode){outline-offset:1px}
|
|
988
986
|
._1dh91osq .pm-breakout-resize-handle-rail{height:100%}
|
|
989
987
|
._1dik1q28{--local-border-checked-hover:var(--ds-background-selected-bold-hovered,#1558bc)}
|
|
990
988
|
._1div1j28 .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-column]::selection{background-color:transparent}
|
|
@@ -1013,7 +1011,6 @@
|
|
|
1013
1011
|
._1dx5idpf .ak-editor-expand__icon-button{margin-left:0}
|
|
1014
1012
|
._1dx5idpf .pm-breakout-resize-handle-hit-box{z-index:0}
|
|
1015
1013
|
._1dyh1l7b .ProseMirror .ak-editor-annotation-hover:has([data-inline-card]){padding-bottom:3px}
|
|
1016
|
-
._1dzb1aa5 .ProseMirror h6{margin-top:1.455em}
|
|
1017
1014
|
._1dzb6yhe .ProseMirror h6{margin-top:1.59091em}
|
|
1018
1015
|
._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
1016
|
._1e01v47k .ak-editor-content-area.appearance-full-page .ProseMirror .ak-editor-panel.ak-editor-panel__no-icon{padding-left:var(--ds-space-250,20px)}
|
|
@@ -1042,6 +1039,7 @@
|
|
|
1042
1039
|
._1edctxnc .show-diff-deleted-node.show-diff-deleted-active .media-card-wrapper>div{opacity:.8}
|
|
1043
1040
|
._1edridpf .pm-table-container>table>tbody>tr>th>:nth-child(1 of :not(style,.ProseMirror-gapcursor,.ProseMirror-widget,span)){margin-top:0}
|
|
1044
1041
|
._1egw15s3 .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-section]{background-color:var(--ds-background-selected,#e9f2fe)}
|
|
1042
|
+
._1eh71crs .show-diff-atomic-inline-changed-emoji.show-diff-atomic-inline-changed-traditional{--show-diff-atomic-inline-changed-border-color:var(--ds-border-accent-green,#22a06b)}
|
|
1045
1043
|
._1ehvglyw [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled+svg{pointer-events:none}
|
|
1046
1044
|
._1ehzidpf .ProseMirror .rich-media-item.image-wrap-right+.rich-media-item.image-wrap-left{margin-right:0}
|
|
1047
1045
|
._1ei91wug .pm-table-wrapper>table[data-autosize=true]{table-layout:auto}
|
|
@@ -1059,7 +1057,6 @@
|
|
|
1059
1057
|
._1euekb7n .ProseMirror .ak-editor-sync-block.user-is-dragging .ak-editor-sync-block__label{opacity:1}
|
|
1060
1058
|
._1eui1o36 .ProseMirror .placeholder-decoration .placeholder-android{outline-width:medium}
|
|
1061
1059
|
._1eus161g div[extensionType="com.atlassian.ai-blocks"] .extension-container:after{transform:translate3d(0,0,0)}
|
|
1062
|
-
._1eut1kw7 .ProseMirror h5{font-style:inherit}
|
|
1063
1060
|
._1ev3r4us .statusView-content-wrap.ak-editor-selected-node .status-lozenge-span>span{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
1064
1061
|
._1ev3w5lj .statusView-content-wrap.ak-editor-selected-node .status-lozenge-span>span{box-shadow:0 0 0 2px var(--ds-border-selected,#1868db)}
|
|
1065
1062
|
._1ev778tn .ak-editor-expand__title-input{line-height:1.714}
|
|
@@ -1115,14 +1112,12 @@
|
|
|
1115
1112
|
._1fxzidpf .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:before{right:0}
|
|
1116
1113
|
._1fyh1osq .ProseMirror .danger.code-block .line-number-gutter:after{height:100%}
|
|
1117
1114
|
._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
1115
|
._1fzc12et .ProseMirror .ak-editor-sync-block{margin-right:-19px}
|
|
1120
1116
|
._1fzu1j28 .ProseMirror.ProseMirror-hide-gapcursor{caret-color:transparent}
|
|
1121
1117
|
._1g0kmz2b [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:active+svg{--checkbox-background-color:var(--local-background-disabled)}
|
|
1122
1118
|
._1g12116y .ProseMirror .ak-editor-panel .ak-editor-panel__icon>span{display:inline-flex}
|
|
1123
1119
|
._1g1f1l7x{--local-border-active:var(--ds-border,#0b120e24)}
|
|
1124
1120
|
._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
1121
|
._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
1122
|
._1g35idpf .ProseMirror .ak-editor-annotation-hover:has(.card){padding-right:0}
|
|
1128
1123
|
._1g35idpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]+*{margin-top:0}
|
|
@@ -1194,7 +1189,6 @@
|
|
|
1194
1189
|
._1hmbexct [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=icon]{flex-basis:16px}
|
|
1195
1190
|
._1hmgv2br [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap{align-self:start}
|
|
1196
1191
|
._1hmn1j28 ol[data-node-type=decisionList].ak-editor-selected-node ::-moz-selection{background-color:transparent}
|
|
1197
|
-
._1hmq1kw7 .ProseMirror h2{font-style:inherit}
|
|
1198
1192
|
._1hmsewfl .ProseMirror .ak-editor-bodied-sync-block.ak-editor-bodied-sync-block__selection_inside .ak-editor-sync-block__label{visibility:visible}
|
|
1199
1193
|
._1hn6idpf .ProseMirror [data-layout-section]>[data-layout-column]:last-of-type{margin-right:0}
|
|
1200
1194
|
._1ho1yfq0 .pm-table-wrapper>table>tbody>tr>th[data-valign=bottom]{vertical-align:bottom}
|
|
@@ -1204,6 +1198,7 @@
|
|
|
1204
1198
|
._1hrr1n1a div[extensionType="com.atlassian.ai-blocks"] .extension-container:before{top:-1px}
|
|
1205
1199
|
._1hrzidpf :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) h5 style:first-child+*{margin-top:0}
|
|
1206
1200
|
._1hsl1osq .ProseMirror .mediaSingleView-content-wrap[layout^=wrap-]{max-width:100%}
|
|
1201
|
+
._1hsp1crs .show-diff-atomic-inline-changed-status.show-diff-atomic-inline-changed-traditional{--show-diff-atomic-inline-changed-border-color:var(--ds-border-accent-green,#22a06b)}
|
|
1207
1202
|
._1ht3idpf .ProseMirror .ak-editor-selected-node .emoji-common-emoji-unicode:before{left:0}
|
|
1208
1203
|
._1htf1kw7 .ProseMirror blockquote{color:inherit}
|
|
1209
1204
|
._1hux1rtt .bodiedExtensionView-content-wrap.danger.ak-editor-selected-node>span>.extension-edit-toggle-container>.extension-edit-toggle{background-color:var(--ds-background-accent-red-subtler,#ffd5d2)}
|
|
@@ -1212,7 +1207,6 @@
|
|
|
1212
1207
|
._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
1208
|
._1hwxidpf .fabric-editor-font-size:first-of-type:first-child h4:first-child:not(style){margin-top:0}
|
|
1214
1209
|
._1hxi1j28 ol[data-node-type=decisionList].ak-editor-selected-node::selection{background-color:transparent}
|
|
1215
|
-
._1hxvye00 .ProseMirror h5{line-height:1.33333}
|
|
1216
1210
|
._1hy1bokp .pm-table-resizer-container{will-change:width,margin-left}
|
|
1217
1211
|
._1hy4nkob .pm-table-sticky-wrapper>table>tbody>tr>th[data-valign=middle]{vertical-align:middle}
|
|
1218
1212
|
._1hz91n9t .pm-table-wrapper>table{table-layout:fixed}
|
|
@@ -1366,7 +1360,6 @@
|
|
|
1366
1360
|
._1ljoidpf .ProseMirror .code-block .code-block--end{bottom:0}
|
|
1367
1361
|
._1lm915cr .ProseMirror .telepointer.color-6{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
1368
1362
|
._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
1363
|
._1lp9kb7n [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]{z-index:1}
|
|
1371
1364
|
._1lpf187o .ProseMirror .ak-editor-bodied-sync-block:has(.ak-editor-sync-block__error_state){background-color:var(--ds-background-disabled,#0515240f)}
|
|
1372
1365
|
._1lqhstnw .resizer-handle-thumb:focus:after{position:absolute}
|
|
@@ -1411,7 +1404,6 @@
|
|
|
1411
1404
|
._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
1405
|
._1mel1txw .ProseMirror .code-block-content-wrapper>.code-content{display:flex}
|
|
1413
1406
|
._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
1407
|
._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
1408
|
._1mnz1j28 .bodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container ::-moz-selection{background-color:transparent}
|
|
1417
1409
|
._1mok1kdv .ProseMirror .ak-editor-selected-node .emoji-common-emoji-unicode{-webkit-user-select:text}
|
|
@@ -1446,9 +1438,9 @@
|
|
|
1446
1438
|
._1nd9d6z3 .ProseMirror h2>:is(a,span[data-mark-type=border]) .media-inline-image-wrapper{height:31px}
|
|
1447
1439
|
._1ndtvuon .ProseMirror .ak-editor-sync-block.disabled .ak-editor-sync-block__label{background-color:var(--ds-surface,#fff)}
|
|
1448
1440
|
._1nehnqa1 .ProseMirror blockquote{border-left-style:solid}
|
|
1441
|
+
._1ngx1crs .show-diff-atomic-inline-changed-mention.show-diff-atomic-inline-changed-traditional{--show-diff-atomic-inline-changed-border-color:var(--ds-border-accent-green,#22a06b)}
|
|
1449
1442
|
._1nhdi8nm .danger .mentionView-content-wrap>span>span>span{background-color:var(--ds-background-neutral,#0515240f)}
|
|
1450
1443
|
._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
1444
|
._1njsh2mm [data-prosemirror-node-name=taskItem] [data-component=task-item-main]{position:relative}
|
|
1453
1445
|
._1nl0glyw .inlineExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label{box-shadow:none}
|
|
1454
1446
|
._1nl9idpf .ProseMirror .ak-editor-annotation-draft:has(.card){padding-right:0}
|
|
@@ -1513,7 +1505,6 @@
|
|
|
1513
1505
|
._1orf1b66 .ProseMirror li>ol{margin-top:var(--ds-space-050,4px)}
|
|
1514
1506
|
._1orf1tuv .ProseMirror li>ol{margin-top:max(0px,calc((var(--ak-editor-base-font-size, 1pc) - 13px)*1.33333))}
|
|
1515
1507
|
._1ot0vbgk .richMedia-resize-handle-left:after{height:4pc}
|
|
1516
|
-
._1ot51kw7 .ProseMirror h6{font-style:inherit}
|
|
1517
1508
|
._1otekb7n .ProseMirror .ak-editor-sync-block.ak-editor-selected-node .ak-editor-sync-block__label{opacity:1}
|
|
1518
1509
|
._1otj1rjc .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{transition-property:transform,opacity}
|
|
1519
1510
|
._1otoidpf .ak-editor-selected-node.unsupportedInlineView-content-wrap>span:nth-of-type(2):after{top:0}
|
|
@@ -1605,7 +1596,6 @@
|
|
|
1605
1596
|
._1qomidpf .ProseMirror .left-shadow:before{left:0}
|
|
1606
1597
|
._1qrtidpf .ProseMirror [data-mark-type=fragment]:nth-last-of-type(-n+2):not(:first-of-type)>.extensionView-content-wrap{margin-bottom:0}
|
|
1607
1598
|
._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
1599
|
._1qs3i7a9 .editor-mention-primitive{font-weight:var(--ds-font-weight-regular,400)}
|
|
1610
1600
|
._1qsab3bt .resizer-handle-thumb:focus:after{content:""}
|
|
1611
1601
|
._1quk1aqn .ProseMirror .pm-table-wrapper>table:hover::-webkit-scrollbar-thumb{background-color:var(--ds-background-neutral-bold,#292a2e)}
|
|
@@ -1744,19 +1734,18 @@
|
|
|
1744
1734
|
._1tytusvi .pm-table-container>table>tbody>tr>td[data-reaches-bottom]{background-clip:border-box}
|
|
1745
1735
|
._1tz91ial .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:before{z-index:12}
|
|
1746
1736
|
._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
1737
|
._1u0115vq .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]:after{visibility:hidden}
|
|
1749
1738
|
._1u09utpp .ProseMirror table .rich-media-item.image-wrap-right[data-layout]:first-child{margin-top:var(--ds-space-150,9pt)}
|
|
1750
1739
|
._1u19b3bt .ProseMirror.ua-chrome li>.mediaSingleView-content-wrap:before{content:""}
|
|
1751
1740
|
._1u1ft94y .ak-editor-expand:not(.ak-editor-expand__expanded) .ak-editor-expand__content{width:1px}
|
|
1752
1741
|
._1u29kb7n [data-prosemirror-node-name=blockTaskItem] [data-component=content]{flex-shrink:1}
|
|
1753
1742
|
._1u2ww31d .ProseMirror h3 .emoji-common-placeholder{height:20.25px}
|
|
1743
|
+
._1u361hqq .show-diff-atomic-inline-changed-status{--show-diff-atomic-inline-changed-border-color:var(--ds-border-accent-purple,#af59e1)}
|
|
1754
1744
|
._1u4a1ule .pm-table-container .pm-table-left-border{display:block}
|
|
1755
1745
|
._1u4aglyw .pm-table-container .pm-table-left-border{display:none}
|
|
1756
1746
|
._1u6pkb7n .extensionView-content-wrap.danger>span>div>.extension-label{opacity:1}
|
|
1757
1747
|
._1u701ule .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{display:block}
|
|
1758
1748
|
._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
1749
|
._1u7yidpf .ProseMirror [data-layout-section]>.layout-column-divider{flex-shrink:0}
|
|
1761
1750
|
._1u7ymz2b [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:focus+svg{--checkbox-background-color:var(--local-background-disabled)}
|
|
1762
1751
|
._1u8dp3kn div[extensionType="com.atlassian.ai-blocks"]:has(.streaming) .extension-container:after{animation-timing-function:linear}
|
|
@@ -1851,7 +1840,6 @@
|
|
|
1851
1840
|
._1wdeh2mm .ProseMirror .code-block .code-block-content-wrapper{position:relative}
|
|
1852
1841
|
._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
1842
|
._1wet1hna .editor-mention-primitive{word-break:break-word}
|
|
1854
|
-
._1wfa1pd9 .ProseMirror h3{font-weight:var(--ds-font-weight-semibold,600)}
|
|
1855
1843
|
._1wgaidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]+*>*{margin-top:0}
|
|
1856
1844
|
._1wgw13gf [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled+svg{cursor:not-allowed}
|
|
1857
1845
|
._1wh51v6z .resizer-handle.bottom .resizer-handle-track{height:7px}
|
|
@@ -1874,7 +1862,6 @@
|
|
|
1874
1862
|
._1wysidpf .ProseMirror .code-block .code-block--end{right:0}
|
|
1875
1863
|
._1wzd1t4y div[extensionType="com.atlassian.ai-blocks"] .extension-container .with-margin-styles{background-color:var(--ds-surface,#fff)!important}
|
|
1876
1864
|
._1wzi15tv .ProseMirror h5{margin-top:1.45833em}
|
|
1877
|
-
._1wzis05q .ProseMirror h5{margin-top:1.667em}
|
|
1878
1865
|
._1x09glyw .ProseMirror.ua-firefox .mediaSingleView-content-wrap{-webkit-user-select:none;-ms-user-select:none;user-select:none}
|
|
1879
1866
|
._1x187wq0 .ProseMirror .ak-editor-selected-node .emoji-common-emoji-sprite:before{background-color:var(--ds-blanket-selected,#388bff14)}
|
|
1880
1867
|
._1x2nt94y .ProseMirror .ak-editor-annotation-blur{padding-top:1px}
|
|
@@ -1906,7 +1893,6 @@
|
|
|
1906
1893
|
._1xkp16ch .ProseMirror h4 .emoji-common-placeholder{height:18.25px}
|
|
1907
1894
|
._1xktidpf .ProseMirror .ak-editor-annotation-focus:has([data-inline-card]){padding-left:0}
|
|
1908
1895
|
._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
1896
|
._1xm91l7b .ProseMirror .ak-editor-annotation-focus:has(.card){padding-bottom:3px}
|
|
1911
1897
|
._1xmbfeiv .ProseMirror .ak-editor-annotation-blur{border-bottom-color:var(--ds-border-accent-yellow,#b38600)}
|
|
1912
1898
|
._1xnzidpf .ak-editor-expand__icon-button{padding-bottom:0}
|
|
@@ -1952,7 +1938,6 @@
|
|
|
1952
1938
|
._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
1939
|
._1yg7azsu .ak-editor-selected-node>.editor-mention-primitive.mention-self{color:var(--ds-text-subtle,#505258)}
|
|
1954
1940
|
._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
1941
|
._1yi41osq .ProseMirror .ProseMirror-gapcursor span{height:100%}
|
|
1957
1942
|
._1yj9stnw .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-column]:after{position:absolute}
|
|
1958
1943
|
._1yjc1v1w{--local-border-focus:var(--ds-border-focused,#4688ec)}
|
|
@@ -2011,7 +1996,6 @@
|
|
|
2011
1996
|
._2qpjr4us .ak-editor-selected-node>.editor-mention-primitive{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
2012
1997
|
._2qpqidpf [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]{opacity:0}
|
|
2013
1998
|
._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
1999
|
._2s2x15vq [data-prosemirror-node-name=taskItem] [data-component=placeholder]{overflow-y:hidden}
|
|
2016
2000
|
._2ss61y2m .ProseMirror .telepointer.telepointer-pulse-during-tr .telepointer-initial{animation-duration:7.5s}
|
|
2017
2001
|
._2w21m0zr .ProseMirror [layout^=wrap-]+[layout^=wrap-]+h4{clear:both!important}
|
|
@@ -2158,7 +2142,6 @@
|
|
|
2158
2142
|
._5jm5h2mm .layout-column-divider{position:relative}
|
|
2159
2143
|
._5l361j28 .bodiedExtensionView-content-wrap.danger>span>.with-danger-overlay{background-color:transparent}
|
|
2160
2144
|
._5m891b66 .ProseMirror .telepointer.telepointer-selection-badge .telepointer-initial{padding-left:var(--ds-space-050,4px)}
|
|
2161
|
-
._5mgiz5jk .ProseMirror h1{letter-spacing:-.01em}
|
|
2162
2145
|
._5nd3r5cr .resizer-handle-thumb:focus:after{right:var(--ds-space-negative-050,-4px)}
|
|
2163
2146
|
._5o16utpp .pm-table-wrapper>table>tbody>tr>td th p:not(:first-of-type){margin-top:var(--ds-space-150,9pt)}
|
|
2164
2147
|
._5qeg1txw .pm-breakout-resize-handle-rail-wrapper{display:flex}
|
|
@@ -2272,7 +2255,6 @@
|
|
|
2272
2255
|
._7wwkkb7n .ProseMirror .ak-editor-sync-block.ak-editor-bodied-sync-block__selection_inside .ak-editor-sync-block__label{opacity:1}
|
|
2273
2256
|
._7xjx1ytf .ProseMirror .telepointer.telepointer-pulse-animate .telepointer-initial{animation-timing-function:ease-in-out}
|
|
2274
2257
|
._7xl8ckbl .pm-table-container>table>tbody>tr>td{min-width:3pc}
|
|
2275
|
-
._7yqie01w .ProseMirror h1{font-size:1.71429em}
|
|
2276
2258
|
._7z9f13gf [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled[data-invalid]+svg{cursor:not-allowed}
|
|
2277
2259
|
._802o12et .ProseMirror .ak-editor-bodied-sync-block{margin-right:-19px}
|
|
2278
2260
|
._80qob3bt .ProseMirror .danger.code-block .line-number-gutter:after{content:""}
|
|
@@ -2399,7 +2381,6 @@
|
|
|
2399
2381
|
._aoe7p1qy .ProseMirror h6>.mediaInlineView-content-wrap>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2400
2382
|
._aof7d439 .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{top:-14px}
|
|
2401
2383
|
._apdb1t5o .ProseMirror h3{margin-top:1.31249em}
|
|
2402
|
-
._apdb44jv .ProseMirror h3{margin-top:2em}
|
|
2403
2384
|
._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
2385
|
._ar4h1h6o .ak-editor-expand__title-container{align-items:center}
|
|
2405
2386
|
._as951j5o .ProseMirror h2 strong{font-weight:var(--editor-font-ugc-token-weight-heading-bold)}
|
|
@@ -2482,7 +2463,6 @@
|
|
|
2482
2463
|
._c9uhf1ug .ProseMirror [data-layout-section] [data-layout-column]{flex-basis:0%}
|
|
2483
2464
|
._ca0qv47k{padding-top:var(--ds-space-250,20px)}
|
|
2484
2465
|
._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
2466
|
._cajk14no .ProseMirror h1>.media-inline-image-wrapper{height:36px}
|
|
2487
2467
|
._caue1rpy .ak-editor-expand__title-input{color:var(--ds-text-subtlest,#6b6e76)}
|
|
2488
2468
|
._cbmx261p .ProseMirror .pm-table-wrapper table[data-initial-width-mode=content]>colgroup>col{width:unset!important}
|
|
@@ -2498,10 +2478,8 @@
|
|
|
2498
2478
|
._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
2479
|
._clq7grf3 div[extensiontype="com.atlassian.ai-blocks"][extensionkey="ai-action-items-block:aiActionItemsBodiedExtension"] div[data-node-type=actionList]{margin-bottom:0!important}
|
|
2500
2480
|
._cnga1w81 .ProseMirror .fabric-editor-indentation-mark[data-level="5"]{margin-left:150px}
|
|
2501
|
-
._cnsrx6qu .ProseMirror h6{font-size:.78571em}
|
|
2502
2481
|
._cnvup1qy .ProseMirror h6>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2503
2482
|
._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
2483
|
._cp58idpf .ProseMirror .layout-section-container [data-layout-section]>.ProseMirror-widget+[data-layout-column]{margin-bottom:0}
|
|
2506
2484
|
._crev1j28 .extensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container::-moz-selection{background-color:transparent}
|
|
2507
2485
|
._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 +2500,6 @@
|
|
|
2522
2500
|
._d90xmyb0 .richMedia-resize-handle-right{margin-right:-4px}
|
|
2523
2501
|
._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
2502
|
._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
2503
|
._da7in729 .ProseMirror .ak-editor-panel[data-panel-type=tip]{background-color:var(--ds-background-accent-green-subtlest,#dcfff1)}
|
|
2527
2504
|
._dafh1j28 .ak-editor-selected-node>.editor-mention-primitive::-moz-selection{background-color:transparent}
|
|
2528
2505
|
._dai01kxc .gridContainer{height:100vh}
|
|
@@ -2593,7 +2570,6 @@
|
|
|
2593
2570
|
._ek7i13gf [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:active+svg{cursor:not-allowed}
|
|
2594
2571
|
._ekb2stnw [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]{position:absolute}
|
|
2595
2572
|
._el4et94y [data-prosemirror-node-name=date] .date-lozenger-container span{margin-left:1px}
|
|
2596
|
-
._emxw59la .ProseMirror h3{font-size:1.14286em}
|
|
2597
2573
|
._enj9p1qy .ProseMirror h5>:is(a,span[data-mark-type=border]) .mediaInlineView-content-wrap>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2598
2574
|
._et2r17cl [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:checked+svg{--checkbox-tick-color:var(--local-tick-checked)}
|
|
2599
2575
|
._et601yvi .multiBodiedExtensionView-content-wrap.danger>span>.with-danger-overlay .multiBodiedExtension--overlay{background-color:var(--ds-background-danger-hovered,#ffd5d2)}
|
|
@@ -2611,12 +2587,10 @@
|
|
|
2611
2587
|
._ez6hglyw [data-blocks-drop-target-container]~[data-layout-column]>[data-layout-content]:before{display:none}
|
|
2612
2588
|
._f2dr1j28 .inlineExtensionView-content-wrap.danger>span>.with-danger-overlay{background-color:transparent}
|
|
2613
2589
|
._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
2590
|
._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
2591
|
._f4wb1b66 .ProseMirror .ak-editor-sync-block.danger .ak-editor-sync-block__label{padding-top:var(--ds-space-050,4px)}
|
|
2617
2592
|
._f50o1j5o .ProseMirror h1 strong{font-weight:var(--editor-font-ugc-token-weight-heading-bold)}
|
|
2618
2593
|
._f561cs5v .resizer-handle-thumb{z-index:2}
|
|
2619
|
-
._f5pc1xde .ProseMirror h4{line-height:1.14286}
|
|
2620
2594
|
._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
2595
|
._f6io10o2 .ProseMirror [data-layout-section]>[data-layout-column][style*="--column-width"]{flex-basis:var(--column-resize-width,var(--column-width))}
|
|
2622
2596
|
._f7p0b3bt .ProseMirror .ak-editor-selected-node .emoji-common-emoji-sprite:before{content:""}
|
|
@@ -2863,7 +2837,6 @@
|
|
|
2863
2837
|
._jr3h1wug .pm-table-sticky-wrapper>table[data-autosize=true]{table-layout:auto}
|
|
2864
2838
|
._js8cidpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]:after{font-size:0}
|
|
2865
2839
|
._js9kidpf .ProseMirror>.blockCardView-content-wrap:first-child{margin-top:0}
|
|
2866
|
-
._jt2ui7uo .ProseMirror h2{color:var(--ds-text,#292a2e)}
|
|
2867
2840
|
._jtpj1nu9 .ProseMirror .ProseMirror-fake-text-selection{display:inline}
|
|
2868
2841
|
._jtxaglyw [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=placeholder]{pointer-events:none}
|
|
2869
2842
|
._jv52utpp .richMedia-resize-handle-left{padding-left:var(--ds-space-150,9pt)}
|
|
@@ -2882,7 +2855,6 @@
|
|
|
2882
2855
|
._k31i1txw .resizer-handle-thumb{display:flex}
|
|
2883
2856
|
._k3s4idpf .ProseMirror .rich-media-item.image-wrap-left+.rich-media-item.image-wrap-left{margin-right:0}
|
|
2884
2857
|
._k3ws1xfb .ProseMirror h4{margin-top:1.25em}
|
|
2885
|
-
._k3wsq19t .ProseMirror h4{margin-top:1.357em}
|
|
2886
2858
|
._k50g15vq .ak-editor-sync-block__label{visibility:hidden}
|
|
2887
2859
|
._k5rqstnw ol[data-node-type=decisionList].ak-editor-selected-node:before{position:absolute}
|
|
2888
2860
|
._k6mw1osq .resizer-hover-zone{width:100%}
|
|
@@ -2930,7 +2902,6 @@
|
|
|
2930
2902
|
._kze5vi1l .pm-table-container:has(>.pm-table-wrapper>table[data-initial-width-mode=content]){width:max-content!important}
|
|
2931
2903
|
._kzf2h2mm [data-prosemirror-node-name=blockTaskItem] [data-component=task-item-main]{position:relative}
|
|
2932
2904
|
._l1qiidpf .ak-editor-panel.ak-editor-selected-node:not(.danger):before{top:0}
|
|
2933
|
-
._l2nti7uo .ProseMirror h3{color:var(--ds-text,#292a2e)}
|
|
2934
2905
|
._l3h6p1qy .ProseMirror h4>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2935
2906
|
._l3rpidpf .inlineExtensionView-content-wrap.danger.ak-editor-selected-node>span>div>.extension-label.always-hide-label{opacity:0}
|
|
2936
2907
|
._l4vzglyw .ProseMirror .ProseMirror-gapcursor{pointer-events:none}
|
|
@@ -2938,6 +2909,7 @@
|
|
|
2938
2909
|
._l5scidpf [data-prosemirror-node-name=blockTaskItem] [data-component=content]{margin-right:0}
|
|
2939
2910
|
._l6531j28 .pm-table-wrapper>table>tbody>tr>td[data-reaches-left]:after{border-left-color:transparent}
|
|
2940
2911
|
._l6b9n7od .resizer-item:has(table[data-initial-width-mode=content])>.resizer-hover-zone.resizer-is-extended{left:unset}
|
|
2912
|
+
._l6h01hqq .show-diff-atomic-inline-changed-emoji{--show-diff-atomic-inline-changed-border-color:var(--ds-border-accent-purple,#af59e1)}
|
|
2941
2913
|
._l6wkjmqp{--local-border-checked:var(--ds-background-selected-bold,#1868db)}
|
|
2942
2914
|
._la471bp4 .richMedia-resize-handle-right{flex-direction:column}
|
|
2943
2915
|
._la9widpf [data-mark-type=fragment]>[data-mark-type=dataConsumer]>.extensionView-content-wrap{margin-right:0}
|
|
@@ -2953,7 +2925,6 @@
|
|
|
2953
2925
|
._limd1q9c [data-prosemirror-node-name=blockTaskItem] [data-component=placeholder]{white-space:nowrap}
|
|
2954
2926
|
._lkzl1n9t .ProseMirror .pm-table-wrapper table{table-layout:fixed}
|
|
2955
2927
|
._lm211rpy .ProseMirror span.pm-placeholder__text{color:var(--ds-text-subtlest,#6b6e76)}
|
|
2956
|
-
._lmfnvz0p .ProseMirror h5{font-size:.85714em}
|
|
2957
2928
|
._lnhebimv .ProseMirror .danger.code-block{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
2958
2929
|
._lnnb1rtt .inlineExtensionView-content-wrap.danger>span>div>.extension-label{background-color:var(--ds-background-accent-red-subtler,#ffd5d2)}
|
|
2959
2930
|
._lqso1o8l .ProseMirror blockquote{display:inline-block}
|
|
@@ -3008,7 +2979,6 @@
|
|
|
3008
2979
|
._muxp1rpy .ProseMirror .code-block .code-content__line-number--wrapped{color:var(--ds-text-subtlest,#6b6e76)}
|
|
3009
2980
|
._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
2981
|
._mxneidpf .bodiedExtensionView-content-wrap{margin-right:0}
|
|
3011
|
-
._myzt1kw7 .ProseMirror h1{font-style:inherit}
|
|
3012
2982
|
._mz7q1v6z .resizer-handle{width:7px}
|
|
3013
2983
|
._mzasidpf .fabric-editor-alignment:first-of-type:first-child h2 style:first-child+*{margin-top:0}
|
|
3014
2984
|
._mzo1idpf .pm-table-wrapper>table>tbody>tr>th{border-right-width:0}
|
|
@@ -3083,7 +3053,6 @@
|
|
|
3083
3053
|
._oaj1rsbi{--local-border-hover:var(--ds-border-input,#8c8f97)}
|
|
3084
3054
|
._oay31j28 .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]::selection{background-color:transparent}
|
|
3085
3055
|
._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
3056
|
._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
3057
|
._ocz2idpf :not(.fabric-editor-block-mark)>h1 style:first-child+*{margin-top:0}
|
|
3089
3058
|
._od11grf3 .ProseMirror li:has(>ul:only-child){margin-top:0!important}
|
|
@@ -3104,6 +3073,7 @@
|
|
|
3104
3073
|
._om3bidpf [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=content]{margin-bottom:0}
|
|
3105
3074
|
._omad1nu9 .ProseMirror .inlineNodeView{display:inline}
|
|
3106
3075
|
._omxdf705 .ProseMirror:not(.blockCardView-content-wrap)>li:before{content:" "}
|
|
3076
|
+
._on0nxju9 .show-diff-atomic-inline-changed-mention .editor-mention-primitive{box-shadow:0 0 0 2px var(--show-diff-atomic-inline-changed-border-color)}
|
|
3107
3077
|
._onreglyw [data-prosemirror-node-name=blockTaskItem] [data-component=placeholder]{pointer-events:none}
|
|
3108
3078
|
._ooctidpf .resizer-handle-track{opacity:0}
|
|
3109
3079
|
._op0fn7od div[extensionType="com.atlassian.ai-blocks"] .extension-container{overflow-y:unset}
|
|
@@ -3280,6 +3250,7 @@
|
|
|
3280
3250
|
._rwhn1kw7 .ProseMirror .mediaSingleView-content-wrap[layout^=wrap-]{clear:inherit}
|
|
3281
3251
|
._rwnl1j28 .pm-table-sticky-wrapper>table>tbody>tr>th[data-reaches-bottom]:after{border-bottom-color:transparent}
|
|
3282
3252
|
._rxyqh2mm .pm-breakout-resize-handle-container{position:relative}
|
|
3253
|
+
._ry9axju9 .show-diff-atomic-inline-changed-status .status-lozenge-span>span{box-shadow:0 0 0 2px var(--show-diff-atomic-inline-changed-border-color)}
|
|
3283
3254
|
._rzjc12x7 .ProseMirror .ak-editor-sync-block{margin-top:var(--ds-space-075,6px)}
|
|
3284
3255
|
._s1jlmz2b [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:hover+svg{--checkbox-background-color:var(--local-background-disabled)}
|
|
3285
3256
|
._s2681tsb .pm-table-container>table th:not(.danger) .code-block:not(.danger):not(.ak-editor-selected-node){box-shadow:0 0 0 1px var(--ds-border,#0b120e24)}
|
|
@@ -3339,6 +3310,7 @@
|
|
|
3339
3310
|
._syi5n7od .code{overflow-y:unset}
|
|
3340
3311
|
._sz15utpp .ProseMirror .ak-editor-panel.ak-editor-panel__no-icon{padding-left:var(--ds-space-150,9pt)}
|
|
3341
3312
|
._sz6h1txw [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]{display:flex}
|
|
3313
|
+
._t0881crs .show-diff-atomic-inline-changed-date.show-diff-atomic-inline-changed-traditional{--show-diff-atomic-inline-changed-border-color:var(--ds-border-accent-green,#22a06b)}
|
|
3342
3314
|
._t176sm61 .pm-table-wrapper>table th td{background-color:var(--ds-background-neutral-subtle,#00000000)}
|
|
3343
3315
|
._t1ygidpf .ak-editor-expand.ak-editor-selected-node:not(.danger):before{top:0}
|
|
3344
3316
|
._t3hqgktf .ProseMirror h5>:is(a,span[data-mark-type=border]) .media-inline-image-wrapper{height:20px}
|
|
@@ -3404,7 +3376,6 @@
|
|
|
3404
3376
|
._ue9bidpf .ProseMirror .danger.code-block .line-number-gutter:after{top:0}
|
|
3405
3377
|
._ufoh1lfe .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{transition-timing-function:ease-out,ease-out}
|
|
3406
3378
|
._ug3m1nu9 .ProseMirror span.pm-placeholder__text[data-placeholder]:after{display:inline}
|
|
3407
|
-
._uh5u1pd9 .ProseMirror h4{font-weight:var(--ds-font-weight-semibold,600)}
|
|
3408
3379
|
._ui89idpf .ProseMirror li>.code-block{margin-left:0}
|
|
3409
3380
|
._ujemidpf .fabric-editor-alignment:first-of-type:first-child h1 style:first-child+*{margin-top:0}
|
|
3410
3381
|
._ujyhidpf .bodiedExtensionView-content-wrap.danger.ak-editor-selected-node>span>div>.extension-label.always-hide-label{opacity:0}
|
|
@@ -3478,6 +3449,7 @@
|
|
|
3478
3449
|
._vmcm1kdv .ProseMirror blockquote.ak-editor-selected-node{-webkit-user-select:text}
|
|
3479
3450
|
._vmpy1jih .ProseMirror [data-mark-type=fragment]>[data-mark-type=dataConsumer]>.bodiedExtensionView-content-wrap{margin-bottom:var(--ak-editor-extension-block-spacing,.75rem)}
|
|
3480
3451
|
._vmt0glyw .ProseMirror .telepointer.telepointer-selection:not(.inlineNodeView){pointer-events:none}
|
|
3452
|
+
._vnmp1hqq .show-diff-atomic-inline-changed-date{--show-diff-atomic-inline-changed-border-color:var(--ds-border-accent-purple,#af59e1)}
|
|
3481
3453
|
._vpdlh2mm .ProseMirror .code-block.ak-editor-selected-node:not(.danger){position:relative}
|
|
3482
3454
|
._vpm4n7od table .resizer-hover-zone{padding-right:unset}
|
|
3483
3455
|
._vppwidpf .ProseMirror .rich-media-item.image-wrap-left+.rich-media-item.image-wrap-right{margin-left:0}
|
|
@@ -3554,7 +3526,6 @@
|
|
|
3554
3526
|
._x0l08jkm .ProseMirror .ak-editor-sync-block .ak-editor-sync-block__renderer{padding-left:19px}
|
|
3555
3527
|
._x1d2idpf .fabric-editor--full-width-mode .ProseMirror [data-layout-section] .pm-table-container{margin-bottom:0}
|
|
3556
3528
|
._x3di14vx .ProseMirror h2{margin-top:1.4em}
|
|
3557
|
-
._x3dis0v8 .ProseMirror h2{margin-top:1.8em}
|
|
3558
3529
|
._x6bu11lh .ProseMirror .ProseMirror-fake-text-selection{color:HighlightText}
|
|
3559
3530
|
._x74zidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]:after{height:0}
|
|
3560
3531
|
._x81614y2 .ProseMirror .ak-editor-annotation-blur:has(.card){padding-top:5px}
|
|
@@ -3570,7 +3541,6 @@
|
|
|
3570
3541
|
._xldsidpf .ProseMirror .code-block{margin-bottom:0}
|
|
3571
3542
|
._xlm615cr .ProseMirror .telepointer.color-4{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
3572
3543
|
._xm1gtlke [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]{cursor:pointer}
|
|
3573
|
-
._xmetlpk9 .ProseMirror h6{line-height:1.45455}
|
|
3574
3544
|
._xpqwidpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]>div{margin-left:0}
|
|
3575
3545
|
._xqgtidpf .ProseMirror .rich-media-item.image-wrap-left+.rich-media-item.image-wrap-right{margin-right:0}
|
|
3576
3546
|
._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)}
|