@atlaskit/editor-core 220.1.1 → 220.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +126 -18
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.js +22 -10
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-emotion.js +5 -2
- package/dist/cjs/ui/EditorContentContainer/styles/aiPanel.js +27 -5
- package/dist/cjs/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
- package/dist/cjs/ui/EditorContentContainer/styles/baseStyles.js +39 -10
- package/dist/cjs/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
- package/dist/cjs/ui/EditorContentContainer/styles/codeBlockStyles.js +33 -9
- package/dist/cjs/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
- package/dist/cjs/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/dateStyles.js +28 -6
- package/dist/cjs/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
- package/dist/cjs/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/emoji.js +34 -6
- package/dist/cjs/ui/EditorContentContainer/styles/expandStyles.js +45 -11
- package/dist/cjs/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
- package/dist/cjs/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
- package/dist/cjs/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
- package/dist/cjs/ui/EditorContentContainer/styles/gridStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/layout.js +142 -24
- package/dist/cjs/ui/EditorContentContainer/styles/link.js +21 -5
- package/dist/cjs/ui/EditorContentContainer/styles/list.js +45 -10
- package/dist/cjs/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
- package/dist/cjs/ui/EditorContentContainer/styles/mentions.js +33 -9
- package/dist/cjs/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/panelStyles.js +39 -12
- package/dist/cjs/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
- package/dist/cjs/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
- package/dist/cjs/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
- package/dist/cjs/ui/EditorContentContainer/styles/rule.js +15 -4
- package/dist/cjs/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
- package/dist/cjs/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
- package/dist/cjs/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
- package/dist/cjs/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
- package/dist/cjs/ui/EditorContentContainer/styles/statusStyles.js +45 -14
- package/dist/cjs/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
- package/dist/cjs/ui/EditorContentContainer/styles/tableStyles.js +45 -14
- package/dist/cjs/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
- package/dist/cjs/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
- package/dist/cjs/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/unsupportedStyles.js +16 -2
- package/dist/cjs/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +126 -18
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.js +22 -10
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-emotion.js +5 -2
- package/dist/es2019/ui/EditorContentContainer/styles/aiPanel.js +27 -5
- package/dist/es2019/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
- package/dist/es2019/ui/EditorContentContainer/styles/baseStyles.js +39 -10
- package/dist/es2019/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
- package/dist/es2019/ui/EditorContentContainer/styles/codeBlockStyles.js +34 -9
- package/dist/es2019/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
- package/dist/es2019/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/dateStyles.js +29 -6
- package/dist/es2019/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
- package/dist/es2019/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/emoji.js +34 -6
- package/dist/es2019/ui/EditorContentContainer/styles/expandStyles.js +45 -11
- package/dist/es2019/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
- package/dist/es2019/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
- package/dist/es2019/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -3
- package/dist/es2019/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
- package/dist/es2019/ui/EditorContentContainer/styles/gridStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/layout.js +142 -24
- package/dist/es2019/ui/EditorContentContainer/styles/link.js +21 -5
- package/dist/es2019/ui/EditorContentContainer/styles/list.js +45 -10
- package/dist/es2019/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
- package/dist/es2019/ui/EditorContentContainer/styles/mentions.js +33 -9
- package/dist/es2019/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/panelStyles.js +39 -12
- package/dist/es2019/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
- package/dist/es2019/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
- package/dist/es2019/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
- package/dist/es2019/ui/EditorContentContainer/styles/rule.js +15 -4
- package/dist/es2019/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
- package/dist/es2019/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
- package/dist/es2019/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
- package/dist/es2019/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
- package/dist/es2019/ui/EditorContentContainer/styles/statusStyles.js +45 -14
- package/dist/es2019/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
- package/dist/es2019/ui/EditorContentContainer/styles/tableStyles.js +45 -15
- package/dist/es2019/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
- package/dist/es2019/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
- package/dist/es2019/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/unsupportedStyles.js +17 -2
- package/dist/es2019/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +126 -18
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.js +22 -10
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-emotion.js +5 -2
- package/dist/esm/ui/EditorContentContainer/styles/aiPanel.js +27 -5
- package/dist/esm/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
- package/dist/esm/ui/EditorContentContainer/styles/baseStyles.js +39 -10
- package/dist/esm/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
- package/dist/esm/ui/EditorContentContainer/styles/codeBlockStyles.js +34 -9
- package/dist/esm/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
- package/dist/esm/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/dateStyles.js +29 -6
- package/dist/esm/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
- package/dist/esm/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/emoji.js +34 -6
- package/dist/esm/ui/EditorContentContainer/styles/expandStyles.js +45 -11
- package/dist/esm/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
- package/dist/esm/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
- package/dist/esm/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -3
- package/dist/esm/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
- package/dist/esm/ui/EditorContentContainer/styles/gridStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/layout.js +142 -24
- package/dist/esm/ui/EditorContentContainer/styles/link.js +21 -5
- package/dist/esm/ui/EditorContentContainer/styles/list.js +45 -10
- package/dist/esm/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
- package/dist/esm/ui/EditorContentContainer/styles/mentions.js +33 -9
- package/dist/esm/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/panelStyles.js +39 -12
- package/dist/esm/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
- package/dist/esm/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
- package/dist/esm/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
- package/dist/esm/ui/EditorContentContainer/styles/rule.js +15 -4
- package/dist/esm/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
- package/dist/esm/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
- package/dist/esm/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
- package/dist/esm/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
- package/dist/esm/ui/EditorContentContainer/styles/statusStyles.js +45 -14
- package/dist/esm/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
- package/dist/esm/ui/EditorContentContainer/styles/tableStyles.js +45 -15
- package/dist/esm/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
- package/dist/esm/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
- package/dist/esm/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/unsupportedStyles.js +17 -2
- package/dist/esm/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/ui/EditorContentContainer/EditorContentContainer-emotion.d.ts +3 -1
- package/dist/types/ui/EditorContentContainer/styles/aiPanel.d.ts +24 -0
- package/dist/types/ui/EditorContentContainer/styles/annotationStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/backgroundColorStyles.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/baseStyles.d.ts +36 -0
- package/dist/types/ui/EditorContentContainer/styles/blockMarksStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/blockTypeStyles.d.ts +60 -0
- package/dist/types/ui/EditorContentContainer/styles/codeBlockStyles.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/codeMarkStyles.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/commentEditorStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/cursorStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/dateStyles.d.ts +24 -0
- package/dist/types/ui/EditorContentContainer/styles/editorUGCTokenStyles.d.ts +24 -0
- package/dist/types/ui/EditorContentContainer/styles/embedCardStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/emoji.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/expandStyles.d.ts +42 -0
- package/dist/types/ui/EditorContentContainer/styles/extensionStyles.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/firstBlockNodeStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/floatingToolbarStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/fontSizeStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/fullPageEditorStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/gapCursorStyles.d.ts +18 -0
- package/dist/types/ui/EditorContentContainer/styles/gridStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/indentationStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/layout.d.ts +138 -0
- package/dist/types/ui/EditorContentContainer/styles/link.d.ts +18 -0
- package/dist/types/ui/EditorContentContainer/styles/list.d.ts +42 -0
- package/dist/types/ui/EditorContentContainer/styles/mediaStyles.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/mentions.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/overflowShadowStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/panelStyles.d.ts +36 -0
- package/dist/types/ui/EditorContentContainer/styles/paragraphStyles.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/placeholderStyles.d.ts +24 -0
- package/dist/types/ui/EditorContentContainer/styles/resizerStyles.d.ts +108 -0
- package/dist/types/ui/EditorContentContainer/styles/rule.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/scrollbarStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/selectionStyles.d.ts +60 -0
- package/dist/types/ui/EditorContentContainer/styles/selectionToolbarStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/shadowStyles.d.ts +18 -0
- package/dist/types/ui/EditorContentContainer/styles/smartCardStyles.d.ts +78 -0
- package/dist/types/ui/EditorContentContainer/styles/statusStyles.d.ts +42 -0
- package/dist/types/ui/EditorContentContainer/styles/syncBlockStyles.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/tableStyles.d.ts +42 -0
- package/dist/types/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.d.ts +60 -0
- package/dist/types/ui/EditorContentContainer/styles/telepointerStyles.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/textColorStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/textHighlightStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/unsupportedStyles.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/whitespaceStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/EditorContentContainer-emotion.d.ts +3 -1
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/aiPanel.d.ts +24 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/annotationStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/backgroundColorStyles.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/baseStyles.d.ts +36 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/blockMarksStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/blockTypeStyles.d.ts +60 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/codeBlockStyles.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/codeMarkStyles.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/commentEditorStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/cursorStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/dateStyles.d.ts +24 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/editorUGCTokenStyles.d.ts +24 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/embedCardStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/emoji.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/expandStyles.d.ts +42 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/extensionStyles.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/firstBlockNodeStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/floatingToolbarStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/fontSizeStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/fullPageEditorStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/gapCursorStyles.d.ts +18 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/gridStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/indentationStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/layout.d.ts +138 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/link.d.ts +18 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/list.d.ts +42 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/mediaStyles.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/mentions.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/overflowShadowStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/panelStyles.d.ts +36 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/paragraphStyles.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/placeholderStyles.d.ts +24 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/resizerStyles.d.ts +108 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/rule.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/scrollbarStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/selectionStyles.d.ts +60 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/selectionToolbarStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/shadowStyles.d.ts +18 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/smartCardStyles.d.ts +78 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/statusStyles.d.ts +42 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/syncBlockStyles.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/tableStyles.d.ts +42 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.d.ts +60 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/telepointerStyles.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/textColorStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/textHighlightStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/unsupportedStyles.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/whitespaceStyles.d.ts +6 -0
- package/package.json +5 -5
|
@@ -4,11 +4,13 @@
|
|
|
4
4
|
._10kw1rb6 .pm-table-container>table>tbody>tr>td{border:1px solid var(--ds-background-accent-gray-subtler,#dddee1)}
|
|
5
5
|
._10ns1v1w .ak-editor-selected-node .resizer-handle-thumb{background:var(--ds-border-focused,#4688ec)}
|
|
6
6
|
._116fzg2b .danger .rich-media-item .media-file-card-view:after{border:1px solid var(--ds-border-danger,#e2483d)}
|
|
7
|
+
._119m1rb6 .pm-table-sticky-wrapper>table:after{border:1px solid var(--ds-background-accent-gray-subtler,#dddee1)}
|
|
7
8
|
._11gi1bqt .embedCardView-content-wrap.danger .richMedia-resize-handle-right:after{background:var(--ds-border-danger,#e2483d)}
|
|
8
9
|
._11pulb4i .ProseMirror .ak-editor-selected-node .emoji-common-emoji-sprite{border-radius:var(--ds-radius-xsmall,2px)}
|
|
9
10
|
._12z0idpf .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]{border:0}
|
|
10
11
|
._13521dy8 .ProseMirror blockquote.ak-editor-selected-node{background:var(--ds-background-accent-blue-subtler,#cfe1fd)}
|
|
11
12
|
._13ax1rb6 .pm-table-sticky-wrapper>table{border:1px solid var(--ds-background-accent-gray-subtler,#dddee1)}
|
|
13
|
+
._13axokh7 .pm-table-sticky-wrapper>table{border:1px solid transparent}
|
|
12
14
|
._13cd1uzo div[extensionType="com.atlassian.ai-blocks"] .extension-container:after{border-radius:calc(var(--ds-radius-small, 3px) + 1px)}
|
|
13
15
|
._13ey10ni .bodiedExtensionView-content-wrap .bodiedExtension-content-inner-wrapper{margin:0 var(--ds-space-negative-250,-20px)}
|
|
14
16
|
._13heu2gc .pm-table-container>table>tbody>tr>td{padding:var(--ds-space-100,8px)}
|
|
@@ -35,6 +37,7 @@
|
|
|
35
37
|
._1a471v1w .pm-breakout-resize-handle-rail:hover .pm-breakout-resize-handle-thumb{background:var(--ds-border-focused,#4688ec)}
|
|
36
38
|
._1aol1773 .inlineCardView-content-wrap .card-with-comment{background:var(--ds-background-accent-yellow-subtler,#f5e989)}
|
|
37
39
|
._1bbgj0fz .ProseMirror .ak-editor-panel .ak-editor-panel__content .ak-editor-panel{border:1px solid var(--ds-border,#0b120e24)}
|
|
40
|
+
._1bew1rb6 .pm-table-wrapper>table:after{border:1px solid var(--ds-background-accent-gray-subtler,#dddee1)}
|
|
38
41
|
._1bh8dik7 .bodiedExtensionView-content-wrap .bodiedExtension-content-inner-wrapper{padding:var(--ds-space-200,1pc) var(--ds-space-250,20px)}
|
|
39
42
|
._1cnzgx6n .ProseMirror hr{margin:var(--ds-space-300,24px) 0}
|
|
40
43
|
._1cqg8r4n [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:focus+svg{border-radius:var(--ds-radius-small,.25rem)}
|
|
@@ -55,6 +58,7 @@
|
|
|
55
58
|
._1h9lmihd .ProseMirror .ak-editor-sync-block.creation-loading{transition:box-shadow .2s ease-in}
|
|
56
59
|
._1hte8kn1 .danger .inlineCardView-content-wrap>span>a{transition:background-color 0s}
|
|
57
60
|
._1i421gfe .ProseMirror h4{font:var(--editor-font-ugc-token-heading-h4)}
|
|
61
|
+
._1i8r1qi0 .pm-table-wrapper>table:after{border-radius:var(--ds-radius-medium,6px)}
|
|
58
62
|
._1iac12b0 .show-diff-deleted-node .media-card-wrapper>div{border-radius:var(--ds-radius-small,4px)}
|
|
59
63
|
._1j2jidpf .bodiedExtensionView-content-wrap .extension-container .bodiedExtension-content-inner-wrapper{border-radius:0}
|
|
60
64
|
._1j2m12b0 .ProseMirror [data-layout-section].selected.danger [data-layout-section]{border-radius:var(--ds-radius-small,4px)}
|
|
@@ -63,6 +67,7 @@
|
|
|
63
67
|
._1khk1mok:hover::-webkit-scrollbar-thumb{border-radius:var(--ds-radius-large,8px)}
|
|
64
68
|
._1kk7l6jh [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=icon]{margin:var(--ds-space-050,4px) var(--ds-space-150,9pt) 0 0}
|
|
65
69
|
._1l4zlb4i .fabric-background-color-mark{border-radius:var(--ds-radius-xsmall,2px)}
|
|
70
|
+
._1m4qidpf .pm-table-container>table:after{inset:0}
|
|
66
71
|
._1mc7glyw .ak-editor-selected-node.unsupportedInlineView-content-wrap>span:nth-of-type(2):after{border:none}
|
|
67
72
|
._1mml7qp0 .pm-table-container .pm-table-right-border{background:var(--ds-background-accent-gray-subtler,#dddee1)}
|
|
68
73
|
._1mx211so [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]+svg rect:first-of-type{transition:stroke .2s ease-in-out}
|
|
@@ -158,10 +163,12 @@
|
|
|
158
163
|
._age41gly .ak-editor-expand.danger{background:var(--ds-background-danger,#ffeceb)}
|
|
159
164
|
._an061qi0 .layout-column-divider-thumb{border-radius:var(--ds-radius-medium,6px)}
|
|
160
165
|
._arowokh7 .editor-mention-primitive.mention-self{border:1px solid transparent}
|
|
166
|
+
._b0801osu [data-prosemirror-node-name=status] .lozenge-text{font:normal var(--ds-font-weight-bold,653) 11px/1pc var(--ds-font-family-body,"Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif)}
|
|
161
167
|
._b080wadc [data-prosemirror-node-name=status] .lozenge-text{font:var(--ds-font-body-small,normal 400 9pt/1pc "Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif)}
|
|
162
168
|
._b172wrdo .danger .richMedia-resize-handle-left:after{background:var(--ds-icon-danger,#c9372c)!important}
|
|
163
169
|
._b1wxglyw .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:after{border:none}
|
|
164
170
|
._b7zl1rb6 .pm-table-wrapper>table{border:1px solid var(--ds-background-accent-gray-subtler,#dddee1)}
|
|
171
|
+
._b7zlokh7 .pm-table-wrapper>table{border:1px solid transparent}
|
|
165
172
|
._bcvb1pcn .ProseMirror .ak-editor-panel .ak-editor-panel__content{margin:var(--ds-space-025,2px) 0 var(--ds-space-025,2px)}
|
|
166
173
|
._bi6a1vlr div[extensionType="com.atlassian.ai-blocks"] .extension-container:before{background:conic-gradient(from var(--panel-gradient-angle,270deg),#0065ff 0,#0469ff 20%,#bf63f3 50%,#ffa900 56%,#0065ff 100%)}
|
|
167
174
|
._bi6a1yt2 div[extensionType="com.atlassian.ai-blocks"] .extension-container:before{background:linear-gradient(90deg,#0065ff80,#0469ff80 12%,#bf63f380 24%,#ffa90080 48%,#bf63f380 64%,#0469ff80 80%,#0065ff80)}
|
|
@@ -175,6 +182,7 @@
|
|
|
175
182
|
._cx2xutpp .ProseMirror [data-layout-section] [data-layout-column]{padding:var(--ds-space-150,9pt)}
|
|
176
183
|
._d10bhq3d .ProseMirror li>p:not(:first-child){margin:var(--ds-space-050,4px) 0 0 0}
|
|
177
184
|
._d8sss8vo .resizer-hover-zone.resizer-is-extended{padding:0 var(--ds-space-150,9pt)}
|
|
185
|
+
._db2z1b66 .search-match-block.ak-editor-sync-block{border-radius:var(--ds-space-050,4px)}
|
|
178
186
|
._dci5qo0w div[extensionType="com.atlassian.ai-blocks"]:after{background:linear-gradient(90deg,#0065ff,#0469ff 12%,#bf63f3 24%,#ffa900 48%,#bf63f3 64%,#0469ff 80%,#0065ff)}
|
|
179
187
|
._dkhuhd14 .ProseMirror h2{font:var(--editor-font-ugc-token-heading-h2)}
|
|
180
188
|
._dmwoq98m .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:after{background:var(--ds-border-selected,#1868db)}
|
|
@@ -188,6 +196,7 @@
|
|
|
188
196
|
._fignfajl .ProseMirror .ak-editor-bodied-sync-block{border-radius:var(--ds-radius-small,3px)}
|
|
189
197
|
._fo78glyw .bodiedExtensionView-content-wrap .extension-container .bodiedExtension-content-inner-wrapper{border:none}
|
|
190
198
|
._ft7jglyw .ProseMirror .ak-editor-bodied-sync-block.disabled .ak-editor-sync-block__label:before{border:none}
|
|
199
|
+
._fvpu1rb6 .pm-table-container>table:after{border:1px solid var(--ds-background-accent-gray-subtler,#dddee1)}
|
|
191
200
|
._g26e1mok .datasourceView-content-wrap.blockCardView-content-wrap .datasourceView-content-inner-wrap{border-radius:var(--ds-radius-large,8px)}
|
|
192
201
|
._g3q7u2gc .ProseMirror [data-layout-section]{gap:var(--ds-space-100,8px)}
|
|
193
202
|
._g4fm7g83 .ProseMirror-selectednode:empty{outline:2px solid var(--ds-border-focused,#4688ec)}
|
|
@@ -205,7 +214,10 @@
|
|
|
205
214
|
._j159j0fz .ProseMirror [data-layout-section].selected [data-layout-column]{border:1px solid var(--ds-border,#0b120e24)}
|
|
206
215
|
._j6cmidpf .ProseMirror [data-layout-section]:hover [data-layout-column]{border:0}
|
|
207
216
|
._j6cmj0fz .ProseMirror [data-layout-section]:hover [data-layout-column]{border:1px solid var(--ds-border,#0b120e24)}
|
|
217
|
+
._jeg71qi0 .pm-table-container>table:after{border-radius:var(--ds-radius-medium,6px)}
|
|
218
|
+
._jx6o1qi0 .pm-table-sticky-wrapper>table:after{border-radius:var(--ds-radius-medium,6px)}
|
|
208
219
|
._jz731rb6 .pm-table-container>table{border:1px solid var(--ds-background-accent-gray-subtler,#dddee1)}
|
|
220
|
+
._jz73okh7 .pm-table-container>table{border:1px solid transparent}
|
|
209
221
|
._k4r0q98m .ak-editor-selected-node.unsupportedInlineView-content-wrap>span:nth-of-type(2):after{background:var(--ds-border-selected,#1868db)}
|
|
210
222
|
._k9adhueu .ak-editor-selected-node.unsupportedBlockView-content-wrap>div{border:1px solid var(--ds-border-selected,#1868db)}
|
|
211
223
|
._kc8l11ss .pm-table-container>table{margin:var(--ds-space-300,24px) var(--ds-space-100,8px) 0 0}
|
|
@@ -244,9 +256,9 @@
|
|
|
244
256
|
._s9qz1mok .ProseMirror .pm-table-wrapper>table:hover::-webkit-scrollbar-thumb{border-radius:var(--ds-radius-large,8px)}
|
|
245
257
|
._sh9t1mn3 [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]+svg{transition:color .2s ease-in-out,fill .2s ease-in-out}
|
|
246
258
|
._sqna1mok .blockCardView-content-wrap.ak-editor-selected-node .loader-wrapper>div{border-radius:var(--ds-radius-large,8px)}
|
|
259
|
+
._t6ioidpf .pm-table-sticky-wrapper>table:after{inset:0}
|
|
247
260
|
._tvm38r4n [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:checked:focus+svg{border-radius:var(--ds-radius-small,.25rem)}
|
|
248
261
|
._txt11rqd .ProseMirror .left-shadow:before{background:linear-gradient(to left,transparent 0,var(--ds-shadow-overflow-spread,#1e1f2129) 140%),linear-gradient(to right,var(--ds-shadow-overflow-perimeter,#1e1f211f) 0,transparent 1px)}
|
|
249
|
-
._up97ia51 .pm-table-wrapper .ak-editor-panel{border:var(--ds-border-width,1px) solid var(--ds-border,#0b120e24)}
|
|
250
262
|
._uufeidpf .resizer-handle-thumb{border:0}
|
|
251
263
|
._vir8sm61 .ak-editor-expand{background:var(--ds-background-neutral-subtle,#00000000)}
|
|
252
264
|
._vkeh12b0 [data-prosemirror-node-name=date] .date-lozenger-container span{border-radius:var(--ds-radius-small,4px)}
|
|
@@ -263,32 +275,32 @@
|
|
|
263
275
|
._ygeohueu .ak-editor-selected-node.unsupportedInlineView-content-wrap>span:nth-of-type(2){border:1px solid var(--ds-border-selected,#1868db)}
|
|
264
276
|
._yhgjt94y .ProseMirror hr{border-radius:1px}
|
|
265
277
|
._z7qocu6h .ProseMirror .ak-editor-sync-block:hover .ak-editor-sync-block__label{transition:opacity .2s ease-in,visibility .2s ease-in}
|
|
278
|
+
._zdvfidpf .pm-table-wrapper>table:after{inset:0}
|
|
266
279
|
._zgyzglyw .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-column]:after{border:none}
|
|
267
280
|
._zh8m12b0 .layout-column-divider-rail{border-radius:var(--ds-radius-small,4px)}
|
|
268
281
|
._zjao12b0 .pm-breakout-resize-handle-rail{border-radius:var(--ds-radius-small,4px)}
|
|
269
282
|
._zrp01l7x .rich-media-item:hover .richMedia-resize-handle-right:after{background:var(--ds-border,#0b120e24)}
|
|
270
283
|
._zy611kw7 .ProseMirror [data-prosemirror-node-name=blockTaskItem]:has(.fabric-editor-font-size[data-font-size=small]) .fabric-editor-font-size{font:inherit}
|
|
271
284
|
._136s1j28 .inlineCardView-content-wrap.ak-editor-selected-node .loader-wrapper>a{border-color:transparent}
|
|
285
|
+
._14kce4h9 .pm-table-wrapper .ak-editor-panel{border-width:var(--ds-border-width,1px)}
|
|
272
286
|
._14pw1nnf .layout-column-divider{margin-inline:-15px 0}
|
|
273
287
|
._14pwatyr .layout-column-divider{margin-inline:0 -7px}
|
|
274
|
-
._16o2sn1s html:not([data-color-mode=dark]) [data-prosemirror-node-name=status]>[data-color=neutral]>.lozenge-wrapper{border-color:#cacbcf}
|
|
275
288
|
._16uk1j28 .bodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container{border-color:transparent}
|
|
276
289
|
._1cqj1j28 .statusView-content-wrap.ak-editor-selected-node .status-lozenge-span>span{border-color:transparent}
|
|
277
290
|
._1dm11j28 .inlineCardView-content-wrap.ak-editor-selected-node:not(.search-match-block):not(.danger) .loader-wrapper>a{border-color:transparent}
|
|
291
|
+
._1fyn1l7x .pm-table-wrapper .ak-editor-panel{border-color:var(--ds-border,#0b120e24)}
|
|
292
|
+
._1gyf18rl [data-prosemirror-node-name=status]>[data-color=green]>.lozenge-wrapper{border-color:#4c6b1f}
|
|
293
|
+
._1gyf3uhp [data-prosemirror-node-name=status]>[data-color=green]>.lozenge-wrapper{border-color:#b3df72}
|
|
278
294
|
._1h9u1j28 .extensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container{border-color:transparent}
|
|
279
|
-
._1hf518rl html[data-color-mode=dark] [data-prosemirror-node-name=status]>[data-color=green]>.lozenge-wrapper{border-color:#4c6b1f}
|
|
280
295
|
._1husnqa1 .ak-editor-expand{border-style:solid}
|
|
281
|
-
._1i3e1q2y html[data-color-mode=dark] [data-prosemirror-node-name=status]>[data-color=neutral]>.lozenge-wrapper{border-color:#63666b}
|
|
282
296
|
._1jhk1j28 .inlineCardView-content-wrap.ak-editor-selected-node:not(.search-match-block) .loader-wrapper>a{border-color:transparent}
|
|
283
|
-
.
|
|
284
|
-
.
|
|
297
|
+
._1kcy8lpu [data-prosemirror-node-name=status]>[data-color=purple]>.lozenge-wrapper{border-color:#803fa5}
|
|
298
|
+
._1kcyshej [data-prosemirror-node-name=status]>[data-color=purple]>.lozenge-wrapper{border-color:#d8a0f7}
|
|
285
299
|
._1mgn1j28 .datasourceView-content-wrap.blockCardView-content-wrap.ak-editor-selected-node .datasourceView-content-inner-wrap{border-color:transparent}
|
|
286
|
-
._1n4y1szp html[data-color-mode=dark] [data-prosemirror-node-name=status]>[data-color=yellow]>.lozenge-wrapper{border-color:#9e4c00}
|
|
287
300
|
._1nt01j28 .ProseMirror .ak-editor-selected-node .emoji-common-emoji-sprite{border-color:transparent}
|
|
288
301
|
._1odm1j28 .embedCardView-content-wrap.show-diff-deleted-node-traditional.show-diff-deleted-active .loader-wrapper>div:after{border-color:transparent}
|
|
289
302
|
._1pyq1j28 .ak-editor-selected-node:not(.search-match-block)>.editor-mention-primitive{border-color:transparent}
|
|
290
303
|
._1rjw1bqt .ProseMirror [data-layout-section].selected.danger [data-layout-column]{border-color:var(--ds-border-danger,#e2483d)}
|
|
291
|
-
._1tw01ymo html:not([data-color-mode=dark]) [data-prosemirror-node-name=status]>[data-color=blue]>.lozenge-wrapper{border-color:#8fb8f6}
|
|
292
304
|
._1v6z1j28 .mentionView-content-wrap.ak-editor-selected-node [data-mention-id]>span{border-color:transparent}
|
|
293
305
|
._1v8i1j28 .ak-editor-selected-node>.editor-mention-primitive.mention-self{border-color:transparent}
|
|
294
306
|
._1vas1bqt .ProseMirror .layoutSectionView-content-wrap.selected.danger [data-layout-column]{border-color:var(--ds-border-danger,#e2483d)}
|
|
@@ -296,39 +308,43 @@
|
|
|
296
308
|
._1xt11j28 .ak-editor-expand{border-color:transparent}
|
|
297
309
|
._1xvj1j28 .embedCardView-content-wrap.ak-editor-selected-node:not(.search-match-block) .loader-wrapper>div:after{border-color:transparent}
|
|
298
310
|
._1y9e1j28 .ak-editor-selected-node>[data-decision-wrapper]{border-color:transparent}
|
|
311
|
+
._1ygz1q0g [data-prosemirror-node-name=status]>[data-color=blue]>.lozenge-wrapper{border-color:#1558bc}
|
|
312
|
+
._1ygz1ymo [data-prosemirror-node-name=status]>[data-color=blue]>.lozenge-wrapper{border-color:#8fb8f6}
|
|
299
313
|
._1ymq1bqt .ak-editor-expand.danger{border-color:var(--ds-border-danger,#e2483d)}
|
|
300
314
|
._1z0u1j28 .embedCardView-content-wrap.show-diff-deleted-node.show-diff-deleted-active .loader-wrapper>div:after{border-color:transparent}
|
|
301
315
|
._23me1b66 [data-prosemirror-node-name=status] .lozenge-wrapper{padding-inline:var(--ds-space-050,4px)}
|
|
302
316
|
._36v61j28 .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container{border-color:transparent}
|
|
303
317
|
._3y8g1j28 .ProseMirror.ProseMirror-focused .ProseMirror-gapcursor{border-color:transparent}
|
|
304
318
|
._44nb1j28 .ProseMirror .code-block.ak-editor-selected-node:not(.danger){border-color:transparent}
|
|
319
|
+
._5p2z1szp [data-prosemirror-node-name=status]>[data-color=yellow]>.lozenge-wrapper{border-color:#9e4c00}
|
|
320
|
+
._5p2z6qd6 [data-prosemirror-node-name=status]>[data-color=yellow]>.lozenge-wrapper{border-color:#fbc828}
|
|
321
|
+
._6bj4nqa1 .pm-table-wrapper .ak-editor-panel{border-style:solid}
|
|
305
322
|
._6olx1j28 ol[data-node-type=decisionList].ak-editor-selected-node{border-color:transparent}
|
|
306
323
|
._6p5k1j28 .ProseMirror .ak-editor-selected-node .emoji-common-emoji-image{border-color:transparent}
|
|
324
|
+
._702s1q2y [data-prosemirror-node-name=status]>[data-color=neutral]>.lozenge-wrapper{border-color:#63666b}
|
|
325
|
+
._702ssn1s [data-prosemirror-node-name=status]>[data-color=neutral]>.lozenge-wrapper{border-color:#cacbcf}
|
|
307
326
|
._71hk1j28 .embedCardView-content-wrap[data-testid=show-diff-changed-decoration-node] .loader-wrapper>div:after{border-color:transparent}
|
|
308
327
|
._92281j28 .statusView-content-wrap:not(.search-match-block).ak-editor-selected-node .status-lozenge-span>span{border-color:transparent}
|
|
309
328
|
._9zpl1j28 .ak-editor-panel.ak-editor-selected-node:not(.danger){border-color:transparent}
|
|
310
329
|
._aa1g1j28 .ak-editor-selected-node>.editor-mention-primitive.mention-restricted{border-color:transparent}
|
|
311
330
|
._d1z31j28 .embedCardView-content-wrap.show-diff-deleted-node-traditional .loader-wrapper>div:after{border-color:transparent}
|
|
312
331
|
._dgh21j28 .dateView-content-wrap.ak-editor-selected-node .date-lozenger-container>span{border-color:transparent}
|
|
313
|
-
.
|
|
332
|
+
._elbg1366 [data-prosemirror-node-name=status]>[data-color=red]>.lozenge-wrapper{border-color:#fd9891}
|
|
333
|
+
._elbg14o6 [data-prosemirror-node-name=status]>[data-color=red]>.lozenge-wrapper{border-color:#ae2e24}
|
|
314
334
|
._f73nkb7n .pm-breakout-resize-handle-container{grid-row:1}
|
|
315
335
|
._gwkf1j28 .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.multiBodiedExtension--container{border-color:transparent}
|
|
316
336
|
._ic7s1j28 .ak-editor-selected-node>.editor-mention-primitive{border-color:transparent}
|
|
317
337
|
._igra1j28 .ak-editor-selected-node:not(.search-match-block)>.editor-mention-primitive.mention-self{border-color:transparent}
|
|
318
|
-
._iwfe3uhp html:not([data-color-mode=dark]) [data-prosemirror-node-name=status]>[data-color=green]>.lozenge-wrapper{border-color:#b3df72}
|
|
319
338
|
._jc9z1j28 .embedCardView-content-wrap.ak-editor-selected-node .loader-wrapper>div:after{border-color:transparent}
|
|
320
339
|
._kh951j28 .ak-editor-expand:not(.ak-editor-expand__expanded):not(.ak-editor-selected-node):not(.danger){border-color:transparent}
|
|
321
340
|
._mgp11vg9 .ProseMirror .telepointer[class*=color-]:after{border-color:var(--telepointer-participant-bg-color)}
|
|
322
341
|
._mwpb1j28 .inlineExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container{border-color:transparent}
|
|
323
342
|
._n4fm1l7x .ak-editor-expand__expanded{border-color:var(--ds-border,#0b120e24)}
|
|
324
|
-
._pfcw1366 html:not([data-color-mode=dark]) [data-prosemirror-node-name=status]>[data-color=red]>.lozenge-wrapper{border-color:#fd9891}
|
|
325
343
|
._pwh8glyw .code{border-style:none}
|
|
326
|
-
._sz281q0g html[data-color-mode=dark] [data-prosemirror-node-name=status]>[data-color=blue]>.lozenge-wrapper{border-color:#1558bc}
|
|
327
344
|
._thnl1j28 .blockCardView-content-wrap.ak-editor-selected-node .loader-wrapper>div{border-color:transparent}
|
|
328
345
|
._uhe21j28 .ak-editor-selected-node:not(.search-match-block)>.editor-mention-primitive.mention-restricted{border-color:transparent}
|
|
329
346
|
._ulg8utpp .ProseMirror .ak-editor-sync-block{padding-block:var(--ds-space-150,9pt)}
|
|
330
347
|
._v5bbe4h9 .ak-editor-expand{border-width:var(--ds-border-width,1px)}
|
|
331
|
-
._wtboshej html:not([data-color-mode=dark]) [data-prosemirror-node-name=status]>[data-color=purple]>.lozenge-wrapper{border-color:#d8a0f7}
|
|
332
348
|
._xennutpp .ProseMirror .ak-editor-bodied-sync-block{padding-block:var(--ds-space-150,9pt)}
|
|
333
349
|
._xxqm1j28 .embedCardView-content-wrap.show-diff-deleted-node .loader-wrapper>div:after{border-color:transparent}
|
|
334
350
|
._zdge1j28 .embedCardView-content-wrap.show-diff-deleted-node-traditional.show-diff-deleted-outline-new .loader-wrapper>div:after{border-color:transparent}
|
|
@@ -376,6 +392,7 @@
|
|
|
376
392
|
._109wc7mi .ak-editor-content-area.appearance-full-page .ProseMirror>.ak-editor-expand__type-expand{margin-left:var(--ds-space-negative-250,-20px)}
|
|
377
393
|
._10a5ox06 li[data-testid=show-diff-changed-decoration-node]::marker{color:var(--diff-decoration-marker-color)}
|
|
378
394
|
._10b5glyw .ProseMirror .ak-editor-sync-block.creation-loading{box-shadow:none}
|
|
395
|
+
._10bumzrp .ProseMirror .ak-editor-selected-node .ak-editor-sync-block__renderer span[data-emoji-id]:before{background-color:transparent!important}
|
|
379
396
|
._10c7glyw .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{-webkit-user-select:none;-ms-user-select:none;user-select:none}
|
|
380
397
|
._10cy14no .resizer-handle-track.full-height{min-height:36px}
|
|
381
398
|
._10d41gly .ProseMirror blockquote.danger{background-color:var(--ds-background-danger,#ffeceb)}
|
|
@@ -468,6 +485,7 @@
|
|
|
468
485
|
._12aj15vq .ProseMirror .ak-editor-bodied-sync-block.view-mode .ak-editor-sync-block__label{visibility:hidden}
|
|
469
486
|
._12dbstnw .ProseMirror .danger .code-block .line-number-gutter:after{position:absolute}
|
|
470
487
|
._12dfvj2t .search-match-expand-title.selected-search-match.search-match-dark>.ak-editor-expand__title-container>.ak-editor-expand__input-container{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-hovered,#943d73)}
|
|
488
|
+
._12gbglyw .pm-table-container>table:after{pointer-events:none}
|
|
471
489
|
._12i1idpf :not(.fabric-editor-block-mark)>h5:first-child:not(style){margin-top:0}
|
|
472
490
|
._12i31osq .ProseMirror .left-shadow:before{height:100%}
|
|
473
491
|
._12ijtlke .ProseMirror .ak-editor-sync-block{cursor:pointer}
|
|
@@ -496,6 +514,7 @@
|
|
|
496
514
|
._12xo17v8 .search-match-block.search-match-dark [data-smart-link-container=true]{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)}
|
|
497
515
|
._12yq1osq .ak-editor-selected-node.unsupportedInlineView-content-wrap>span:nth-of-type(2):after{height:100%}
|
|
498
516
|
._1305glyw .ProseMirror .ak-editor-panel .ak-editor-panel__icon{-webkit-user-select:none;-ms-user-select:none;user-select:none}
|
|
517
|
+
._13201j28 .pm-table-sticky-wrapper>table>tbody>tr>td[data-reaches-left]:after{border-left-color:transparent}
|
|
499
518
|
._132p1k9k .ProseMirror ol[data-indent-level="5"]{list-style-type:lower-alpha}
|
|
500
519
|
._133ckb7n .ProseMirror [data-layout-section]>*{flex-shrink:1}
|
|
501
520
|
._135a1osq .pm-table-sticky-wrapper>table{width:100%}
|
|
@@ -523,6 +542,7 @@
|
|
|
523
542
|
._13o01h6o .resizer-handle div[role=presentation]{align-items:center}
|
|
524
543
|
._13q2grf3 .ProseMirror li:has(>ul:only-child){margin-bottom:0!important}
|
|
525
544
|
._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)}
|
|
545
|
+
._13qpkb7n .pm-table-sticky-wrapper>table:after{z-index:1}
|
|
526
546
|
._13skidpf .ProseMirror .decisionItemView-content-wrap{margin-top:0}
|
|
527
547
|
._13uz1j28 .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]::-moz-selection{background-color:transparent}
|
|
528
548
|
._13v3glyw .ak-editor-no-interaction #newFileExperienceWrapper{box-shadow:none}
|
|
@@ -541,6 +561,7 @@
|
|
|
541
561
|
._14ew15s3 .mentionView-content-wrap.ak-editor-selected-node [data-mention-id]>span{background-color:var(--ds-background-selected,#e9f2fe)}
|
|
542
562
|
._14f4idpf .ProseMirror-gapcursor+[layout=wrap-right]+[layout=wrap-left]>div{margin-bottom:0}
|
|
543
563
|
._14gj1k9k .ProseMirror ol ol{list-style-type:lower-alpha}
|
|
564
|
+
._14hs1nka .search-match-block.ak-editor-sync-block{box-shadow:inset 0 0 0 1px var(--ds-border-accent-magenta,#cd519d),inset 0 0 0 5px var(--ds-background-accent-magenta-subtler,#fdd0ec)}
|
|
544
565
|
._14hwidpf .ProseMirror [data-layout-section] [data-layout-column]{min-width:0}
|
|
545
566
|
._14i5idpf .ProseMirror [data-layout-section] [data-layout-column]>div .mediaSingleView-content-wrap[layout^=wrap]+.mediaSingleView-content-wrap[layout^=wrap] .rich-media-item{margin-top:0}
|
|
546
567
|
._14ib1ssb .ProseMirror .ProseMirror-gapcursor span[layout=fixed-width]{margin-left:50%}
|
|
@@ -550,9 +571,11 @@
|
|
|
550
571
|
._14jf1rpy .ProseMirror h6{color:var(--ds-text-subtlest,#6b6e76)}
|
|
551
572
|
._14jm1ntv .pm-table-container>table hr{box-sizing:content-box}
|
|
552
573
|
._14l7idpf [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]{margin-left:0}
|
|
574
|
+
._14ndkb7n .pm-table-container>table:after{z-index:1}
|
|
553
575
|
._14olidpf .hyperlink-floating-toolbar{padding-top:0}
|
|
554
576
|
._14ookb7n .extensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label{opacity:1}
|
|
555
577
|
._14r215vq .ProseMirror p:has(.placeholder-decoration-hide-overflow){overflow-y:hidden}
|
|
578
|
+
._14t11j28 .pm-table-container>table>tbody>tr>td[data-reaches-bottom]:after{border-bottom-color:transparent}
|
|
556
579
|
._14thewfl .extensionView-content-wrap .extension-container:has(.extension-editable-area){overflow-y:visible}
|
|
557
580
|
._14u2idpf .ak-editor-sync-block__label{opacity:0}
|
|
558
581
|
._14u4r5cr .resizer-handle-thumb:focus:after{top:var(--ds-space-negative-050,-4px)}
|
|
@@ -634,6 +657,7 @@
|
|
|
634
657
|
._16fx73ad .ProseMirror [data-layout-section]{cursor:default}
|
|
635
658
|
._16fxtlke .ProseMirror [data-layout-section]{cursor:pointer}
|
|
636
659
|
._16gbrprw .ProseMirror .danger .ak-editor-panel[data-panel-type=info]{background-color:var(--ds-blanket-danger,#ef5c4814)}
|
|
660
|
+
._16h41tcg .resizer-handle.bottom .resizer-handle-thumb{min-width:24px}
|
|
637
661
|
._16j6glyw .ProseMirror .placeholder-decoration{-webkit-user-select:none;-ms-user-select:none;user-select:none}
|
|
638
662
|
._16j6idpf .ak-editor-selected-node.unsupportedInlineView-content-wrap>span:nth-of-type(2):after{bottom:0}
|
|
639
663
|
._16jlkb7n{flex-grow:1}
|
|
@@ -651,6 +675,7 @@
|
|
|
651
675
|
._16r81j28 .ak-editor-selected-node.unsupportedBlockView-content-wrap>div::-moz-selection{background-color:transparent}
|
|
652
676
|
._16sfidpf .pm-breakout-resize-handle-hit-box{bottom:0}
|
|
653
677
|
._16vz1osq .layout-column-divider-rail{height:100%}
|
|
678
|
+
._16wkkz84 .search-match-block.ak-editor-sync-block.ak-editor-selected-node{box-shadow:inset 0 0 0 1px var(--ds-border-accent-magenta,#cd519d),inset 0 0 0 5px var(--ds-background-accent-magenta-subtler,#fdd0ec),0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
654
679
|
._16xd13gf [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:active+svg{cursor:not-allowed}
|
|
655
680
|
._16xj1rpy [data-prosemirror-node-name=blockTaskItem] [data-component=placeholder]{color:var(--ds-text-subtlest,#6b6e76)}
|
|
656
681
|
._16zj1ooe [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]+svg{transform:translate(-50%,-50%)}
|
|
@@ -669,6 +694,7 @@
|
|
|
669
694
|
._178n1j28 .ProseMirror.ProseMirror-focused:has(.ProseMirror-mark-boundary-cursor){caret-color:transparent}
|
|
670
695
|
._179s1txw .ProseMirror [data-layout-section]{display:flex}
|
|
671
696
|
._17agidpf :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) h2:first-child:not(style){margin-top:0}
|
|
697
|
+
._17am1ok8 .search-match-block.search-match-block-selected.search-match-dark.ak-editor-sync-block{background-color:var(--ds-background-accent-magenta-bolder-hovered,#943d73)}
|
|
672
698
|
._17clidpf .ProseMirror .ak-editor-annotation-hover:has([data-inline-card]){padding-right:0}
|
|
673
699
|
._17dpjp4b .pm-table-sticky-wrapper>table>tbody>tr>th{vertical-align:top}
|
|
674
700
|
._17er1do8 .ProseMirror .ak-editor-panel.danger{background-color:var(--ds-background-danger,#ffeceb)!important}
|
|
@@ -713,6 +739,7 @@
|
|
|
713
739
|
._18bz1tsb .ProseMirror .ak-editor-bodied-sync-block.user-is-dragging{box-shadow:0 0 0 1px var(--ds-border,#0b120e24)}
|
|
714
740
|
._18cr199y [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:hover+svg{--checkbox-border-color:var(--local-border-hover)}
|
|
715
741
|
._18cwckbl .ProseMirror .ak-editor-panel{min-width:3pc}
|
|
742
|
+
._18cxb3bt .pm-table-sticky-wrapper>table:after{content:""}
|
|
716
743
|
._18d9stnw .ak-editor-sync-block__label{position:absolute}
|
|
717
744
|
._18efidpf .ProseMirror .ProseMirror-gapcursor:first-of-type+span+ul{margin-top:0}
|
|
718
745
|
._18et1nu9 .ProseMirror span.pm-placeholder__text{display:inline}
|
|
@@ -726,6 +753,7 @@
|
|
|
726
753
|
._18j91dza [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=placeholder]{max-width:calc(100% - 50px)}
|
|
727
754
|
._18j96ui8 .ProseMirror .placeholder-decoration-fade-in{animation-timing-function:ease-out}
|
|
728
755
|
._18k9kb7n .ProseMirror .ak-editor-bodied-sync-block.user-is-dragging .ak-editor-sync-block__label{opacity:1}
|
|
756
|
+
._18kg1j28 .pm-table-container[data-number-column=true]>.pm-table-sticky-wrapper>table:after{border-left-color:transparent}
|
|
729
757
|
._18lyckbl .ProseMirror .taskItemView-content-wrap{min-width:3pc}
|
|
730
758
|
._18m61kdv ol[data-node-type=decisionList].ak-editor-selected-node{-webkit-user-select:text}
|
|
731
759
|
._18m915zi{overflow-y:scroll}
|
|
@@ -751,12 +779,14 @@
|
|
|
751
779
|
._190516cs .bodied-extension-to-dom-label:after{content:attr(data-bodied-extension-label)}
|
|
752
780
|
._191gu2gc .ProseMirror .ak-editor-panel{padding-bottom:var(--ds-space-100,8px)}
|
|
753
781
|
._194h1ul7 .ak-editor-expand:not(.ak-editor-expand__expanded) .ak-editor-expand__icon-container svg{transform:rotate(0deg)}
|
|
782
|
+
._195x1j28 .pm-table-wrapper>table>tbody>tr>td[data-reaches-bottom]:after{border-bottom-color:transparent}
|
|
754
783
|
._19651j28 .inlineCardView-content-wrap.ak-editor-selected-node .loader-wrapper>a::-moz-selection{background-color:transparent}
|
|
755
784
|
._19721y44 .ProseMirror [data-layout-section]>[data-layout-column]{margin-right:4px}
|
|
756
785
|
._197qcs5v .ProseMirror .right-shadow:after{z-index:2}
|
|
757
786
|
._197w1hrf .ProseMirror .embedCardView-content-wrap[layout=wrap-right]+.embedCardView-content-wrap[layout=wrap-left]{clear:both}
|
|
758
787
|
._198v1tcg [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap{flex-basis:24px}
|
|
759
788
|
._199fglyw .ProseMirror .ak-editor-selected-node .emoji-common-emoji-sprite:before{pointer-events:none}
|
|
789
|
+
._19advbgk .resizer-handle.medium.bottom .resizer-handle-thumb{width:4pc}
|
|
760
790
|
._19bvv47k{padding-left:var(--ds-space-250,20px)}
|
|
761
791
|
._19e613gf [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled[data-invalid]+svg{cursor:not-allowed}
|
|
762
792
|
._19gqgrf3 .ProseMirror .ak-editor-panel__content>.ProseMirror-widget:first-child+.ProseMirror-widget+.code-block{margin-bottom:0!important}
|
|
@@ -801,6 +831,7 @@
|
|
|
801
831
|
._1a64bimv .multiBodiedExtensionView-content-wrap.danger>span>.multiBodiedExtension--container{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
802
832
|
._1a6x1fbg .ProseMirror ol[data-indent-level="1"]{list-style-type:decimal}
|
|
803
833
|
._1a7b15vq .resizer-handle{visibility:hidden}
|
|
834
|
+
._1aazstnw .pm-table-wrapper>table:after{position:absolute}
|
|
804
835
|
._1ab3idpf .ProseMirror-gapcursor+[layout=wrap-left]+span+[layout=wrap-right]:after{height:0}
|
|
805
836
|
._1abbbimv .bodiedExtensionView-content-wrap.danger>span>.legacy-content-header{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
806
837
|
._1abn1q9c .ProseMirror p:has(.placeholder-decoration-hide-overflow){white-space:nowrap}
|
|
@@ -818,8 +849,10 @@
|
|
|
818
849
|
._1ali9cwz div[extensionType="com.atlassian.ai-blocks"]:has(.streaming) .extension-container:before{animation-duration:1s}
|
|
819
850
|
._1aliymdr div[extensionType="com.atlassian.ai-blocks"]:has(.streaming) .extension-container:before{animation-duration:2s}
|
|
820
851
|
._1aljidpf .ak-editor-expand__icon-button{margin-top:0}
|
|
852
|
+
._1alv1r31 .ak-editor-sync-block__renderer{outline-color:currentColor}
|
|
821
853
|
._1ancidpf [layout=wrap-left]+.ProseMirror-gapcursor+span+[layout=wrap-right]>div{margin-left:0}
|
|
822
854
|
._1aolgrf3 .ProseMirror .ak-editor-panel__content>.ProseMirror-widget:first-child+.code-block{margin-left:0!important}
|
|
855
|
+
._1aqsstnw .pm-table-sticky-wrapper>table:after{position:absolute}
|
|
823
856
|
._1ato5u61 .ProseMirror .ak-editor-bodied-sync-block.danger .ak-editor-sync-block__label>span{color:var(--ds-text-danger,#ae2e24)!important}
|
|
824
857
|
._1atv187e .code{background-color:var(--ds--code--bg-color,var(--ds-background-neutral,#0515240f))}
|
|
825
858
|
._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}
|
|
@@ -830,6 +863,8 @@
|
|
|
830
863
|
._1b22tlke .unsupportedInlineView-content-wrap>span:nth-of-type(2){cursor:pointer}
|
|
831
864
|
._1b2sbimv .extensionView-content-wrap.danger>span>.extension-container{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
832
865
|
._1b3aoskh .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]:not(:first-of-type) [data-layout-content]:before{height:calc(100% - 24px)}
|
|
866
|
+
._1b3h127p .search-match-block.search-match-block-selected.search-match-dark.ak-editor-sync-block.ak-editor-selected-node{box-shadow:0 0 0 1px var(--ds-border-focused,#4688ec)}
|
|
867
|
+
._1b4h1h8x .resizer-handle.clamped.bottom .resizer-handle-thumb{width:clamp(43px,calc(100% - 2pc),6pc)}
|
|
833
868
|
._1b4zw31d .ProseMirror h3 .emoji-common-placeholder{width:20.25px}
|
|
834
869
|
._1b5hn7od table .resizer-hover-zone{padding-top:unset}
|
|
835
870
|
._1b7utlke .ak-editor-expand{cursor:pointer}
|
|
@@ -837,6 +872,7 @@
|
|
|
837
872
|
._1bao1osq .ProseMirror .code-block.ak-editor-selected-node:not(.danger):before{width:100%}
|
|
838
873
|
._1bbqglyw .ProseMirror .inlineNodeView>.assistive{-webkit-user-select:none;-ms-user-select:none;user-select:none}
|
|
839
874
|
._1bby1nu9 .inlineExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div .extension-label>span{display:inline}
|
|
875
|
+
._1bc9eawv .search-match-block.search-match-dark.ak-editor-sync-block{background-color:var(--ds-background-accent-magenta-bolder-pressed,#77325b)}
|
|
840
876
|
._1bd0idpf .fabric-editor-alignment:first-of-type:first-child h4 style:first-child+*{margin-top:0}
|
|
841
877
|
._1bdt11mm .pm-breakout-resize-handle-rail{cursor:col-resize}
|
|
842
878
|
._1bf21149 .danger>div>div>.media-card-frame{box-shadow:0 0 0 2px,var(--ds-border-danger,#e2483d)}
|
|
@@ -913,6 +949,7 @@
|
|
|
913
949
|
._1cw71ssb [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]+svg{left:50%}
|
|
914
950
|
._1cw81ule .ProseMirror a.blockLink{display:block}
|
|
915
951
|
._1cw91w2o .ProseMirror h1 :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image){width:24.25px}
|
|
952
|
+
._1cwr1ckf .search-match-block.search-match-block-selected.ak-editor-sync-block.ak-editor-selected-node{background-color:var(--ds-background-accent-magenta-subtlest-pressed,#fcb6e1)}
|
|
916
953
|
._1cx01ial .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.multiBodiedExtension--container:before{z-index:12}
|
|
917
954
|
._1czel1r9 .ProseMirror .fabric-editor-indentation-mark[data-level="3"]{margin-left:90px}
|
|
918
955
|
._1czgidpf [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap{flex-shrink:0}
|
|
@@ -942,10 +979,11 @@
|
|
|
942
979
|
._1dpngktf .ProseMirror :is(h5,h6,p) .emoji-common-placeholder{height:20px}
|
|
943
980
|
._1dpr1ntv .layout-column-divider{box-sizing:content-box}
|
|
944
981
|
._1dr7idpf .ak-editor-expand.ak-editor-selected-node:not(.danger):before{bottom:0}
|
|
945
|
-
._1drv1skh [data-prosemirror-node-name=status] .lozenge-text{font-size:11px}
|
|
946
982
|
._1dsv1wug .ProseMirror .pm-table-wrapper table[data-initial-width-mode=content]{table-layout:auto}
|
|
947
983
|
._1dtlkb7n .inlineExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-edit-toggle-container{opacity:1}
|
|
948
984
|
._1du2idpf :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:first-child:not(style){margin-top:0}
|
|
985
|
+
._1dulidpf .resizer-handle.bottom .resizer-handle-track.full-height{min-height:0}
|
|
986
|
+
._1dun1osq .resizer-handle.bottom .resizer-handle-track.full-height{width:100%}
|
|
949
987
|
._1duxidpf [layout=wrap-right]+.ProseMirror-gapcursor+span+[layout=wrap-left]:after{font-size:0}
|
|
950
988
|
._1duzbimv .ProseMirror .mediaGroupView-content-wrap.danger #newFileExperienceWrapper{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
951
989
|
._1dva1j28 .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container::selection{background-color:transparent}
|
|
@@ -1039,6 +1077,7 @@
|
|
|
1039
1077
|
._1fmnglyw [data-prosemirror-node-name=status] .lozenge-text{text-transform:none}
|
|
1040
1078
|
._1fn81j28 .ProseMirror blockquote.ak-editor-selected-node::selection{background-color:transparent}
|
|
1041
1079
|
._1focglyw .ProseMirror .ak-editor-selected-node .emoji-common-emoji-image:before{pointer-events:none}
|
|
1080
|
+
._1fpbh2mm .pm-table-wrapper>table{position:relative}
|
|
1042
1081
|
._1fpfolhs{ms-overflow-style:-ms-autohiding-scrollbar}
|
|
1043
1082
|
._1fq7glyw .ProseMirror .right-shadow:before{pointer-events:none}
|
|
1044
1083
|
._1fqx14y2 .ProseMirror .ak-editor-annotation-hover:has(.card){padding-top:5px}
|
|
@@ -1101,6 +1140,7 @@
|
|
|
1101
1140
|
._1gpc1lj4 .fabric-editor--max-width-mode{--ak-editor--line-length:min(calc(100cqw - var(--ak-editor--large-gutter-padding)*2),var(--ak-editor--max-width-layout-width))}
|
|
1102
1141
|
._1gq31o8l .ProseMirror :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image){display:inline-block}
|
|
1103
1142
|
._1gr6t94y .pm-table-container .pm-table-left-border{width:1px}
|
|
1143
|
+
._1grj1v6z .resizer-handle.bottom .resizer-handle-track.full-height{height:7px}
|
|
1104
1144
|
._1gtxusvi .ProseMirror blockquote{box-sizing:border-box}
|
|
1105
1145
|
._1gvgidpf .ProseMirror-gapcursor+[layout=wrap-left]+span+[layout=wrap-right]+*{margin-top:0}
|
|
1106
1146
|
._1gvnmqba{--ak-editor--max-width-layout-width:4000px}
|
|
@@ -1168,6 +1208,7 @@
|
|
|
1168
1208
|
._1iej6vm6 [data-prosemirror-node-name=status]>[data-color=purple] .lozenge-wrapper{background-color:var(--ds-background-discovery,#f8eefe)}
|
|
1169
1209
|
._1igostnw .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]:not(:first-of-type) [data-layout-content]:before{position:absolute}
|
|
1170
1210
|
._1igzolhs .ProseMirror .pm-table-wrapper>table{ms-overflow-style:-ms-autohiding-scrollbar}
|
|
1211
|
+
._1iikajfg .resizer-handle.small.bottom .resizer-handle-thumb{width:43px}
|
|
1171
1212
|
._1iizoqnp [data-mark-type=fragment]>.bodiedExtensionView-content-wrap{margin-top:.75rem}
|
|
1172
1213
|
._1iizvuon .ak-editor-sync-block__label{background-color:var(--ds-surface,#fff)}
|
|
1173
1214
|
._1ildstnw .ProseMirror [data-layout-section].selected.danger [data-layout-section] [data-layout-column]:not(:first-of-type) [data-layout-content]:before{position:absolute}
|
|
@@ -1175,6 +1216,7 @@
|
|
|
1175
1216
|
._1inzj35l html:not([data-color-mode=dark]) .ProseMirror .telepointer{--telepointer-participant-background-first-stop:-850000%}
|
|
1176
1217
|
._1io9glyw .ak-editor-expand__content .expand-content-wrapper{-webkit-user-select:none;-ms-user-select:none;user-select:none}
|
|
1177
1218
|
._1iod1o36 .ProseMirror hr.ak-editor-selected-node{outline-width:medium}
|
|
1219
|
+
._1ioi1j28 .pm-table-sticky-wrapper>table>tbody>tr>td[data-reaches-top]{border-top-color:transparent}
|
|
1178
1220
|
._1ip21j28 .ProseMirror .ak-editor-selected-node .emoji-common-emoji-image ::selection{background-color:transparent}
|
|
1179
1221
|
._1iphidpf .pm-table-sticky-wrapper>table>tbody>tr>td{border-bottom-width:0}
|
|
1180
1222
|
._1iq2r4us .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label.with-bodied-macro-live-page-styles{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
@@ -1197,6 +1239,7 @@
|
|
|
1197
1239
|
._1j36idpf .pm-table-wrapper>table>tbody>tr>td>:nth-child(1 of :not(style,.ProseMirror-gapcursor,.ProseMirror-widget,span)){margin-top:0}
|
|
1198
1240
|
._1j3h1bqt{--local-border-invalid:var(--ds-border-danger,#e2483d)}
|
|
1199
1241
|
._1j3iglyw .layout-column-divider-thumb{pointer-events:none}
|
|
1242
|
+
._1j3z1l7b .resizer-handle.small.bottom .resizer-handle-thumb{height:3px}
|
|
1200
1243
|
._1j6b122h .pm-breakout-resize-handle-thumb{height:clamp(27px,calc(100% - 2pc),6pc)}
|
|
1201
1244
|
._1j8ac3uk .ProseMirror .telepointer.color-5{--telepointer-participant-bg-color:var(--ds-background-accent-magenta-bolder,#ae4787)}
|
|
1202
1245
|
._1j94utpp .pm-table-wrapper>table>tbody>tr>td td p:not(:first-of-type){margin-top:var(--ds-space-150,9pt)}
|
|
@@ -1211,6 +1254,7 @@
|
|
|
1211
1254
|
._1jg61osq .ProseMirror :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image) img{width:100%}
|
|
1212
1255
|
._1jh6idpf .ProseMirror .danger .code-block .line-number-gutter:after{top:0}
|
|
1213
1256
|
._1jhcidpf .pm-breakout-resize-handle-rail{opacity:0}
|
|
1257
|
+
._1jhh1j28 .pm-table-sticky-wrapper>table>tbody>tr>th[data-reaches-left]{border-left-color:transparent}
|
|
1214
1258
|
._1ji11vg9 .ProseMirror .telepointer[class*=color-]:after{background-color:var(--telepointer-participant-bg-color)}
|
|
1215
1259
|
._1jjn1kdv .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]{-webkit-user-select:text}
|
|
1216
1260
|
._1jk91diq [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:hover+svg{--checkbox-border-color:var(--local-border-disabled)}
|
|
@@ -1259,6 +1303,7 @@
|
|
|
1259
1303
|
._1kubgktf .ProseMirror :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image){max-height:20px}
|
|
1260
1304
|
._1kudyfq0 [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=icon]>span>svg{vertical-align:bottom}
|
|
1261
1305
|
._1kvxb3bt .ProseMirror [data-layout-section].selected.danger [data-layout-section] [data-layout-column]:not(:first-of-type) [data-layout-content]:before{content:""}
|
|
1306
|
+
._1kw41ok8 .search-match-block.search-match-block-selected.search-match-dark.ak-editor-sync-block.ak-editor-selected-node{background-color:var(--ds-background-accent-magenta-bolder-hovered,#943d73)}
|
|
1262
1307
|
._1kwfidpf .ProseMirror [data-layout-section]>[data-layout-column].ak-editor-selected-node:not(.danger):before{right:0}
|
|
1263
1308
|
._1kx81j28 .dateView-content-wrap.ak-editor-selected-node .date-lozenger-container>span ::selection{background-color:transparent}
|
|
1264
1309
|
._1kxaf705 [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]:after{content:" "}
|
|
@@ -1266,6 +1311,7 @@
|
|
|
1266
1311
|
._1kz5utpp .ak-editor-content-area.appearance-full-page .ProseMirror .ak-editor-panel .ak-editor-panel__icon{padding-right:var(--ds-space-150,9pt)}
|
|
1267
1312
|
._1l071u8q .pm-table-wrapper>table>tbody>tr>th{background-clip:padding-box}
|
|
1268
1313
|
._1l0sxfcs .ProseMirror ol ol ol ol ol ol{list-style-type:lower-roman}
|
|
1314
|
+
._1l1u1j28 .pm-table-container>table>tbody>tr>th[data-reaches-bottom]:after{border-bottom-color:transparent}
|
|
1269
1315
|
._1l2jidpf .ak-editor-expand__icon-button{padding-left:0}
|
|
1270
1316
|
._1l3q1hrf [layout=wrap-right]+.ProseMirror-gapcursor+span+[layout=wrap-left]:after{clear:both}
|
|
1271
1317
|
._1l4iglyw .danger div div .media-card-frame:after{box-shadow:none}
|
|
@@ -1301,7 +1347,6 @@
|
|
|
1301
1347
|
._1luc15cr .ProseMirror .telepointer.color-5{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
1302
1348
|
._1lv01ejb [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=icon]>span>svg{height:var(--ds-space-300,24px)}
|
|
1303
1349
|
._1lviqm1h .ProseMirror .ak-editor-panel[data-panel-type=note] .ak-editor-panel__icon[data-panel-type=note]{color:var(--ds-icon-discovery,#af59e1)}
|
|
1304
|
-
._1lx57vkz [data-prosemirror-node-name=status] .lozenge-text{line-height:1pc}
|
|
1305
1350
|
._1lxan7od .resizer-item:has(table[data-initial-width-mode=content])>.resizer-hover-zone.resizer-is-extended{padding-top:unset}
|
|
1306
1351
|
._1lxyidpf .pm-table-sticky-wrapper>table>tbody>tr>th{border-right-width:0}
|
|
1307
1352
|
._1lzrw31d .ProseMirror h3 :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image){height:20.25px}
|
|
@@ -1340,6 +1385,7 @@
|
|
|
1340
1385
|
._1mqj1gly .extensionView-content-wrap.danger>span>.legacy-content-header{background-color:var(--ds-background-danger,#ffeceb)}
|
|
1341
1386
|
._1mqkstnw [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]+svg{position:absolute}
|
|
1342
1387
|
._1mrzidpf .bodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label.always-hide-label{opacity:0}
|
|
1388
|
+
._1msy1b18 .search-match-block.search-match-block-selected.ak-editor-sync-block{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)}
|
|
1343
1389
|
._1mtdidpf .ak-editor-selected-node>[data-decision-wrapper]:before{right:0}
|
|
1344
1390
|
._1mvvidpf .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.multiBodiedExtension--container:before{right:0}
|
|
1345
1391
|
._1mwo1nu9 .bodiedExtensionView-content-wrap.danger>span>div>.extension-label>span{display:inline}
|
|
@@ -1348,6 +1394,7 @@
|
|
|
1348
1394
|
._1mxyidpf [data-mark-type=fragment]>.extensionView-content-wrap{margin-left:0}
|
|
1349
1395
|
._1myqkivo [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:hover+svg{--checkbox-background-color:var(--local-background-hover)}
|
|
1350
1396
|
._1mzi17hw .ProseMirror blockquote table:last-child{display:inline-table}
|
|
1397
|
+
._1mzuglyw .ak-editor-sync-block__renderer{outline-style:none}
|
|
1351
1398
|
._1n07rq1m .show-diff-deleted-node-traditional.show-diff-deleted-active .media-card-wrapper>div{box-shadow:0 0 0 4px var(--ds-background-accent-red-subtler-pressed,#fd9891)}
|
|
1352
1399
|
._1n111fbg .ProseMirror ol{list-style-type:decimal}
|
|
1353
1400
|
._1n37v77o .fabric-background-color-mark:has(.background-color-padding-right){padding-right:var(--ds-space-025,2px)}
|
|
@@ -1377,6 +1424,7 @@
|
|
|
1377
1424
|
._1nq1kb7n .inlineExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label{opacity:1}
|
|
1378
1425
|
._1nq21fbg .ProseMirror ol ol ol ol{list-style-type:decimal}
|
|
1379
1426
|
._1nqeh2mm .ProseMirror .ak-editor-panel{position:relative}
|
|
1427
|
+
._1nskqxcq .search-match-block.search-match-block-selected.search-match-dark.ak-editor-sync-block{box-shadow:inset 0 0 0 1px var(--ds-background-accent-magenta-bolder,#ae4787),inset 0 0 0 4px var(--ds-background-accent-magenta-bolder-hovered,#943d73)}
|
|
1380
1428
|
._1nt1kb7n .ProseMirror .ak-editor-bodied-sync-block:hover .ak-editor-sync-block__label{opacity:1}
|
|
1381
1429
|
._1ntuglyw .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:before{pointer-events:none}
|
|
1382
1430
|
._1nu9i8nm .pm-table-wrapper>table th:not(.danger) .code-block:not(.danger) .code-block-content-wrapper{background-color:var(--ds-background-neutral,#0515240f)}
|
|
@@ -1438,6 +1486,7 @@
|
|
|
1438
1486
|
._1otu1txw .ak-editor-expand__title-container{display:flex}
|
|
1439
1487
|
._1otv1gly .multiBodiedExtensionView-content-wrap.danger>span>.extension-container{background-color:var(--ds-background-danger,#ffeceb)}
|
|
1440
1488
|
._1oug1gly [data-prosemirror-node-name=status]>[data-color=red] .lozenge-wrapper{background-color:var(--ds-background-danger,#ffeceb)}
|
|
1489
|
+
._1owd1j28 .pm-table-wrapper>table>tbody>tr>td[data-reaches-top]{border-top-color:transparent}
|
|
1441
1490
|
._1owdidpf .ProseMirror li .rich-media-item{margin-top:0}
|
|
1442
1491
|
._1owy1l7b .ProseMirror .ak-editor-annotation-focus:has([data-inline-card]){padding-bottom:3px}
|
|
1443
1492
|
._1oxabimv .inlineExtensionView-content-wrap.danger>span>.extension-container{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
@@ -1470,8 +1519,10 @@
|
|
|
1470
1519
|
._1pg112et .ProseMirror .ak-editor-sync-block{margin-left:-19px}
|
|
1471
1520
|
._1pg2v77o .gridParent{margin-left:var(--ds-space-025,2px)}
|
|
1472
1521
|
._1pg2xmi2 .gridParent{margin-left:var(--ds-space-negative-150,-9pt)}
|
|
1522
|
+
._1pgxidpf .resizer-handle.bottom .resizer-handle-thumb{margin-left:0}
|
|
1473
1523
|
._1pgzvbgk .resizer-handle.medium .resizer-handle-thumb{height:4pc}
|
|
1474
1524
|
._1pi817vv .ProseMirror h1>:is(a,span[data-mark-type=border]) .media-inline-image-wrapper{transform:translateY(-3px)}
|
|
1525
|
+
._1pj5glyw .pm-table-sticky-wrapper>table:after{pointer-events:none}
|
|
1475
1526
|
._1pjl15cr .ProseMirror .telepointer.color-1{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
1476
1527
|
._1pjt14y2 .ProseMirror .ak-editor-annotation-focus:has(.card){padding-top:5px}
|
|
1477
1528
|
._1pjtr5cr .ProseMirror .ProseMirror-gapcursor.-left span:after{left:var(--ds-space-negative-050,-4px)}
|
|
@@ -1483,6 +1534,7 @@
|
|
|
1483
1534
|
._1psiidpf .ak-editor-expand.ak-editor-selected-node:not(.danger):before{left:0}
|
|
1484
1535
|
._1pt1idpf .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label.always-hide-label{opacity:0}
|
|
1485
1536
|
._1pvf1xf3 .search-match-block.ak-editor-selected-node .date-lozenger-container>span{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)}
|
|
1537
|
+
._1pxn16xz .resizer-handle.large.bottom .resizer-handle-thumb{width:6pc}
|
|
1486
1538
|
._1pycidpf .fabric-editor-alignment:first-of-type:first-child h3 style:first-child+*{margin-top:0}
|
|
1487
1539
|
._1pye1qg1 .ProseMirror .telepointer.color-7{--telepointer-participant-bg-color:var(--ds-background-accent-orange-bolder,#bd5b00)}
|
|
1488
1540
|
._1pzi1nu9 .ProseMirror .ProseMirror-fake-text-cursor:after{display:inline}
|
|
@@ -1505,6 +1557,7 @@
|
|
|
1505
1557
|
._1qenftgi .ProseMirror [data-layout-section] [data-layout-column]+[data-layout-column]{margin-left:8px}
|
|
1506
1558
|
._1qer1kdv .ProseMirror .ak-editor-selected-node .emoji-common-emoji-image{-webkit-user-select:text}
|
|
1507
1559
|
._1qg7grf3 .ProseMirror .ak-editor-panel__content>.ProseMirror-widget:first-child+.ProseMirror-widget+.code-block{margin-right:0!important}
|
|
1560
|
+
._1qgo1ckf .search-match-block.search-match-block-selected.ak-editor-sync-block{background-color:var(--ds-background-accent-magenta-subtlest-pressed,#fcb6e1)}
|
|
1508
1561
|
._1qihyh40 .ProseMirror .ak-editor-annotation-hover{padding-bottom:2px}
|
|
1509
1562
|
._1qikidpf .ProseMirror>.ak-editor-expand:first-child{margin-top:0}
|
|
1510
1563
|
._1qil1l2s [data-prosemirror-node-name=taskItem] [data-component=placeholder]{text-overflow:ellipsis}
|
|
@@ -1544,6 +1597,7 @@
|
|
|
1544
1597
|
._1r9butpp .ProseMirror{margin-left:var(--ds-space-150,9pt)}
|
|
1545
1598
|
._1rakidpf .ProseMirror .danger.code-block .line-number-gutter:after{left:0}
|
|
1546
1599
|
._1raq1poh .editor-mention-primitive{padding-left:.23em}
|
|
1600
|
+
._1rb014no .resizer-handle.bottom .resizer-handle-track.full-height{min-width:36px}
|
|
1547
1601
|
._1rcq1hrf .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]:after{clear:both}
|
|
1548
1602
|
._1rda5w2r{--local-tick-checked:var(--ds-icon-inverse,#fff)}
|
|
1549
1603
|
._1rdsfs2f .ak-editor-expand{transition-duration:.3s,.3s}
|
|
@@ -1569,6 +1623,7 @@
|
|
|
1569
1623
|
._1rtu1txw [data-prosemirror-node-name=taskItem] [data-component=task-item-main]{display:flex}
|
|
1570
1624
|
._1rvo7wq0 .ProseMirror .ak-editor-selected-node .emoji-common-emoji-image:before{background-color:var(--ds-blanket-selected,#388bff14)}
|
|
1571
1625
|
._1rxifs5d .layout-section-container{container-name:layout-area}
|
|
1626
|
+
._1rxpstnw .pm-table-container>table:after{position:absolute}
|
|
1572
1627
|
._1rxqnqa1 .ProseMirror a[data-prosemirror-mark-name=link]{text-decoration-style:solid}
|
|
1573
1628
|
._1rykb3bt .ProseMirror [data-layout-section] [data-empty-layout=true] [data-layout-column]:not(:first-of-type) [data-layout-content]:before{content:""}
|
|
1574
1629
|
._1ryt1j28 .extensionView-content-wrap.danger>span>.with-danger-overlay{background-color:transparent}
|
|
@@ -1578,6 +1633,7 @@
|
|
|
1578
1633
|
._1s2g15vq .ProseMirror .ak-editor-sync-block:has(.ak-editor-sync-block__loading_state) .ak-editor-sync-block__label{visibility:hidden}
|
|
1579
1634
|
._1s2t1mrw div[extensionType="com.atlassian.ai-blocks"] .extension-container:before{z-index:-1}
|
|
1580
1635
|
._1s5oiro1 .search-match-block.search-match-block-selected.search-match-dark.ak-editor-selected-node .date-lozenger-container>span{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db),0 0 0 4px var(--ds-background-accent-magenta-bolder-hovered,#943d73),0 0 0 5px var(--ds-background-accent-magenta-bolder,#ae4787)}
|
|
1636
|
+
._1s681j28 .pm-table-wrapper>table>tbody>tr>td[data-reaches-left]{border-left-color:transparent}
|
|
1581
1637
|
._1s773mia .extension-container [data-macro-name=toc] * :not(.status-lozenge-span *){font-size:var(--ak-editor-base-font-size)}
|
|
1582
1638
|
._1s981isi .ProseMirror .code-block .code-block-gutter-pseudo-element:before{content:attr(data-label)}
|
|
1583
1639
|
._1s9j1osq [data-layout-section] .statusView-content-wrap>span{width:100%}
|
|
@@ -1627,6 +1683,7 @@
|
|
|
1627
1683
|
._1tdl1i6y .fabric-background-color-mark:has(.background-color-padding-right){margin-right:var(--ds-space-negative-025,-2px)}
|
|
1628
1684
|
._1tenidpf .fabric-editor-alignment:first-of-type:first-child h5 style:first-child+*{margin-top:0}
|
|
1629
1685
|
._1texusic .ProseMirror .ProseMirror-gapcursor[layout=wrap-right]{float:right}
|
|
1686
|
+
._1tfl1j28 .pm-table-sticky-wrapper>table>tbody>tr>td[data-reaches-left]{border-left-color:transparent}
|
|
1630
1687
|
._1tfz1nu9 .multiBodiedExtensionView-content-wrap.danger>span>div>.extension-label>span{display:inline}
|
|
1631
1688
|
._1tieidpf :not(.fabric-editor-block-mark)>h3 style:first-child+*{margin-top:0}
|
|
1632
1689
|
._1tiyh2mm .ProseMirror .right-shadow{position:relative}
|
|
@@ -1634,9 +1691,11 @@
|
|
|
1634
1691
|
._1tkg1j28 .inlineCardView-content-wrap .card .loader-wrapper>a:focus::selection{background-color:transparent}
|
|
1635
1692
|
._1tlp1x4e .ProseMirror p{font-size:1em}
|
|
1636
1693
|
._1tot17vv .ProseMirror h2>:is(a,span[data-mark-type=border]) .media-inline-image-wrapper{transform:translateY(-3px)}
|
|
1694
|
+
._1tp41v6z .resizer-handle.bottom{height:7px}
|
|
1637
1695
|
._1tqsazsu .editor-mention-primitive{color:var(--ds-text-subtle,#505258)}
|
|
1638
1696
|
._1trh7xuz .search-match{background-color:var(--ds-background-accent-teal-subtlest,#e7f9ff)}
|
|
1639
1697
|
._1trqp1qy .ProseMirror h6>:is(a,span[data-mark-type=border]) .mediaInlineView-content-wrap>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
1698
|
+
._1trrglyw .pm-table-wrapper>table:after{pointer-events:none}
|
|
1640
1699
|
._1tsjglyw .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-column]:before{pointer-events:none}
|
|
1641
1700
|
._1tsoidpf .extensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label.always-hide-label{opacity:0}
|
|
1642
1701
|
._1ttmglyw [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:active+svg{pointer-events:none}
|
|
@@ -1655,6 +1714,7 @@
|
|
|
1655
1714
|
._1u29kb7n [data-prosemirror-node-name=blockTaskItem] [data-component=content]{flex-shrink:1}
|
|
1656
1715
|
._1u2ww31d .ProseMirror h3 .emoji-common-placeholder{height:20.25px}
|
|
1657
1716
|
._1u4a1ule .pm-table-container .pm-table-left-border{display:block}
|
|
1717
|
+
._1u4aglyw .pm-table-container .pm-table-left-border{display:none}
|
|
1658
1718
|
._1u6pkb7n .extensionView-content-wrap.danger>span>div>.extension-label{opacity:1}
|
|
1659
1719
|
._1u701ule .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{display:block}
|
|
1660
1720
|
._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}
|
|
@@ -1662,10 +1722,12 @@
|
|
|
1662
1722
|
._1u7yidpf .ProseMirror [data-layout-section]>.layout-column-divider{flex-shrink:0}
|
|
1663
1723
|
._1u7ymz2b [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:focus+svg{--checkbox-background-color:var(--local-background-disabled)}
|
|
1664
1724
|
._1u8dp3kn div[extensionType="com.atlassian.ai-blocks"]:has(.streaming) .extension-container:after{animation-timing-function:linear}
|
|
1725
|
+
._1u9gidpf .pm-table-container[data-number-column=true]>.pm-table-sticky-wrapper>table:after{border-top-left-radius:0}
|
|
1665
1726
|
._1ua7bx47 .ProseMirror .ak-editor-sync-block.creation-loading{background-clip:padding-box,border-box}
|
|
1666
1727
|
._1ub4nkob .ProseMirror :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image){vertical-align:middle}
|
|
1667
1728
|
._1ubf1vop .ProseMirror .telepointer.color-3{--telepointer-participant-bg-color:var(--ds-background-accent-yellow-bolder,#946f00)}
|
|
1668
1729
|
._1ubhidpf .ProseMirror .ak-editor-annotation-blur{padding-right:0}
|
|
1730
|
+
._1ubpkb7n .pm-table-wrapper>table:after{z-index:1}
|
|
1669
1731
|
._1uc7m0zr .ProseMirror [layout^=wrap-]+[layout^=wrap-]+ol{clear:both!important}
|
|
1670
1732
|
._1ucti7uo .editor-mention-primitive.mention-restricted{color:var(--ds-text,#292a2e)}
|
|
1671
1733
|
._1uddtdv8 .selected-search-match{background-color:var(--ds-background-accent-teal-subtle,#6cc3e0)}
|
|
@@ -1673,6 +1735,7 @@
|
|
|
1673
1735
|
._1uer1hrf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]:after{clear:both}
|
|
1674
1736
|
._1uf8idpf :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) h1:first-child:not(style){margin-top:0}
|
|
1675
1737
|
._1ug01mi1 .fabric-editor-breakout-mark:has([data-prosemirror-node-name=layoutSection])>.pm-breakout-resize-handle-container--right{right:-25px}
|
|
1738
|
+
._1uhsh2mm .pm-table-container>table{position:relative}
|
|
1676
1739
|
._1uj7idpf :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) p style:first-child+*{margin-top:0}
|
|
1677
1740
|
._1ujg1n1a div[extensionType="com.atlassian.ai-blocks"] .extension-container:after{top:-1px}
|
|
1678
1741
|
._1uln1vmz .pm-table-container .pm-table-right-border{height:calc(100% - var(--ds-space-300, 24px))}
|
|
@@ -1737,6 +1800,7 @@
|
|
|
1737
1800
|
._1w6ap3kn .ProseMirror .ak-editor-bodied-sync-block.creation-loading{animation-timing-function:linear}
|
|
1738
1801
|
._1w6y1l2s [data-prosemirror-node-name=status] .lozenge-text{text-overflow:ellipsis}
|
|
1739
1802
|
._1w721ule .pm-table-container .pm-table-right-border{display:block}
|
|
1803
|
+
._1w72glyw .pm-table-container .pm-table-right-border{display:none}
|
|
1740
1804
|
._1w9719k1 .embedCardView-content-wrap.danger .media-card-frame:after{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)!important}
|
|
1741
1805
|
._1w9miro1 .search-match-block.search-match-block-selected.search-match-dark.ak-editor-selected-node .editor-mention-primitive{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db),0 0 0 4px var(--ds-background-accent-magenta-bolder-hovered,#943d73),0 0 0 5px var(--ds-background-accent-magenta-bolder,#ae4787)}
|
|
1742
1806
|
._1wb01yvi .inlineExtensionView-content-wrap.danger>span>.with-danger-overlay .extension-overlay{background-color:var(--ds-background-danger-hovered,#ffd5d2)}
|
|
@@ -1749,6 +1813,7 @@
|
|
|
1749
1813
|
._1wfa1pd9 .ProseMirror h3{font-weight:var(--ds-font-weight-semibold,600)}
|
|
1750
1814
|
._1wgaidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]+*>*{margin-top:0}
|
|
1751
1815
|
._1wgw13gf [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled+svg{cursor:not-allowed}
|
|
1816
|
+
._1wh51v6z .resizer-handle.bottom .resizer-handle-track{height:7px}
|
|
1752
1817
|
._1wh8idpf .ProseMirror>div[data-layout-section]:first-child{margin-top:0}
|
|
1753
1818
|
._1wio7wq0 .ak-editor-selected-node>[data-decision-wrapper]:before{background-color:var(--ds-blanket-selected,#388bff14)}
|
|
1754
1819
|
._1wjtmslj .fabric-editor-breakout-mark:has([data-prosemirror-node-name=expand])>.pm-breakout-resize-handle-container{height:calc(100% - 4px)}
|
|
@@ -1756,6 +1821,7 @@
|
|
|
1756
1821
|
._1wk8glyw .ProseMirror table .rich-media-item.image-wrap-left[data-layout]{clear:none}
|
|
1757
1822
|
._1wmeidpf [data-mark-type=fragment]>[data-mark-type=dataConsumer]>.bodiedExtensionView-content-wrap{margin-right:0}
|
|
1758
1823
|
._1wmugrf3 .ak-editor-panel__content>div[data-task-list-local-id]:first-child{margin-bottom:0!important}
|
|
1824
|
+
._1wqp1osq .resizer-handle.bottom{width:100%}
|
|
1759
1825
|
._1wr91n1a .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:after{right:-1px}
|
|
1760
1826
|
._1wsxr4us .ak-editor-panel.ak-editor-selected-node:not(.danger){box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
1761
1827
|
._1wtktlke .ak-editor-expand__title-container{cursor:pointer}
|
|
@@ -1857,6 +1923,7 @@
|
|
|
1857
1923
|
._1ys91j28 .ProseMirror:has(.ProseMirror-gapcursor){caret-color:transparent}
|
|
1858
1924
|
._1yssoqnp [data-mark-type=fragment]>[data-mark-type=dataConsumer]>.bodiedExtensionView-content-wrap{margin-bottom:.75rem}
|
|
1859
1925
|
._1yvb1vek [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:checked:active+svg{--checkbox-border-color:var(--local-border-active)}
|
|
1926
|
+
._1yvx1j28 .pm-table-container>table>tbody>tr>td[data-reaches-left]{border-left-color:transparent}
|
|
1860
1927
|
._1yzk1osq .ProseMirror .sentinel-right{height:100%}
|
|
1861
1928
|
._1z0h1ule [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]:after{display:block}
|
|
1862
1929
|
._1z0n1osq .ProseMirror .ProseMirror-gapcursor span:after{height:100%}
|
|
@@ -1872,6 +1939,7 @@
|
|
|
1872
1939
|
._28m71j28 .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container::-moz-selection{background-color:transparent}
|
|
1873
1940
|
._2b661rsu .ProseMirror .telepointer.color-14{--telepointer-participant-bg-color:var(--ds-background-accent-green-subtle,#4bce97)}
|
|
1874
1941
|
._2blv1b66 .ProseMirror .ak-editor-bodied-sync-block.danger .ak-editor-sync-block__label{padding-top:var(--ds-space-050,4px)}
|
|
1942
|
+
._2cbt1j28 .pm-table-wrapper>table>tbody>tr>th[data-reaches-bottom]:after{border-bottom-color:transparent}
|
|
1875
1943
|
._2cv31fkg [data-prosemirror-node-name=status]>[data-color=neutral]>.lozenge-wrapper{background-color:#dddee1}
|
|
1876
1944
|
._2cv3i8nm [data-prosemirror-node-name=status]>[data-color=neutral]>.lozenge-wrapper{background-color:var(--ds-background-neutral,#0515240f)}
|
|
1877
1945
|
._2cyhtlke .media-filmstrip-list-item{cursor:pointer}
|
|
@@ -2069,6 +2137,7 @@
|
|
|
2069
2137
|
._6bmtj39m .ProseMirror .ak-editor-panel .ak-editor-panel__icon .emoji-common-emoji-image{vertical-align:-3px}
|
|
2070
2138
|
._6bv41osq .multiBodiedExtensionView-content-wrap .multiBodiedExtension--container{max-width:100%}
|
|
2071
2139
|
._6bz7r4us .inlineCardView-content-wrap.ak-editor-selected-node .loader-wrapper>a{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
2140
|
+
._6c42vrvc .resizer-handle.bottom{flex-direction:row}
|
|
2072
2141
|
._6e1zkb7n .ak-editor-sync-block__label{z-index:1}
|
|
2073
2142
|
._6eqhi8nm [data-prosemirror-node-name=status] .lozenge-wrapper{background-color:var(--ds-background-neutral,#0515240f)}
|
|
2074
2143
|
._6f0lidpf .ProseMirror .ak-editor-annotation-focus{padding-left:0}
|
|
@@ -2118,6 +2187,7 @@
|
|
|
2118
2187
|
._7df91l2s [data-prosemirror-node-name=blockTaskItem] [data-component=placeholder]{text-overflow:ellipsis}
|
|
2119
2188
|
._7fayidpf [layout=wrap-right]+.ProseMirror-gapcursor+span+[layout=wrap-left]>div{margin-bottom:0}
|
|
2120
2189
|
._7gsu17v8 .search-match-block.search-match-dark .loader-wrapper>div:after{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)}
|
|
2190
|
+
._7hi11kdv .ak-editor-sync-block__renderer{cursor:text}
|
|
2121
2191
|
._7hj6glyw .inlineExtensionView-content-wrap.danger.ak-editor-selected-node>span>.extension-edit-toggle-container>.extension-edit-toggle{box-shadow:none}
|
|
2122
2192
|
._7hwtidpf .ProseMirror-gapcursor+[layout=wrap-left]+[layout=wrap-right]>div{margin-left:0}
|
|
2123
2193
|
._7ilp1g72 [data-prosemirror-node-name=status]>[data-color=purple] .lozenge-text{color:var(--ds-text-discovery-bolder,#48245d)}
|
|
@@ -2158,6 +2228,7 @@
|
|
|
2158
2228
|
._87u1cuai .ProseMirror ol{padding-left:var(--ed--list--item-counter--padding,24px)}
|
|
2159
2229
|
._885k12c5 .ProseMirror .ak-editor-bodied-sync-block.creation-loading{animation-iteration-count:infinite}
|
|
2160
2230
|
._88s71gly .danger>span>a{background-color:var(--ds-background-danger,#ffeceb)}
|
|
2231
|
+
._8b5n1j28 .ak-editor-sync-block__renderer{caret-color:transparent}
|
|
2161
2232
|
._8c1au2gc .ak-editor-sync-block__label{padding-left:var(--ds-space-100,8px)}
|
|
2162
2233
|
._8cmh15vq .extensionView-content-wrap .extension-container{overflow-y:hidden}
|
|
2163
2234
|
._8ctj1b4h .gridParent{width:calc(100% + 2px)}
|
|
@@ -2179,6 +2250,7 @@
|
|
|
2179
2250
|
._8zqr2lzm .pm-table-wrapper>table th:not(.danger) .code-block:not(.danger) .code-block-content-wrapper{background-image:var(--ak-editor--table-overflow-shadow)}
|
|
2180
2251
|
._8zz2idpf .pm-table-container>table>tbody>tr>th{border-right-width:0}
|
|
2181
2252
|
._90e31tcg .ProseMirror .danger.code-block .line-number-gutter:after{width:24px}
|
|
2253
|
+
._91c11j28 .pm-table-sticky-wrapper>table>tbody>tr>th[data-reaches-top]{border-top-color:transparent}
|
|
2182
2254
|
._91ca1lpd .fabric-editor-breakout-mark:has([data-prosemirror-node-name=codeBlock])>.pm-breakout-resize-handle-container--left{left:-5px}
|
|
2183
2255
|
._92g41l7b .ProseMirror .ak-editor-annotation-blur:has(.card){padding-bottom:3px}
|
|
2184
2256
|
._92lqs4qr .ProseMirror .danger .ak-editor-panel[data-panel-type=success] .ak-editor-panel__icon[data-panel-type=success]{color:var(--ds-icon-danger,#c9372c)}
|
|
@@ -2242,6 +2314,7 @@
|
|
|
2242
2314
|
._ab8t1j28 .inlineCardView-content-wrap.ak-editor-selected-node .loader-wrapper>a ::-moz-selection{background-color:transparent}
|
|
2243
2315
|
._abre6hgr .ProseMirror .code-block .line-number-gutter:before{content:"1"}
|
|
2244
2316
|
._ad3aidpf ol[data-node-type=decisionList].ak-editor-selected-node:before{right:0}
|
|
2317
|
+
._adpe1o36 .ak-editor-sync-block__renderer{outline-width:medium}
|
|
2245
2318
|
._ae5ebimv .ProseMirror .mediaInlineView-content-wrap.ak-editor-selected-node.danger>span>span[role=button]{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
2246
2319
|
._af7gi8nm .code{--ds--code--bg-color:var(--ds-background-neutral,#0515240f)}
|
|
2247
2320
|
._ago7h2mm .inlineCardView-content-wrap .loader-wrapper>a{position:relative}
|
|
@@ -2280,6 +2353,7 @@
|
|
|
2280
2353
|
._b0ld1tmw .ProseMirror .danger .code-block .line-number-gutter{color:var(--ds-text-danger,#ae2e24)}
|
|
2281
2354
|
._b1o8grf3 .ProseMirror li:has(>ol:only-child)>ol{margin-top:0!important}
|
|
2282
2355
|
._b23zp1qy .ProseMirror h4>:is(a,span[data-mark-type=border]) .media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2356
|
+
._b2sf127p .search-match-block.search-match-block-selected.ak-editor-sync-block.ak-editor-selected-node{box-shadow:0 0 0 1px var(--ds-border-focused,#4688ec)}
|
|
2283
2357
|
._b3evgrf3 .ProseMirror .ak-editor-panel__content>.code-block:first-child{margin-left:0!important}
|
|
2284
2358
|
._b3l7idpf .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]:before{bottom:0}
|
|
2285
2359
|
._b3ovyh40 .fabric-background-color-mark{padding-bottom:2px}
|
|
@@ -2296,6 +2370,7 @@
|
|
|
2296
2370
|
._b9adidpf :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) h4 style:first-child+*{margin-top:0}
|
|
2297
2371
|
._b9ejidpf .ProseMirror .sentinel-right{width:0}
|
|
2298
2372
|
._b9gt1dzh .search-match-block.search-match-block-selected.ak-editor-selected-node [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),0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
2373
|
+
._b9lsidpf .pm-table-container[data-number-column=true]>.pm-table-wrapper>table:after{border-top-left-radius:0}
|
|
2299
2374
|
._bbrv19by [aria-label="Selection toolbar"]{animation-name:k1xe95hp}
|
|
2300
2375
|
._bc4d1r31 .ak-editor-expand__title-input{outline-color:currentColor}
|
|
2301
2376
|
._bdsqcs5v .layout-column-divider{z-index:2}
|
|
@@ -2307,6 +2382,7 @@
|
|
|
2307
2382
|
._bmfv9cwz .ProseMirror .ProseMirror-gapcursor span:after{animation-duration:1s}
|
|
2308
2383
|
._bmm0stnw .ak-editor-selected-node>[data-decision-wrapper]:before{position:absolute}
|
|
2309
2384
|
._bmvah2mm .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]{position:relative}
|
|
2385
|
+
._bo7q17v8 .search-match-block.search-match-dark.ak-editor-sync-block{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)}
|
|
2310
2386
|
._bo7r1l7b .richMedia-resize-handle-right:after{width:3px}
|
|
2311
2387
|
._bp3fglyw .multiBodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label{box-shadow:none}
|
|
2312
2388
|
._bq4v1j28 .bodiedExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container::-moz-selection{background-color:transparent}
|
|
@@ -2314,7 +2390,6 @@
|
|
|
2314
2390
|
._bqovidpf .ak-editor-expand__icon-button{margin-bottom:0}
|
|
2315
2391
|
._bqvk1osq .ak-editor-expand.ak-editor-selected-node:not(.danger):after{height:100%}
|
|
2316
2392
|
._briz1wdg .search-match-block.search-match-dark .date-lozenger-container>span{box-shadow:0 0 0 4px var(--ds-background-accent-magenta-bolder-pressed,#77325b),0 0 0 5px var(--ds-background-accent-magenta-bolder,#ae4787)}
|
|
2317
|
-
._brz2ttxp [data-prosemirror-node-name=status] .lozenge-text{font-family:var(--ds-font-family-body,"Atlassian Sans",ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif)}
|
|
2318
2393
|
._btw31yvi .multiBodiedExtensionView-content-wrap.danger>span>.with-danger-overlay .extension-overlay{background-color:var(--ds-background-danger-hovered,#ffd5d2)}
|
|
2319
2394
|
._bur2idpf .ProseMirror .ProseMirror-gapcursor:first-of-type+blockquote{margin-top:0}
|
|
2320
2395
|
._bvii1j28 .embedCardView-content-wrap.ak-editor-selected-node .loader-wrapper>div:after::-moz-selection{background-color:transparent}
|
|
@@ -2404,6 +2479,7 @@
|
|
|
2404
2479
|
._dlrj1i6y [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:checked:focus+svg{outline-offset:var(--ds-space-negative-025,-2px)}
|
|
2405
2480
|
._dnlnm0zr .ProseMirror [layout^=wrap-]+[layout^=wrap-]+h2{clear:both!important}
|
|
2406
2481
|
._dnsrtlke .ProseMirror .ak-editor-annotation-focus{cursor:pointer}
|
|
2482
|
+
._dpkjh2mm .pm-table-sticky-wrapper>table{position:relative}
|
|
2407
2483
|
._dpu9p1qy .ProseMirror h3>:is(a,span[data-mark-type=border]) .mediaInlineView-content-wrap>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2408
2484
|
._drld15vq [layout=wrap-right]+.ProseMirror-gapcursor+span+[layout=wrap-left]:after{visibility:hidden}
|
|
2409
2485
|
._drnbtlke .ProseMirror .ak-editor-annotation-hover{cursor:pointer}
|
|
@@ -2457,6 +2533,7 @@
|
|
|
2457
2533
|
._evu61gly .ProseMirror [data-layout-section].selected.danger [data-layout-section]{background-color:var(--ds-background-danger,#ffeceb)}
|
|
2458
2534
|
._ew2in7od table .resizer-hover-zone.resizer-is-extended{padding-left:unset}
|
|
2459
2535
|
._ew481ule .ProseMirror blockquote p{display:block}
|
|
2536
|
+
._eyiwidpf .resizer-handle.bottom .resizer-handle-thumb{min-height:0}
|
|
2460
2537
|
._eyy71h6o .layout-column-divider{align-items:center}
|
|
2461
2538
|
._eyyf1j28 .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]::selection{background-color:transparent}
|
|
2462
2539
|
._ez5019og .show-diff-deleted-node-traditional .media-card-wrapper>div{box-shadow:0 0 0 var(--diff-decoration-marker-ring-width,1px) var(--ds-border-accent-red,#e2483d)}
|
|
@@ -2465,6 +2542,7 @@
|
|
|
2465
2542
|
._f2dr1j28 .inlineExtensionView-content-wrap.danger>span>.with-danger-overlay{background-color:transparent}
|
|
2466
2543
|
._f30jidpf .pm-table-header-content-wrap :not(p,.fabric-editor-block-mark)+div.fabric-editor-block-mark p:first-of-type{margin-top:0}
|
|
2467
2544
|
._f3d81wq8 .ProseMirror h1{font-weight:var(--ds-font-weight-medium,500)}
|
|
2545
|
+
._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)}
|
|
2468
2546
|
._f4wb1b66 .ProseMirror .ak-editor-sync-block.danger .ak-editor-sync-block__label{padding-top:var(--ds-space-050,4px)}
|
|
2469
2547
|
._f50o1j5o .ProseMirror h1 strong{font-weight:var(--editor-font-ugc-token-weight-heading-bold)}
|
|
2470
2548
|
._f561cs5v .resizer-handle-thumb{z-index:2}
|
|
@@ -2480,6 +2558,7 @@
|
|
|
2480
2558
|
._fcmlkb7n .ProseMirror .code-block-content-wrapper>.code-content{flex-shrink:1}
|
|
2481
2559
|
._ffe41j28 .ProseMirror .code-block.ak-editor-selected-node:not(.danger) ::selection{background-color:transparent}
|
|
2482
2560
|
._ffpwidpf .ak-editor-selected-node.unsupportedBlockView-content-wrap>div:after{top:0}
|
|
2561
|
+
._fgk3idpf .pm-table-container[data-number-column=true]>.pm-table-wrapper>table:after{border-bottom-left-radius:0}
|
|
2483
2562
|
._fhbe16z4 .ProseMirror .telepointer.telepointer-pulse-animate .telepointer-fullname{animation-duration:2.5s}
|
|
2484
2563
|
._fjhfglyw [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=icon]>span>svg{pointer-events:none}
|
|
2485
2564
|
._fk2nidpf :not(.fabric-editor-block-mark)>.heading-wrapper style:first-child+*{margin-top:0}
|
|
@@ -2498,6 +2577,7 @@
|
|
|
2498
2577
|
._fpkgbimv .ProseMirror [data-layout-section].selected.danger [data-layout-section]{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
2499
2578
|
._fpkgpufw .ProseMirror [data-layout-section].selected.danger [data-layout-section]{box-shadow:0 0 0 0 var(--ds-border-danger,#e2483d)}
|
|
2500
2579
|
._fpn9stnw .ProseMirror .placeholder-decoration .placeholder-android{position:absolute}
|
|
2580
|
+
._frzgb3bt .pm-table-container>table:after{content:""}
|
|
2501
2581
|
._fsoe13gw .ProseMirror .telepointer.telepointer-pulse-during-tr .telepointer-initial{animation-name:k1g8d6yk}
|
|
2502
2582
|
._ft1bidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]:after{font-size:0}
|
|
2503
2583
|
._ftgeidpf .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:before{bottom:0}
|
|
@@ -2533,6 +2613,7 @@
|
|
|
2533
2613
|
._gae8usvi [data-prosemirror-node-name=status] .lozenge-wrapper{box-sizing:border-box}
|
|
2534
2614
|
._gbpf1tsb .ProseMirror .ak-editor-sync-block.user-is-dragging{box-shadow:0 0 0 1px var(--ds-border,#0b120e24)}
|
|
2535
2615
|
._gc15idpf .bodiedExtensionView-content-wrap .extension-container .bodiedExtension-content-outer-wrapper{margin-right:0}
|
|
2616
|
+
._gce61kdv .ak-editor-sync-block__renderer [data-layout-section]{cursor:text}
|
|
2536
2617
|
._gcu91ytf .ProseMirror .telepointer.telepointer-pulse-during-tr .telepointer-initial{animation-timing-function:ease-in-out}
|
|
2537
2618
|
._gdg21kdv .ProseMirror :is(p,h1,h2,h3,h4,h5,h6):not(:is(ul,ol,div[data-node-type=actionList]) :is(p,h1,h2,h3,h4,h5,h6)).ak-editor-selected-node:not(.ak-editor-selected-node *){-webkit-user-select:text}
|
|
2538
2619
|
._gdp01osq .ProseMirror .ProseMirror-gapcursor span{width:100%}
|
|
@@ -2551,6 +2632,7 @@
|
|
|
2551
2632
|
._gogjidpf .bodiedExtensionView-content-wrap .extension-container .bodiedExtension-content-inner-wrapper{margin-top:0}
|
|
2552
2633
|
._gpgbe0wb .ProseMirror :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image){min-width:16.25px}
|
|
2553
2634
|
._gpgbgktf .ProseMirror :is(.emoji-common-emoji-sprite,.emoji-common-emoji-image){min-width:20px}
|
|
2635
|
+
._gpptagmp .ProseMirror .ak-editor-selected-node .ak-editor-sync-block__renderer span[data-emoji-id]{box-shadow:none!important}
|
|
2554
2636
|
._gptrh2mm ol[data-node-type=decisionList].ak-editor-selected-node{position:relative}
|
|
2555
2637
|
._grya7wq0 .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-column]:before{background-color:var(--ds-blanket-selected,#388bff14)}
|
|
2556
2638
|
._gsu5idpf [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=content]{margin-top:0}
|
|
@@ -2565,6 +2647,7 @@
|
|
|
2565
2647
|
._gw0eutpp .pm-table-container>table>tbody>tr>td td p:not(:first-of-type){margin-top:var(--ds-space-150,9pt)}
|
|
2566
2648
|
._gx3t1b66 div[data-task-list-local-id] div[data-task-list-local-id]{margin-top:var(--ds-space-050,4px)}
|
|
2567
2649
|
._gx5jidpf [data-prosemirror-node-name=taskItem] [data-component=placeholder]{margin-top:0}
|
|
2650
|
+
._gxklv9ra .search-match-block.ak-editor-sync-block.ak-editor-selected-node{background-color:var(--ds-background-accent-magenta-subtler,#fdd0ec)}
|
|
2568
2651
|
._gzgh1s89 .search-match-block.search-match-block-selected .editor-mention-primitive{box-shadow:0 0 0 4px var(--ds-background-accent-magenta-subtlest-pressed,#fcb6e1),0 0 0 5px var(--ds-background-accent-magenta-bolder-hovered,#943d73)}
|
|
2569
2652
|
._gzj3r4us .mentionView-content-wrap.ak-editor-selected-node [data-mention-id]>span{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
2570
2653
|
._gzlt1j28 .inlineCardView-content-wrap .card .loader-wrapper>a:focus ::-moz-selection{background-color:transparent}
|
|
@@ -2669,6 +2752,7 @@
|
|
|
2669
2752
|
._j6t01o8l .ProseMirror.ua-firefox ol li p>span:empty{display:inline-block}
|
|
2670
2753
|
._j745vrvc [data-prosemirror-node-name=blockTaskItem] [data-component=task-item-main]{flex-direction:row}
|
|
2671
2754
|
._j75oglyw .ProseMirror .ak-editor-panel .ak-editor-panel__icon{-moz-user-select:none}
|
|
2755
|
+
._j96qmzrp .ProseMirror .ak-editor-selected-node .ak-editor-sync-block__renderer span[data-emoji-id] span:before{background-color:transparent!important}
|
|
2672
2756
|
._ja1jrprw .ProseMirror .danger.code-block .line-number-gutter:after{background-color:var(--ds-blanket-danger,#ef5c4814)}
|
|
2673
2757
|
._jaboglyw::-webkit-scrollbar-corner{display:none}
|
|
2674
2758
|
._jav3idpf .ProseMirror>hr:first-child{margin-top:0}
|
|
@@ -2686,9 +2770,10 @@
|
|
|
2686
2770
|
._jhe3r4us .ak-editor-selected-node>.editor-mention-primitive.mention-restricted{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
2687
2771
|
._jhti1hna [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=content]{word-wrap:break-word}
|
|
2688
2772
|
._ji6rstnw .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]:not(:first-of-type) [data-layout-content]:before{position:absolute}
|
|
2773
|
+
._jibgb3bt .pm-table-wrapper>table:after{content:""}
|
|
2774
|
+
._jiyw1j28 .pm-table-container>table>tbody>tr>td[data-reaches-left]:after{border-left-color:transparent}
|
|
2689
2775
|
._jj6didpf :not(.fabric-editor-block-mark)>h6:first-child:not(style){margin-top:0}
|
|
2690
2776
|
._jldnp1qy .ProseMirror h5>:is(a,span[data-mark-type=border]) .media-inline-image-wrapper{transform:translateY(-2px)}
|
|
2691
|
-
._jlqawu06 [data-prosemirror-node-name=status] .lozenge-text{font-weight:var(--ds-font-weight-bold,653)}
|
|
2692
2777
|
._jlwvidpf .ProseMirror .ProseMirror-gapcursor:first-of-type+pre{margin-top:0}
|
|
2693
2778
|
._jn1o1osq .multiBodiedExtensionView-content-wrap .multiBodiedExtension--container{width:100%}
|
|
2694
2779
|
._jn3m1yvi .extensionView-content-wrap.danger>span>.with-danger-overlay .extension-overlay{background-color:var(--ds-background-danger-hovered,#ffd5d2)}
|
|
@@ -2753,6 +2838,7 @@
|
|
|
2753
2838
|
._kq5rusvi .pm-table-container>table *{box-sizing:border-box}
|
|
2754
2839
|
._kqjnidpf .ProseMirror [data-layout-section]>[data-layout-column].ak-editor-selected-node:not(.danger):before{bottom:0}
|
|
2755
2840
|
._kqswh2mm{position:relative}
|
|
2841
|
+
._krhrv77o .resizer-handle.bottom .resizer-handle-thumb{margin-top:var(--ds-space-025,2px)}
|
|
2756
2842
|
._ksblidpf .fabric-editor-alignment:first-of-type:first-child p:first-child:not(style){margin-top:0}
|
|
2757
2843
|
._ksg217vv .ProseMirror h1>.media-inline-image-wrapper{transform:translateY(-3px)}
|
|
2758
2844
|
._ktc91e5h .pm-table-sticky-wrapper>table th{text-align:left}
|
|
@@ -2769,6 +2855,7 @@
|
|
|
2769
2855
|
._l4vzglyw .ProseMirror .ProseMirror-gapcursor{pointer-events:none}
|
|
2770
2856
|
._l5mpkb7n .resizer-item.display-handle>.resizer-handle-wrapper>.resizer-handle{opacity:1}
|
|
2771
2857
|
._l5scidpf [data-prosemirror-node-name=blockTaskItem] [data-component=content]{margin-right:0}
|
|
2858
|
+
._l6531j28 .pm-table-wrapper>table>tbody>tr>td[data-reaches-left]:after{border-left-color:transparent}
|
|
2772
2859
|
._l6b9n7od .resizer-item:has(table[data-initial-width-mode=content])>.resizer-hover-zone.resizer-is-extended{left:unset}
|
|
2773
2860
|
._l6wkjmqp{--local-border-checked:var(--ds-background-selected-bold,#1868db)}
|
|
2774
2861
|
._la471bp4 .richMedia-resize-handle-right{flex-direction:column}
|
|
@@ -2827,6 +2914,7 @@
|
|
|
2827
2914
|
._mklmidpf .ProseMirror>.ak-editor-expand{margin-left:0}
|
|
2828
2915
|
._mkvnidpf [data-mark-type=fragment]>[data-mark-type=dataConsumer]>.bodiedExtensionView-content-wrap{margin-left:0}
|
|
2829
2916
|
._mm5uf6fq .ProseMirror .ak-editor-sync-block .ak-editor-bodied-sync-block__content{padding-right:18px}
|
|
2917
|
+
._mnlt1l7b .resizer-handle.bottom .resizer-handle-thumb{height:3px}
|
|
2830
2918
|
._mnwgutpp .layout-column-divider-thumb{top:var(--ds-space-150,9pt)}
|
|
2831
2919
|
._mpdktlke .unsupportedBlockView-content-wrap>div{cursor:pointer}
|
|
2832
2920
|
._mpruidpf [layout=wrap-left]+.ProseMirror-gapcursor+span+[layout=wrap-right]:after{height:0}
|
|
@@ -2941,6 +3029,7 @@
|
|
|
2941
3029
|
._ould93zu [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]+svg{--checkbox-background-color:var(--local-background)}
|
|
2942
3030
|
._owanmyb0 .richMedia-resize-handle-left{margin-left:-4px}
|
|
2943
3031
|
._oxhk187o .ProseMirror .ak-editor-bodied-sync-block.disabled{background-color:var(--ds-background-disabled,#0515240f)}
|
|
3032
|
+
._oy781l7b .resizer-handle.medium.bottom .resizer-handle-thumb{height:3px}
|
|
2944
3033
|
._oygpsm61 .datasourceView-content-wrap.blockCardView-content-wrap .datasourceView-content-inner-wrap{background-color:var(--ds-background-neutral-subtle,#00000000)}
|
|
2945
3034
|
._oz757wq0 .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:before{background-color:var(--ds-blanket-selected,#388bff14)}
|
|
2946
3035
|
._oz7r1j28 .ak-editor-selected-node.unsupportedInlineView-content-wrap>span:nth-of-type(2)::selection{background-color:transparent}
|
|
@@ -2975,7 +3064,7 @@
|
|
|
2975
3064
|
._pj951gly .danger>div>div>.media-card-frame{background-color:var(--ds-background-danger,#ffeceb)}
|
|
2976
3065
|
._ple11h90 .__resizable_base__{width:auto!important}
|
|
2977
3066
|
._pm9i14no .ProseMirror h1>:is(a,span[data-mark-type=border]) .mediaInlineView-content-wrap>.media-inline-image-wrapper{height:36px}
|
|
2978
|
-
.
|
|
3067
|
+
._pmqbvbgk .resizer-handle.bottom .resizer-handle-thumb{width:4pc}
|
|
2979
3068
|
._pmyyidpf .bodiedExtensionView-content-wrap .extension-container .bodiedExtension-content-inner-wrapper{padding-top:0}
|
|
2980
3069
|
._pn62wrdo .ProseMirror .ak-editor-panel.danger .ak-editor-panel__icon{color:var(--ds-icon-danger,#c9372c)!important}
|
|
2981
3070
|
._pnjfh2mm .ak-editor-selected-node>[data-decision-wrapper]{position:relative}
|
|
@@ -3006,6 +3095,7 @@
|
|
|
3006
3095
|
._q1d2rprw .ProseMirror .danger .ak-editor-panel[data-panel-type]{background-color:var(--ds-blanket-danger,#ef5c4814)}
|
|
3007
3096
|
._q353idpf .ProseMirror .ak-editor-annotation-draft:has([data-inline-card]){padding-left:0}
|
|
3008
3097
|
._q381n7od table .resizer-hover-zone.resizer-is-extended{padding-right:unset}
|
|
3098
|
+
._q3zpv9ra .search-match-block.ak-editor-sync-block{background-color:var(--ds-background-accent-magenta-subtler,#fdd0ec)}
|
|
3009
3099
|
._q4ju1ule .ProseMirror blockquote>.mediaSingleView-content-wrap:last-child{display:block}
|
|
3010
3100
|
._q5x9b3bt .ak-editor-selected-node>[data-decision-wrapper]:before{content:""}
|
|
3011
3101
|
._q7vcidpf .ProseMirror .telepointer:hover .telepointer-initial{opacity:0}
|
|
@@ -3020,6 +3110,7 @@
|
|
|
3020
3110
|
._qg7oglyw .ProseMirror h5{text-transform:none}
|
|
3021
3111
|
._qgb1tlke .ProseMirror hr{cursor:pointer}
|
|
3022
3112
|
._qgcnstnw .ProseMirror .danger.code-block .line-number-gutter:after{position:absolute}
|
|
3113
|
+
._qh1aidpf .pm-table-container[data-number-column=true]>.pm-table-sticky-wrapper>table:after{border-bottom-left-radius:0}
|
|
3023
3114
|
._qhe2idpf .fabric-editor-font-size:first-of-type:first-child h6 style:first-child+*{margin-top:0}
|
|
3024
3115
|
._qkm8idpf .pm-table-sticky-wrapper>table>tbody>tr>th{border-bottom-width:0}
|
|
3025
3116
|
._qkq9clii .multiBodiedExtensionView-content-wrap.danger>span>.with-danger-overlay .extension-overlay{opacity:.3}
|
|
@@ -3059,6 +3150,7 @@
|
|
|
3059
3150
|
._regq1j28 .ProseMirror [data-layout-section]>[data-layout-column].ak-editor-selected-node:not(.danger) ::selection{background-color:transparent}
|
|
3060
3151
|
._rejjstnw .ProseMirror .ProseMirror-fake-text-cursor:after{position:absolute}
|
|
3061
3152
|
._rfl4idpf .fabric-editor-font-size:first-of-type:first-child h5:first-child:not(style){margin-top:0}
|
|
3153
|
+
._rhcd1l7b .resizer-handle.clamped.bottom .resizer-handle-thumb{height:3px}
|
|
3062
3154
|
._rhh5utpp .ak-editor-content-area .ak-editor-content-area .ProseMirror .ak-editor-panel.ak-editor-panel__no-icon{padding-left:var(--ds-space-150,9pt)}
|
|
3063
3155
|
._rhzrstnw .ProseMirror .code-block .code-content__line-number--wrapped{position:absolute}
|
|
3064
3156
|
._ri4ridpf :not(.fabric-editor-block-mark)>h3:first-child:not(style){margin-top:0}
|
|
@@ -3083,17 +3175,21 @@
|
|
|
3083
3175
|
._rv60kb7n .ProseMirror .code-block-content-wrapper>.code-content{flex-grow:1}
|
|
3084
3176
|
._rv8p8stv .ProseMirror a[data-prosemirror-mark-name=link]{text-decoration-line:underline}
|
|
3085
3177
|
._rvuckb7n [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=icon]>span{line-height:1}
|
|
3178
|
+
._rvx71j28 .pm-table-container>table>tbody>tr>td[data-reaches-top]{border-top-color:transparent}
|
|
3086
3179
|
._rwhn1kw7 .ProseMirror .mediaSingleView-content-wrap[layout^=wrap-]{clear:inherit}
|
|
3180
|
+
._rwnl1j28 .pm-table-sticky-wrapper>table>tbody>tr>th[data-reaches-bottom]:after{border-bottom-color:transparent}
|
|
3087
3181
|
._rxyqh2mm .pm-breakout-resize-handle-container{position:relative}
|
|
3088
3182
|
._rzjc12x7 .ProseMirror .ak-editor-sync-block{margin-top:var(--ds-space-075,6px)}
|
|
3089
3183
|
._s1jlmz2b [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:hover+svg{--checkbox-background-color:var(--local-background-disabled)}
|
|
3090
3184
|
._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)}
|
|
3091
3185
|
._s3jaidpf .ProseMirror .layout-section-container [data-layout-section]>.ProseMirror-widget.layout-column-divider{flex-shrink:0}
|
|
3186
|
+
._s4v61j28 .pm-table-container>table>tbody>tr>th[data-reaches-left]{border-left-color:transparent}
|
|
3092
3187
|
._s5c21j28 .embedCardView-content-wrap.ak-editor-selected-node .loader-wrapper>div:after ::-moz-selection{background-color:transparent}
|
|
3093
3188
|
._s5gzoqnp .ProseMirror .code-block{margin-top:.75rem}
|
|
3094
3189
|
._s6jz1osq .ProseMirror .danger .code-block .line-number-gutter:after{height:100%}
|
|
3095
3190
|
._s6l1pxbi [dir=rtl] .ProseMirror blockquote{padding-right:var(--ds-space-200,1pc)}
|
|
3096
3191
|
._s6y9idpf :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) p:first-child:not(style){margin-top:0}
|
|
3192
|
+
._s7al1j28 .pm-table-wrapper>table>tbody>tr>th[data-reaches-left]{border-left-color:transparent}
|
|
3097
3193
|
._s7au1txw .richMedia-resize-handle-left:after{display:flex}
|
|
3098
3194
|
._s7xpcuai .ProseMirror ul{padding-left:var(--ed--list--item-counter--padding,24px)}
|
|
3099
3195
|
._s8m8idpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child h6:first-child:not(style){margin-top:0}
|
|
@@ -3113,6 +3209,7 @@
|
|
|
3113
3209
|
._slibidpf .ProseMirror .layout-section-container [data-layout-section]>.ProseMirror-widget+[data-layout-column]{margin-left:0}
|
|
3114
3210
|
._slqe1j28 .ak-editor-selected-node>.editor-mention-primitive.mention-restricted::selection{background-color:transparent}
|
|
3115
3211
|
._sm9f1o8l .ProseMirror [data-layout-section].ak-editor-selected-node:not(.danger) [data-layout-column]:after{display:inline-block}
|
|
3212
|
+
._sml91j28 .pm-table-wrapper>table>tbody>tr>th[data-reaches-top]{border-top-color:transparent}
|
|
3116
3213
|
._smxnglyw .ProseMirror .ProseMirror-fake-text-cursor{pointer-events:none}
|
|
3117
3214
|
._smy6idpf .ak-editor-expand__expanded .ak-editor-expand__content>:nth-child(1 of :not(style,.ProseMirror-gapcursor,.ProseMirror-widget,span)){margin-top:0}
|
|
3118
3215
|
._sneogrf3 .ProseMirror div[data-task-list-local-id]>div[data-task-list-local-id]{margin-top:0!important}
|
|
@@ -3159,6 +3256,7 @@
|
|
|
3159
3256
|
._tnheb3bt .ak-editor-panel.ak-editor-selected-node:not(.danger):before{content:""}
|
|
3160
3257
|
._tnrm1o8l [data-prosemirror-node-name=decisionItem]>[data-decision-wrapper]>[data-component=icon]>span{display:inline-block}
|
|
3161
3258
|
._tnzqbimv .ProseMirror .ak-editor-selected-node.danger .emoji-common-emoji-sprite{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
3259
|
+
._tq001j28 .pm-table-container>table>tbody>tr>th[data-reaches-top]{border-top-color:transparent}
|
|
3162
3260
|
._tq5y1j28 .blockCardView-content-wrap.ak-editor-selected-node .loader-wrapper>div::selection{background-color:transparent}
|
|
3163
3261
|
._tq9g1kdv .ProseMirror .ak-editor-bodied-sync-block .ak-editor-bodied-sync-block__content{cursor:text}
|
|
3164
3262
|
._tqacbimv .danger .mentionView-content-wrap.ak-editor-selected-node>span>span>span{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
@@ -3233,6 +3331,7 @@
|
|
|
3233
3331
|
._v0qsidpf [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap{flex-grow:0}
|
|
3234
3332
|
._v1mkgrf3 .ProseMirror .ak-editor-panel__content>.ProseMirror-widget:first-child+.code-block{margin-right:0!important}
|
|
3235
3333
|
._v284h2mm .ProseMirror .ProseMirror-fake-text-cursor{position:relative}
|
|
3334
|
+
._v3lxesu3 .resizer-handle.bottom{align-items:flex-end}
|
|
3236
3335
|
._v3vym0zr .ProseMirror [layout^=wrap-]+[layout^=wrap-]+ul{clear:both!important}
|
|
3237
3336
|
._v4d81kw7 .blockCardView-content-wrap:not(.datasourceView-content-wrap) ul{padding-left:inherit}
|
|
3238
3337
|
._v756glyw ol[data-node-type=decisionList].ak-editor-selected-node:before{pointer-events:none}
|
|
@@ -3251,6 +3350,7 @@
|
|
|
3251
3350
|
._vee2q98m .ProseMirror blockquote.ak-editor-selected-node{border-left-color:var(--ds-border-selected,#1868db)}
|
|
3252
3351
|
._vffj15vq .ak-editor-expand:not(.ak-editor-expand__expanded) .ak-editor-expand__content{overflow-y:hidden}
|
|
3253
3352
|
._vfpvglyw [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled+svg{pointer-events:none}
|
|
3353
|
+
._vgo7v77o .resizer-handle.bottom .resizer-handle-thumb{margin-bottom:var(--ds-space-025,2px)}
|
|
3254
3354
|
._vgp2ze3t .ak-editor-expand__content{padding-top:var(--ds-space-0,0)}
|
|
3255
3355
|
._vgzaidpf .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{left:0}
|
|
3256
3356
|
._vi00bimv .bodiedExtensionView-content-wrap.danger>span>.extension-container{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
@@ -3294,6 +3394,7 @@
|
|
|
3294
3394
|
._w39w1p3b .ProseMirror ul[data-indent-level="2"]{list-style-type:circle}
|
|
3295
3395
|
._w3lc1i6y [data-prosemirror-node-name=taskItem] .task-item-checkbox-wrap>input[type=checkbox]:checked:focus+svg{outline-offset:var(--ds-space-negative-025,-2px)}
|
|
3296
3396
|
._w4bt1j28 .ak-editor-selected-node>[data-decision-wrapper] ::-moz-selection{background-color:transparent}
|
|
3397
|
+
._w4h41j28 .pm-table-sticky-wrapper>table>tbody>tr>td[data-reaches-bottom]:after{border-bottom-color:transparent}
|
|
3297
3398
|
._w5kn6x5g .inlineExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label{color:var(--ds-text-selected,#1868db)}
|
|
3298
3399
|
._w6dp1ule .ProseMirror .telepointer.telepointer-selection-badge .telepointer-initial{display:block}
|
|
3299
3400
|
._w71a1txw .resizer-handle div[role=presentation]{display:flex}
|
|
@@ -3325,6 +3426,7 @@
|
|
|
3325
3426
|
._wwc7oqnp [data-mark-type=fragment]>[data-mark-type=dataConsumer]>.bodiedExtensionView-content-wrap{margin-top:.75rem}
|
|
3326
3427
|
._wwen1tmw .inlineExtensionView-content-wrap.danger>span>div>.extension-label{color:var(--ds-text-danger,#ae2e24)}
|
|
3327
3428
|
._wwmdidpf .inlineExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>div>.extension-label.always-hide-label{opacity:0}
|
|
3429
|
+
._wwn8agmp .ProseMirror .ak-editor-selected-node .ak-editor-sync-block__renderer span[data-emoji-id] span{box-shadow:none!important}
|
|
3328
3430
|
._wx2kmh6f div[data-task-local-id] span[contenteditable=false]{height:1.714em}
|
|
3329
3431
|
._wxs41j28 .pm-table-wrapper>table{border-left-color:transparent}
|
|
3330
3432
|
._wyfm17vv .ProseMirror h2>.mediaInlineView-content-wrap>.media-inline-image-wrapper{transform:translateY(-3px)}
|
|
@@ -3354,6 +3456,7 @@
|
|
|
3354
3456
|
._xmetlpk9 .ProseMirror h6{line-height:1.45455}
|
|
3355
3457
|
._xpqwidpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]>div{margin-left:0}
|
|
3356
3458
|
._xqgtidpf .ProseMirror .rich-media-item.image-wrap-left+.rich-media-item.image-wrap-right{margin-right:0}
|
|
3459
|
+
._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)}
|
|
3357
3460
|
._xsax1n9t .pm-table-sticky-wrapper>table{table-layout:fixed}
|
|
3358
3461
|
._xsr0utpp .pm-breakout-resize-handle-thumb{bottom:var(--ds-space-150,9pt)}
|
|
3359
3462
|
._xt5o1j28 .statusView-content-wrap:not(.search-match-block).ak-editor-selected-node .status-lozenge-span>span::-moz-selection{background-color:transparent}
|
|
@@ -3380,6 +3483,7 @@
|
|
|
3380
3483
|
._ydkr1bp4 .resizer-handle{flex-direction:column}
|
|
3381
3484
|
._yg3j1kw7 .blockCardView-content-wrap:not(.datasourceView-content-wrap) ol{padding-left:inherit}
|
|
3382
3485
|
._ygai1wqb .ProseMirror .fabric-editor-indentation-mark[data-level="2"]{margin-left:60px}
|
|
3486
|
+
._yglo1f9d .resizer-handle.bottom .resizer-handle-track{width:calc(100% - 40px)}
|
|
3383
3487
|
._ygxf1b66 .ProseMirror .ak-editor-sync-block.ak-editor-selected-node .ak-editor-sync-block__label{padding-bottom:var(--ds-space-050,4px)}
|
|
3384
3488
|
._yh39f1ug .ProseMirror .code-block-content-wrapper>.code-content{flex-basis:0%}
|
|
3385
3489
|
._yh80b3bt ol[data-node-type=decisionList].ak-editor-selected-node:before{content:""}
|
|
@@ -3404,6 +3508,7 @@
|
|
|
3404
3508
|
._yyaxidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]>div{margin-right:0}
|
|
3405
3509
|
._yyxzr4us .inlineExtensionView-content-wrap:not(.danger).ak-editor-selected-node>span>.extension-container{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
3406
3510
|
._yz0y19ip [data-prosemirror-node-name=status]>[data-color=blue] .lozenge-wrapper{background-color:var(--ds-background-information,#e9f2fe)}
|
|
3511
|
+
._z0011j28 .pm-table-container[data-number-column=true]>.pm-table-wrapper>table:after{border-left-color:transparent}
|
|
3407
3512
|
._z0v11osq .fabric-editor--full-width-mode .pm-table-container .extension-container{max-width:100%}
|
|
3408
3513
|
._z1osidpf .mediaGroupView-content-wrap ul{padding-top:0}
|
|
3409
3514
|
._z2s81j28 .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-section] [data-layout-column]:before{background-color:transparent}
|
|
@@ -3434,11 +3539,13 @@
|
|
|
3434
3539
|
._zo131tmo .ProseMirror .telepointer.color-13{--telepointer-participant-text-color:var(--ds-text-accent-gray-bolder,#1e1f21)}
|
|
3435
3540
|
._zo5f1j28 .ProseMirror [data-layout-section]>[data-layout-column].ak-editor-selected-node:not(.danger)::selection{background-color:transparent}
|
|
3436
3541
|
._zrdwidpf .ProseMirror .layoutSectionView-content-wrap.ak-editor-selected-node:not(.danger) [data-layout-column]:before{left:0}
|
|
3542
|
+
._zrm5idpf .resizer-handle.bottom .resizer-handle-thumb{margin-right:0}
|
|
3437
3543
|
._zsbmglyw .ak-editor-expand__icon-button{-webkit-appearance:none;appearance:none}
|
|
3438
3544
|
._zsi2187o .ProseMirror .ak-editor-sync-block:has(.ak-editor-sync-block__error_state){background-color:var(--ds-background-disabled,#0515240f)}
|
|
3439
3545
|
._ztqp1nka .search-match-expand-title>.ak-editor-expand__title-container>.ak-editor-expand__input-container{box-shadow:inset 0 0 0 1px var(--ds-border-accent-magenta,#cd519d),inset 0 0 0 5px var(--ds-background-accent-magenta-subtler,#fdd0ec)}
|
|
3440
3546
|
._zuk5h2mm .resizer-hover-zone{position:relative}
|
|
3441
3547
|
._zum4p1qy .ProseMirror h3>.media-inline-image-wrapper{transform:translateY(-2px)}
|
|
3548
|
+
._zvm61l7b .resizer-handle.large.bottom .resizer-handle-thumb{height:3px}
|
|
3442
3549
|
._zvr81hou [data-prosemirror-node-name=blockTaskItem] .task-item-checkbox-wrap>input[type=checkbox]:disabled:checked+svg{--checkbox-tick-color:var(--local-tick-disabled)}
|
|
3443
3550
|
._zvyiidpf .pm-alt-text-alt-text-floating-toolbar{padding-right:0}
|
|
3444
3551
|
._zy25uj17{--ak-editor--breakout-fallback-width:calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))}
|
|
@@ -3468,6 +3575,7 @@
|
|
|
3468
3575
|
._1ogl1ibz::-webkit-scrollbar-thumb:hover{background-color:var(--ds-background-neutral-bold-hovered,#3b3d42)}
|
|
3469
3576
|
._1orw15s3 .ak-editor-selected-node>.editor-mention-primitive:hover{background-color:var(--ds-background-selected,#e9f2fe)}
|
|
3470
3577
|
._1pxsnqa1 .ProseMirror a[data-prosemirror-mark-name=link]:hover{text-decoration-style:solid}
|
|
3578
|
+
._1utv776v .resizer-handle.bottom .resizer-handle-thumb:hover{cursor:row-resize}
|
|
3471
3579
|
._3f0s11mm .resizer-handle-thumb:hover{cursor:col-resize}
|
|
3472
3580
|
._4m8e1r31 .ProseMirror a[data-prosemirror-mark-name=link]:hover{text-decoration-color:currentColor}
|
|
3473
3581
|
._8tic1j28 .editor-mention-primitive.mention-restricted:hover{background-color:transparent}
|