@atlaskit/editor-core 219.3.5 → 219.3.7
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 +19 -0
- package/afm-cc/tsconfig.json +0 -1
- package/afm-products/tsconfig.json +0 -1
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +77 -1
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.js +20 -12
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-emotion.js +3 -1
- package/dist/cjs/ui/EditorContentContainer/styles/findReplaceStyles.js +54 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +77 -1
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.js +24 -13
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-emotion.js +4 -2
- package/dist/es2019/ui/EditorContentContainer/styles/findReplaceStyles.js +73 -0
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +77 -1
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.js +21 -13
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-emotion.js +4 -2
- package/dist/esm/ui/EditorContentContainer/styles/findReplaceStyles.js +53 -0
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +1 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +1 -0
- package/package.json +9 -6
|
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.findReplaceStylesWithCodeblockColorContrastFix = exports.findReplaceStylesNewWithCodeblockColorContrastFix = exports.findReplaceStylesNewWithA11Y = exports.findReplaceStyles = void 0;
|
|
7
|
+
exports.findReplaceStylesWithRefSyncBlock = exports.findReplaceStylesWithCodeblockColorContrastFix = exports.findReplaceStylesNewWithCodeblockColorContrastFix = exports.findReplaceStylesNewWithA11Y = exports.findReplaceStyles = void 0;
|
|
8
8
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
9
9
|
var _react = require("@emotion/react");
|
|
10
10
|
var _styles = require("@atlaskit/editor-common/styles");
|
|
@@ -212,4 +212,57 @@ var findReplaceStylesNewWithA11Y = exports.findReplaceStylesNewWithA11Y = (0, _r
|
|
|
212
212
|
boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", "\n\t\t"),
|
|
213
213
|
backgroundColor: "var(--ds-background-accent-magenta-bolder-hovered, #943D73)"
|
|
214
214
|
}
|
|
215
|
+
});
|
|
216
|
+
|
|
217
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
218
|
+
var findReplaceStylesWithRefSyncBlock = exports.findReplaceStylesWithRefSyncBlock = (0, _react.css)({
|
|
219
|
+
// sync block (reference) - inactive match - light mode - without node selection
|
|
220
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
221
|
+
'.search-match-block.ak-editor-sync-block': {
|
|
222
|
+
borderRadius: "var(--ds-space-050, 4px)",
|
|
223
|
+
boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-border-accent-magenta, #CD519D)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", "\n\t\t"),
|
|
224
|
+
backgroundColor: "var(--ds-background-accent-magenta-subtler, #FDD0EC)"
|
|
225
|
+
},
|
|
226
|
+
// sync block (reference) - active match - light mode - without node selection
|
|
227
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
228
|
+
'.search-match-block.search-match-block-selected.ak-editor-sync-block': {
|
|
229
|
+
boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder-hovered, #943D73)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", "\n\t\t"),
|
|
230
|
+
backgroundColor: "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"
|
|
231
|
+
},
|
|
232
|
+
// sync block (reference) - inactive match - light mode - with node selection
|
|
233
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
234
|
+
'.search-match-block.ak-editor-sync-block.ak-editor-selected-node': {
|
|
235
|
+
boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-border-accent-magenta, #CD519D)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", ",\n\t\t0 0 0 1px ", "var(--ds-border-selected, #1868DB)", "\n\t\t"),
|
|
236
|
+
backgroundColor: "var(--ds-background-accent-magenta-subtler, #FDD0EC)"
|
|
237
|
+
},
|
|
238
|
+
// sync block (reference) - active match - light mode - with node selection
|
|
239
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
240
|
+
'.search-match-block.search-match-block-selected.ak-editor-sync-block.ak-editor-selected-node': {
|
|
241
|
+
boxShadow: "0 0 0 1px ".concat("var(--ds-border-focused, #4688EC)"),
|
|
242
|
+
backgroundColor: "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"
|
|
243
|
+
},
|
|
244
|
+
// sync block (reference) - inactive match - dark mode - without node selection
|
|
245
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
246
|
+
'.search-match-block.search-match-dark.ak-editor-sync-block': {
|
|
247
|
+
boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", "\n\t\t"),
|
|
248
|
+
backgroundColor: "var(--ds-background-accent-magenta-bolder-pressed, #77325B)"
|
|
249
|
+
},
|
|
250
|
+
// sync block (reference) - active match - dark mode - without node selection
|
|
251
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
252
|
+
'.search-match-block.search-match-block-selected.search-match-dark.ak-editor-sync-block': {
|
|
253
|
+
boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 4px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", "\n\t\t"),
|
|
254
|
+
backgroundColor: "var(--ds-background-accent-magenta-bolder-hovered, #943D73)"
|
|
255
|
+
},
|
|
256
|
+
// sync block (reference) - inactive match - dark mode - with node selection
|
|
257
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
258
|
+
'.search-match-block.search-match-dark.ak-editor-sync-block.ak-editor-selected-node': {
|
|
259
|
+
boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", ",\n\t\t0 0 0 1px ", "var(--ds-border-selected, #1868DB)", "\n\t\t"),
|
|
260
|
+
backgroundColor: "var(--ds-background-accent-magenta-bolder-pressed, #77325B)"
|
|
261
|
+
},
|
|
262
|
+
// sync block (reference) - active match - dark mode - with node selection
|
|
263
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
264
|
+
'.search-match-block.search-match-block-selected.search-match-dark.ak-editor-sync-block.ak-editor-selected-node': {
|
|
265
|
+
boxShadow: "0 0 0 1px ".concat("var(--ds-border-focused, #4688EC)"),
|
|
266
|
+
backgroundColor: "var(--ds-background-accent-magenta-bolder-hovered, #943D73)"
|
|
267
|
+
}
|
|
215
268
|
});
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
._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%)}
|
|
27
27
|
._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)}
|
|
28
28
|
._bi6aa6bd div[extensionType="com.atlassian.ai-blocks"] .extension-container:before{background:conic-gradient(from var(--panel-gradient-angle,270deg),#0065ff80 0,#0469ff80 20%,#bf63f380 50%,#ffa90080 56%,#0065ff80 100%)}
|
|
29
|
+
._d10bhq3d .ProseMirror li>p:not(:first-child){margin:var(--ds-space-050,4px) 0 0 0}
|
|
29
30
|
._dci5qo0w div[extensionType="com.atlassian.ai-blocks"]:after{background:linear-gradient(90deg,#0065ff,#0469ff 12%,#bf63f3 24%,#ffa900 48%,#bf63f3 64%,#0469ff 80%,#0065ff)}
|
|
30
31
|
._e2i01856 .editor-mention-primitive.mention-self{background:var(--ds-background-brand-bold,#1868db)}
|
|
31
32
|
._fl4uup1y .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{transition:transform .15s ease-out,opacity .15s ease-out}
|
|
@@ -51,19 +52,25 @@
|
|
|
51
52
|
._uhe21j28 .ak-editor-selected-node:not(.search-match-block)>.editor-mention-primitive.mention-restricted{border-color:transparent}
|
|
52
53
|
._14gpj0fz .ProseMirror .ProseMirror-fake-text-cursor:after{border-right:1px solid var(--ds-border,#0b120e24)}
|
|
53
54
|
._1ibg1vrj .ProseMirror .ak-editor-annotation-focus{border-bottom:2px solid transparent}
|
|
55
|
+
._1ny71t12 .text-highlight{border-bottom:2px solid var(--ds-background-accent-blue-subtler,#cfe1fd)}
|
|
54
56
|
._1ug81hdd .ProseMirror .ProseMirror-gapcursor span:after{border-left:1px solid}
|
|
55
57
|
._iwzr1vrj .ProseMirror .ak-editor-annotation-blur{border-bottom:2px solid transparent}
|
|
56
58
|
._u5bs1vrj .ProseMirror .ak-editor-annotation-draft{border-bottom:2px solid transparent}
|
|
57
|
-
._xkuf1vrj .ProseMirror .ak-editor-annotation-hover{border-bottom:2px solid transparent}.
|
|
59
|
+
._xkuf1vrj .ProseMirror .ak-editor-annotation-hover{border-bottom:2px solid transparent}._102f1j28 .ProseMirror:has(.ProseMirror-hide-cursor){caret-color:transparent}
|
|
60
|
+
._10a5ox06 li[data-testid=show-diff-changed-decoration-node]::marker{color:var(--diff-decoration-marker-color)}
|
|
61
|
+
._10c7glyw .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{-webkit-user-select:none;-ms-user-select:none;user-select:none}
|
|
58
62
|
._10h6v77o .ProseMirror .ak-editor-annotation-blur:has(.date-lozenger-container){padding-top:var(--ds-space-025,2px)}
|
|
63
|
+
._10i7j4ch .ProseMirror .ak-ul{display:flow-root}
|
|
59
64
|
._10zo1osq .ProseMirror>div[data-prosemirror-node-block] [data-prosemirror-node-block]{--ak-editor-max-container-width:100%}
|
|
60
65
|
._10zwglyw [layout=wrap-left]+.ProseMirror-gapcursor+span [layout=wrap-right]{clear:none}
|
|
61
66
|
._110lidpf :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 style:first-child+*{margin-top:0}
|
|
67
|
+
._11311p3b .ProseMirror ul ul ul ul ul{list-style-type:circle}
|
|
62
68
|
._1171idpf .fabric-editor-alignment:first-of-type:first-child h1:first-child:not(style){margin-top:0}
|
|
63
69
|
._1190v77o [data-prosemirror-node-name=date] .date-lozenger-container span{padding-bottom:var(--ds-space-025,2px)}
|
|
64
70
|
._11h1stnw .ProseMirror .ProseMirror-gapcursor span:after{position:absolute}
|
|
65
71
|
._11jf78tn .ProseMirror p{line-height:1.714}
|
|
66
72
|
._11rg15cr .ProseMirror .telepointer.color-9{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
73
|
+
._11t078tn .ProseMirror:not(.blockCardView-content-wrap)>li:before{line-height:1.714}
|
|
67
74
|
._11ukidpf .fabric-editor-font-size:first-of-type:first-child h3 style:first-child+*{margin-top:0}
|
|
68
75
|
._121i1r31 .ProseMirror{outline-color:currentColor}
|
|
69
76
|
._123b1aqn:hover::-webkit-scrollbar-thumb{background-color:var(--ds-background-neutral-bold,#292a2e)}
|
|
@@ -75,19 +82,25 @@
|
|
|
75
82
|
._12uhidpf :not(.fabric-editor-block-mark)>h5 style:first-child+*{margin-top:0}
|
|
76
83
|
._12vh1ntv .ProseMirror hr{background-clip:content-box}
|
|
77
84
|
._12wvglyw .ProseMirror .placeholder-decoration .placeholder-android{-webkit-user-select:none;-ms-user-select:none;user-select:none}
|
|
85
|
+
._132p1k9k .ProseMirror ol[data-indent-level="5"]{list-style-type:lower-alpha}
|
|
78
86
|
._13fl1vk5 [data-prosemirror-node-name=date] .date-lozenger-container span.date-node-color-red{background-color:var(--ds-background-accent-red-subtlest,#ffeceb)}
|
|
87
|
+
._13q2grf3 .ProseMirror li:has(>ul:only-child){margin-bottom:0!important}
|
|
79
88
|
._144ruibq .ProseMirror .telepointer.color-0{--telepointer-participant-bg-color:var(--ds-background-accent-red-bolder,#c9372c)}
|
|
80
89
|
._14dm15cr .ProseMirror .telepointer.color-8{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
90
|
+
._14e716px .ProseMirror:not(.blockCardView-content-wrap)>li>.code-block:first-child{margin-top:-1.714em!important}
|
|
81
91
|
._14ew15s3 .mentionView-content-wrap.ak-editor-selected-node [data-mention-id]>span{background-color:var(--ds-background-selected,#e9f2fe)}
|
|
82
92
|
._14f4idpf .ProseMirror-gapcursor+[layout=wrap-right]+[layout=wrap-left]>div{margin-bottom:0}
|
|
93
|
+
._14gj1k9k .ProseMirror ol ol{list-style-type:lower-alpha}
|
|
83
94
|
._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}
|
|
84
95
|
._14ib1ssb .ProseMirror .ProseMirror-gapcursor span[layout=fixed-width]{margin-left:50%}
|
|
85
96
|
._14ijglyw .ProseMirror .placeholder-decoration{pointer-events:none}
|
|
86
97
|
._14r215vq .ProseMirror p:has(.placeholder-decoration-hide-overflow){overflow-y:hidden}
|
|
87
98
|
._14uo1osq .ProseMirror .placeholder-decoration{width:100%}
|
|
99
|
+
._14xl126e .ProseMirror div[data-task-local-id]+div[data-task-list-local-id]{margin-top:var(--ds-space-050,4px)!important}
|
|
88
100
|
._1543idpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child p:first-child:not(style){margin-top:0}
|
|
89
101
|
._15a61hrf [layout=wrap-left]+.ProseMirror-gapcursor+span+[layout=wrap-right]:after{clear:both}
|
|
90
102
|
._15cgjt0p .ProseMirror .telepointer[class*=color-]:after{color:var(--telepointer-participant-text-color)}
|
|
103
|
+
._15cjagmp .ProseMirror li:has(>ul:only-child){list-style-type:none!important}
|
|
91
104
|
._15epidpf :not(.fabric-editor-block-mark)>h4:first-child:not(style){margin-top:0}
|
|
92
105
|
._15eyya33 .ProseMirror .telepointer.color-4{--telepointer-participant-bg-color:var(--ds-background-accent-purple-bolder,#964ac0)}
|
|
93
106
|
._15haglyw .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]{clear:none}
|
|
@@ -104,14 +117,17 @@
|
|
|
104
117
|
._16jlkb7n{flex-grow:1}
|
|
105
118
|
._16k0idpf .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]:after{height:0}
|
|
106
119
|
._16mx1gly .ak-editor-selected-node:not(.search-match-block).danger>.editor-mention-primitive{background-color:var(--ds-background-danger,#ffeceb)}
|
|
120
|
+
._16oexfcs .ProseMirror ol[data-indent-level="3"]{list-style-type:lower-roman}
|
|
107
121
|
._17291ule .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]:after{display:block}
|
|
108
122
|
._172zidpf .ProseMirror .ak-editor-annotation-draft{padding-right:0}
|
|
109
123
|
._173j1j28 .ak-editor-selected-node>.editor-mention-primitive::selection{background-color:transparent}
|
|
110
124
|
._1762idpf [layout=wrap-right]+.ProseMirror-gapcursor+span+[layout=wrap-left]>div{margin-left:0}
|
|
111
125
|
._177515s3 .ProseMirror span.pm-placeholder.ak-editor-selected-node{background-color:var(--ds-background-selected,#e9f2fe)}
|
|
126
|
+
._178n1j28 .ProseMirror.ProseMirror-focused:has(.ProseMirror-mark-boundary-cursor){caret-color:transparent}
|
|
112
127
|
._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}
|
|
113
128
|
._17clidpf .ProseMirror .ak-editor-annotation-hover:has([data-inline-card]){padding-right:0}
|
|
114
129
|
._17kkf705 [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]:after{content:" "}
|
|
130
|
+
._17kl1wth .ProseMirror ul ul ul ul{list-style-type:disc}
|
|
115
131
|
._17liidpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child h5 style:first-child+*{margin-top:0}
|
|
116
132
|
._17qpt94y .ProseMirror .ak-editor-annotation-hover{padding-top:1px}
|
|
117
133
|
._17xq15s3 .ak-editor-selected-node>.editor-mention-primitive{background-color:var(--ds-background-selected,#e9f2fe)}
|
|
@@ -138,6 +154,7 @@
|
|
|
138
154
|
._19vz1wug .ProseMirror .ak-editor-annotation-draft{cursor:auto}
|
|
139
155
|
._19vztlke .ProseMirror .ak-editor-annotation-draft{cursor:pointer}
|
|
140
156
|
._1a3o1j28 .dateView-content-wrap.ak-editor-selected-node .date-lozenger-container>span::-moz-selection{background-color:transparent}
|
|
157
|
+
._1a6x1fbg .ProseMirror ol[data-indent-level="1"]{list-style-type:decimal}
|
|
141
158
|
._1ab3idpf .ProseMirror-gapcursor+[layout=wrap-left]+span+[layout=wrap-right]:after{height:0}
|
|
142
159
|
._1abn1q9c .ProseMirror p:has(.placeholder-decoration-hide-overflow){white-space:nowrap}
|
|
143
160
|
._1af7idpf .fabric-editor-font-size:first-of-type:first-child .heading-wrapper style:first-child+*{margin-top:0}
|
|
@@ -148,7 +165,9 @@
|
|
|
148
165
|
._1ancidpf [layout=wrap-left]+.ProseMirror-gapcursor+span+[layout=wrap-right]>div{margin-left:0}
|
|
149
166
|
._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}
|
|
150
167
|
._1bd0idpf .fabric-editor-alignment:first-of-type:first-child h4 style:first-child+*{margin-top:0}
|
|
168
|
+
._1bq9w4vn .ProseMirror ul ul ul ul ul ul{list-style-type:square}
|
|
151
169
|
._1br5d439 .ProseMirror .telepointer.telepointer-selection-badge .telepointer-initial{top:-14px}
|
|
170
|
+
._1bzj1tuv .ProseMirror .ak-ol li>ol{margin-top:max(0px,calc((var(--ak-editor-base-font-size, 1pc) - 13px)*1.33333))}
|
|
152
171
|
._1c0fidpf .ProseMirror .ak-editor-annotation-blur:has(.card){padding-left:0}
|
|
153
172
|
._1c20feiv .ProseMirror .ak-editor-annotation-hover{border-bottom-color:var(--ds-border-accent-yellow,#b38600)}
|
|
154
173
|
._1c8bglyw div[extensionType="com.atlassian.ai-blocks"] .extension-label{display:none}
|
|
@@ -210,6 +229,7 @@
|
|
|
210
229
|
._1inzj35l html:not([data-color-mode=dark]) .ProseMirror .telepointer{--telepointer-participant-background-first-stop:-850000%}
|
|
211
230
|
._1iod1o36 .ProseMirror hr.ak-editor-selected-node{outline-width:medium}
|
|
212
231
|
._1iqr1gly .ak-editor-selected-node:not(.search-match-block).danger>.editor-mention-primitive.mention-restricted{background-color:var(--ds-background-danger,#ffeceb)}
|
|
232
|
+
._1ir6xfcs .ProseMirror ol[data-indent-level="6"]{list-style-type:lower-roman}
|
|
213
233
|
._1iyqr4us .ak-editor-selected-node:not(.search-match-block)>.editor-mention-primitive.mention-restricted{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
214
234
|
._1j8ac3uk .ProseMirror .telepointer.color-5{--telepointer-participant-bg-color:var(--ds-background-accent-magenta-bolder,#ae4787)}
|
|
215
235
|
._1je9idpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child h3 style:first-child+*{margin-top:0}
|
|
@@ -224,6 +244,7 @@
|
|
|
224
244
|
._1ku31ytf .ProseMirror .telepointer.telepointer-pulse-during-tr .telepointer-fullname{animation-timing-function:ease-in-out}
|
|
225
245
|
._1kx81j28 .dateView-content-wrap.ak-editor-selected-node .date-lozenger-container>span ::selection{background-color:transparent}
|
|
226
246
|
._1kxaf705 [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]:after{content:" "}
|
|
247
|
+
._1l0sxfcs .ProseMirror ol ol ol ol ol ol{list-style-type:lower-roman}
|
|
227
248
|
._1l3q1hrf [layout=wrap-right]+.ProseMirror-gapcursor+span+[layout=wrap-left]:after{clear:both}
|
|
228
249
|
._1lbautpp .ProseMirror{margin-top:var(--ds-space-150,9pt)}
|
|
229
250
|
._1lbj1hrf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]:after{clear:both}
|
|
@@ -233,9 +254,11 @@
|
|
|
233
254
|
._1luc15cr .ProseMirror .telepointer.color-5{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
234
255
|
._1m2zidpf .ProseMirror .ak-editor-annotation-blur:has(.card){padding-right:0}
|
|
235
256
|
._1md215cr .ProseMirror .telepointer.color-3{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
257
|
+
._1n111fbg .ProseMirror ol{list-style-type:decimal}
|
|
236
258
|
._1nhdi8nm .danger .mentionView-content-wrap>span>span>span{background-color:var(--ds-background-neutral,#0515240f)}
|
|
237
259
|
._1nl9idpf .ProseMirror .ak-editor-annotation-draft:has(.card){padding-right:0}
|
|
238
260
|
._1nn0idpf .fabric-editor-font-size:first-of-type:first-child h4 style:first-child+*{margin-top:0}
|
|
261
|
+
._1nq21fbg .ProseMirror ol ol ol ol{list-style-type:decimal}
|
|
239
262
|
._1nuq1e5h [layout=wrap-right]+.ProseMirror-gapcursor{float:left}
|
|
240
263
|
._1o02azsu .danger .mentionView-content-wrap>span>span>span{color:var(--ds-text-subtle,#505258)}
|
|
241
264
|
._1o0g1ule .ProseMirror .ProseMirror-gapcursor span:after{display:block}
|
|
@@ -244,6 +267,8 @@
|
|
|
244
267
|
._1op6idpf :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) .heading-wrapper:first-child:not(style){margin-top:0}
|
|
245
268
|
._1oqxr4us .ak-editor-selected-node:not(.search-match-block)>.editor-mention-primitive{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
246
269
|
._1oraidpf .fabric-editor-alignment:first-of-type:first-child h6:first-child:not(style){margin-top:0}
|
|
270
|
+
._1orf1b66 .ProseMirror li>ol{margin-top:var(--ds-space-050,4px)}
|
|
271
|
+
._1orf1tuv .ProseMirror li>ol{margin-top:max(0px,calc((var(--ak-editor-base-font-size, 1pc) - 13px)*1.33333))}
|
|
247
272
|
._1owy1l7b .ProseMirror .ak-editor-annotation-focus:has([data-inline-card]){padding-bottom:3px}
|
|
248
273
|
._1p171ytf .ProseMirror .telepointer.telepointer-pulse-animate .telepointer-fullname{animation-timing-function:ease-in-out}
|
|
249
274
|
._1p281y2m .ProseMirror .telepointer.telepointer-pulse-during-tr .telepointer-fullname{animation-duration:7.5s}
|
|
@@ -260,11 +285,13 @@
|
|
|
260
285
|
._1q09glyw .ProseMirror .telepointer.telepointer-selection-badge .telepointer-initial{-webkit-user-select:none;-ms-user-select:none;user-select:none}
|
|
261
286
|
._1q0gidpf .ProseMirror-gapcursor+[layout=wrap-left]+span+[layout=wrap-right]+*>*{margin-top:0}
|
|
262
287
|
._1q471e5h [layout=wrap-left]+.ProseMirror-gapcursor{float:left}
|
|
288
|
+
._1q5dh2mm .ProseMirror li{position:relative}
|
|
263
289
|
._1qihyh40 .ProseMirror .ak-editor-annotation-hover{padding-bottom:2px}
|
|
264
290
|
._1qikidpf .ProseMirror>.ak-editor-expand:first-child{margin-top:0}
|
|
265
291
|
._1qkxidpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child .heading-wrapper:first-child:not(style){margin-top:0}
|
|
266
292
|
._1qnc1rpy .ProseMirror span[data-placeholder]{color:var(--ds-text-subtlest,#6b6e76)}
|
|
267
293
|
._1qs3i7a9 .editor-mention-primitive{font-weight:var(--ds-font-weight-regular,400)}
|
|
294
|
+
._1qvtgrf3 .ProseMirror li:has(>ol:only-child){margin-top:0!important}
|
|
268
295
|
._1qypglyw [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]{clear:none}
|
|
269
296
|
._1r8c1b66 .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{padding-left:var(--ds-space-050,4px)}
|
|
270
297
|
._1r9butpp .ProseMirror{margin-left:var(--ds-space-150,9pt)}
|
|
@@ -272,6 +299,7 @@
|
|
|
272
299
|
._1rcq1hrf .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]:after{clear:both}
|
|
273
300
|
._1reozryt{overflow-x:clip}
|
|
274
301
|
._1rg715cr .ProseMirror .telepointer.color-2{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
302
|
+
._1rnf1k9k .ProseMirror ol ol ol ol ol{list-style-type:lower-alpha}
|
|
275
303
|
._1rpoidpf .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]>div{margin-right:0}
|
|
276
304
|
._1rpp1n1a div[extensionType="com.atlassian.ai-blocks"] .extension-container:after{left:-1px}
|
|
277
305
|
._1s25t94y .ProseMirror .ak-editor-annotation-focus{padding-top:1px}
|
|
@@ -291,6 +319,7 @@
|
|
|
291
319
|
._1tieidpf :not(.fabric-editor-block-mark)>h3 style:first-child+*{margin-top:0}
|
|
292
320
|
._1tlp1x4e .ProseMirror p{font-size:1em}
|
|
293
321
|
._1tqsazsu .editor-mention-primitive{color:var(--ds-text-subtle,#505258)}
|
|
322
|
+
._1tud1tuv .ProseMirror .ak-ul li>ol{margin-top:max(0px,calc((var(--ak-editor-base-font-size, 1pc) - 13px)*1.33333))}
|
|
294
323
|
._1u0115vq .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]:after{visibility:hidden}
|
|
295
324
|
._1u701ule .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{display:block}
|
|
296
325
|
._1u8dp3kn div[extensionType="com.atlassian.ai-blocks"]:has(.streaming) .extension-container:after{animation-timing-function:linear}
|
|
@@ -316,6 +345,7 @@
|
|
|
316
345
|
._1vtyidpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]+span+*>*{margin-top:0}
|
|
317
346
|
._1vyzidpf .ProseMirror-widget:not([data-blocks-decoration-container=true]):not([data-blocks-drag-handle-container=true]):not([data-blocks-quick-insert-container=true])+.ProseMirror-gapcursor+*{margin-top:0}
|
|
318
347
|
._1w5mtlke .editor-mention-primitive{cursor:pointer}
|
|
348
|
+
._1wb5utpp .ProseMirror ol:not(li>ol):not(:nth-child(1 of :not(style,.ProseMirror-gapcursor,.ProseMirror-widget,span))){margin-top:var(--ds-space-150,9pt)}
|
|
319
349
|
._1wet1hna .editor-mention-primitive{word-break:break-word}
|
|
320
350
|
._1wgaidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]+*>*{margin-top:0}
|
|
321
351
|
._1wh8idpf .ProseMirror>div[data-layout-section]:first-child{margin-top:0}
|
|
@@ -337,10 +367,12 @@
|
|
|
337
367
|
._1xmbfeiv .ProseMirror .ak-editor-annotation-blur{border-bottom-color:var(--ds-border-accent-yellow,#b38600)}
|
|
338
368
|
._1xog1ule [layout=wrap-right]+.ProseMirror-gapcursor+span+[layout=wrap-left]:after{display:block}
|
|
339
369
|
._1xq8stnw div[extensionType="com.atlassian.ai-blocks"] .extension-container:before{position:absolute}
|
|
370
|
+
._1xqjw4vn .ProseMirror ul ul ul{list-style-type:square}
|
|
340
371
|
._1xqtt94y .ProseMirror .ak-editor-annotation-draft{padding-top:1px}
|
|
341
372
|
._1xquh2mm .ProseMirror .embedCardView-content-wrap[layout^=wrap-]{position:relative}
|
|
342
373
|
._1xr818ah .ProseMirror .telepointer.color-16{--telepointer-participant-bg-color:var(--ds-background-accent-purple-subtle,#c97cf4)}
|
|
343
374
|
._1xx3b3bt div[extensionType="com.atlassian.ai-blocks"] .extension-container:before{content:""}
|
|
375
|
+
._1xy6glyw .ProseMirror:not(.ProseMirror-focused) .ProseMirror-mark-boundary-cursor{display:none}
|
|
344
376
|
._1yg7azsu .ak-editor-selected-node>.editor-mention-primitive.mention-self{color:var(--ds-text-subtle,#505258)}
|
|
345
377
|
._1yi41osq .ProseMirror .ProseMirror-gapcursor span{height:100%}
|
|
346
378
|
._1ys91j28 .ProseMirror:has(.ProseMirror-gapcursor){caret-color:transparent}
|
|
@@ -368,7 +400,10 @@
|
|
|
368
400
|
._42an1j28 .ak-editor-selected-node>.editor-mention-primitive.mention-self::-moz-selection{background-color:transparent}
|
|
369
401
|
._42pj1j28 .editor-mention-primitive.mention-restricted{background-color:transparent}
|
|
370
402
|
._43nwglyw .ProseMirror hr.ak-editor-selected-node{outline-style:none}
|
|
403
|
+
._44741b66 .ProseMirror li>ul{margin-top:var(--ds-space-050,4px)}
|
|
404
|
+
._44741tuv .ProseMirror li>ul{margin-top:max(0px,calc((var(--ak-editor-base-font-size, 1pc) - 13px)*1.33333))}
|
|
371
405
|
._4aknutpp .ProseMirror{margin-bottom:var(--ds-space-150,9pt)}
|
|
406
|
+
._4ded1wth .ProseMirror ul{list-style-type:disc}
|
|
372
407
|
._4g8dgrf3 div[extensiontype="com.atlassian.ai-blocks"][extensionkey="ai-action-items-block:aiActionItemsBodiedExtension"] div[data-node-type=actionList]{margin-top:0!important}
|
|
373
408
|
._4gkwidpf [layout=wrap-left]+.ProseMirror-gapcursor+span+[layout=wrap-right]+*>*{margin-top:0}
|
|
374
409
|
._4ieeidpf .ProseMirror .ProseMirror-gapcursor:first-of-type+span+ol{margin-top:0}
|
|
@@ -385,12 +420,14 @@
|
|
|
385
420
|
._5cxqglyw .ProseMirror .ProseMirror-gapcursor{display:none}
|
|
386
421
|
._5h7k1rpy .ProseMirror span.pm-placeholder__text[data-placeholder]:after{color:var(--ds-text-subtlest,#6b6e76)}
|
|
387
422
|
._5m891b66 .ProseMirror .telepointer.telepointer-selection-badge .telepointer-initial{padding-left:var(--ds-space-050,4px)}
|
|
423
|
+
._5rje1o8l .ProseMirror.ua-firefox ul li p>span:empty{display:inline-block}
|
|
388
424
|
._5sz3f705 .ProseMirror-gapcursor+[layout=wrap-left]+span+[layout=wrap-right]:after{content:" "}
|
|
389
425
|
._63b3qvpr .ProseMirror .telepointer.telepointer-selection-badge .telepointer-initial{white-space:pre}
|
|
390
426
|
._66yetlke .ProseMirror .ak-editor-annotation-blur{cursor:pointer}
|
|
391
427
|
._67ch1nu9 .ProseMirror span.pm-placeholder{display:inline}
|
|
392
428
|
._6f0lidpf .ProseMirror .ak-editor-annotation-focus{padding-left:0}
|
|
393
429
|
._6itxidpf .ProseMirror>.ak-editor-panel:first-child{margin-top:0}
|
|
430
|
+
._6jbkgrf3 .ProseMirror li:has(>ol:only-child){margin-bottom:0!important}
|
|
394
431
|
._6klsh2mm [data-prosemirror-node-name=date] .date-lozenger-container span{position:relative}
|
|
395
432
|
._6shmidpf .fabric-editor-alignment:first-of-type:first-child h3:first-child:not(style){margin-top:0}
|
|
396
433
|
._6w3a1tmo .ProseMirror .telepointer.color-10{--telepointer-participant-text-color:var(--ds-text-accent-gray-bolder,#1e1f21)}
|
|
@@ -405,16 +442,22 @@
|
|
|
405
442
|
._7psugrf3 div[extensiontype="com.atlassian.ai-blocks"][extensionkey="ai-action-items-block:aiActionItemsBodiedExtension"] div[data-node-type=actionList]{margin-right:0!important}
|
|
406
443
|
._7xjx1ytf .ProseMirror .telepointer.telepointer-pulse-animate .telepointer-initial{animation-timing-function:ease-in-out}
|
|
407
444
|
._874g1l7x .ProseMirror hr{background-color:var(--ds-border,#0b120e24)}
|
|
445
|
+
._87u1cuai .ProseMirror ol{padding-left:var(--ed--list--item-counter--padding,24px)}
|
|
408
446
|
._8ctj1b4h .gridParent{width:calc(100% + 2px)}
|
|
409
447
|
._8grqv77o .ProseMirror .ak-editor-annotation-hover:has(.date-lozenger-container){padding-top:var(--ds-space-025,2px)}
|
|
410
448
|
._8md310zz .ProseMirror .ProseMirror-gapcursor span:after{animation-timing-function:step-start}
|
|
449
|
+
._8r0ew4vn .ProseMirror ul[data-indent-level="3"]{list-style-type:square}
|
|
411
450
|
._8uqaidpf .ProseMirror>div[data-task-list-local-id]:first-child{margin-top:0}
|
|
412
451
|
._8ved1mrw div[extensionType="com.atlassian.ai-blocks"] .extension-container:after{z-index:-1}
|
|
452
|
+
._8wmvoqnp .ProseMirror li>style:first-child+p{margin-top:.75rem}
|
|
413
453
|
._92g41l7b .ProseMirror .ak-editor-annotation-blur:has(.card){padding-bottom:3px}
|
|
454
|
+
._96x216px .ProseMirror:not(.blockCardView-content-wrap)>li>.ProseMirror-gapcursor:first-child+.code-block{margin-top:-1.714em!important}
|
|
414
455
|
._97xa15vq .ProseMirror-gapcursor+[layout=wrap-left]+span+[layout=wrap-right]:after{visibility:hidden}
|
|
415
456
|
._988v1osq .fabric-editor--full-width-mode{--ak-editor--breakout-fallback-width:100%}
|
|
457
|
+
._9b45j4ch .ProseMirror .ak-ol{display:flow-root}
|
|
416
458
|
._9cv91cra .ProseMirror .telepointer.telepointer-pulse-animate .telepointer-fullname{animation-name:kxlv1hz}
|
|
417
459
|
._9fge8y3s .ProseMirror .telepointer.color-13{--telepointer-participant-bg-color:var(--ds-background-accent-yellow-subtle,#eed12b)}
|
|
460
|
+
._9j0yxfcs .ProseMirror ol ol ol{list-style-type:lower-roman}
|
|
418
461
|
._9neqidpf .ProseMirror .ak-editor-annotation-focus{padding-right:0}
|
|
419
462
|
._9o1p1j28 .ProseMirror-hideselection ::-moz-selection{background-color:transparent}
|
|
420
463
|
._9onx14y2 .ProseMirror .ak-editor-annotation-blur:has([data-inline-card]){padding-top:5px}
|
|
@@ -431,14 +474,17 @@
|
|
|
431
474
|
._awp7f705 [layout=wrap-left]+.ProseMirror-gapcursor+span+[layout=wrap-right]:after{content:" "}
|
|
432
475
|
._ay6b6ebc .ProseMirror .telepointer:hover .telepointer-initial{transition-delay:.15s}
|
|
433
476
|
._aycbidpf .ProseMirror .ProseMirror-gapcursor:first-of-type+ul{margin-top:0}
|
|
477
|
+
._b1o8grf3 .ProseMirror li:has(>ol:only-child)>ol{margin-top:0!important}
|
|
434
478
|
._b82712n9 .ProseMirror .telepointer:hover .telepointer-fullname{transform:scaleX(1)}
|
|
435
479
|
._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}
|
|
480
|
+
._bbrv19by [aria-label="Selection toolbar"]{animation-name:k1xe95hp}
|
|
436
481
|
._beg3idpf .ProseMirror-gapcursor+[layout=wrap-left]+span+[layout=wrap-right]:after{font-size:0}
|
|
437
482
|
._bmfv9cwz .ProseMirror .ProseMirror-gapcursor span:after{animation-duration:1s}
|
|
438
483
|
._bur2idpf .ProseMirror .ProseMirror-gapcursor:first-of-type+blockquote{margin-top:0}
|
|
439
484
|
._bxhh1osq .ProseMirror .embedCardView-content-wrap[layout^=wrap-]{max-width:100%}
|
|
440
485
|
._bzatglyw .ProseMirror .placeholder-decoration .placeholder-android{pointer-events:none}
|
|
441
486
|
._bzk5azsu .ak-editor-selected-node>.editor-mention-primitive.mention-restricted{color:var(--ds-text-subtle,#505258)}
|
|
487
|
+
._c0871i5q .fabric-text-color-mark{color:var(--custom-palette-color,inherit)}
|
|
442
488
|
._ca0qv47k{padding-top:var(--ds-space-250,20px)}
|
|
443
489
|
._cggnidpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]>div{margin-right:0}
|
|
444
490
|
._clq7grf3 div[extensiontype="com.atlassian.ai-blocks"][extensionkey="ai-action-items-block:aiActionItemsBodiedExtension"] div[data-node-type=actionList]{margin-bottom:0!important}
|
|
@@ -449,20 +495,25 @@
|
|
|
449
495
|
._dafh1j28 .ak-editor-selected-node>.editor-mention-primitive::-moz-selection{background-color:transparent}
|
|
450
496
|
._dcmgglyw .ProseMirror{outline-style:none}
|
|
451
497
|
._dhht1tmo .ProseMirror .telepointer.color-17{--telepointer-participant-text-color:var(--ds-text-accent-gray-bolder,#1e1f21)}
|
|
498
|
+
._dhzqagmp .ProseMirror li:has(>ol:only-child){list-style-type:none!important}
|
|
452
499
|
._dl0n1r31 .ProseMirror hr.ak-editor-selected-node{outline-color:currentColor}
|
|
500
|
+
._dlgt1o8l .ProseMirror.ua-firefox ol li p:empty{display:inline-block}
|
|
453
501
|
._dnsrtlke .ProseMirror .ak-editor-annotation-focus{cursor:pointer}
|
|
454
502
|
._drld15vq [layout=wrap-right]+.ProseMirror-gapcursor+span+[layout=wrap-left]:after{visibility:hidden}
|
|
455
503
|
._drnbtlke .ProseMirror .ak-editor-annotation-hover{cursor:pointer}
|
|
456
504
|
._du1kidpf .ProseMirror .ak-editor-annotation-focus:has([data-inline-card]){padding-right:0}
|
|
457
505
|
._dvqjidpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child h1:first-child:not(style){margin-top:0}
|
|
506
|
+
._e08p1p3b .ProseMirror ul ul{list-style-type:circle}
|
|
458
507
|
._e519idpf .ProseMirror [layout^=wrap-]:has(+.ProseMirror-gapcursor+[layout^=wrap-]) .rich-media-item{margin-left:0}
|
|
459
508
|
._e73x1b66 .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{padding-right:var(--ds-space-050,4px)}
|
|
509
|
+
._e9pffnf5 [aria-label="Selection toolbar"]{animation-duration:.2s}
|
|
460
510
|
._edxtidpf .ProseMirror .telepointer.telepointer-selection-badge .telepointer-fullname{opacity:0}
|
|
461
511
|
._eflqi7uo [data-prosemirror-node-name=date] .date-lozenger-container span{color:var(--ds-text,#292a2e)}
|
|
462
512
|
._el4et94y [data-prosemirror-node-name=date] .date-lozenger-container span{margin-left:1px}
|
|
463
513
|
._etngidpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child h2 style:first-child+*{margin-top:0}
|
|
464
514
|
._f5slidpf :not(.fabric-editor-block-mark)>div.fabric-editor-block-mark:first-of-type:not(.fabric-editor-indentation-mark):not(.fabric-editor-alignment):not(.fabric-editor-font-size) h3:first-child:not(style){margin-top:0}
|
|
465
515
|
._f7xi15vq [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]:after{visibility:hidden}
|
|
516
|
+
._fbx71fbg .ProseMirror ol[data-indent-level="4"]{list-style-type:decimal}
|
|
466
517
|
._fhbe16z4 .ProseMirror .telepointer.telepointer-pulse-animate .telepointer-fullname{animation-duration:2.5s}
|
|
467
518
|
._fk2nidpf :not(.fabric-editor-block-mark)>.heading-wrapper style:first-child+*{margin-top:0}
|
|
468
519
|
._fk7o1ule .ProseMirror-gapcursor+[layout=wrap-left]+span+[layout=wrap-right]:after{display:block}
|
|
@@ -481,6 +532,7 @@
|
|
|
481
532
|
._gdx6idpf :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 style:first-child+*{margin-top:0}
|
|
482
533
|
._ghwiidpf .ProseMirror .ak-editor-annotation-draft{padding-left:0}
|
|
483
534
|
._gkev15cr .ProseMirror .telepointer.color-0{--telepointer-participant-text-color:var(--ds-text-inverse,#fff)}
|
|
535
|
+
._gtdbusvi .ProseMirror ol{box-sizing:border-box}
|
|
484
536
|
._gtdrbimv .ak-editor-selected-node:not(.search-match-block).danger>.editor-mention-primitive{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
485
537
|
._gv641nu9 .ProseMirror span[data-placeholder]{display:inline}
|
|
486
538
|
._gzj3r4us .mentionView-content-wrap.ak-editor-selected-node [data-mention-id]>span{box-shadow:0 0 0 1px var(--ds-border-selected,#1868db)}
|
|
@@ -488,8 +540,11 @@
|
|
|
488
540
|
._h3z91q9c [data-prosemirror-node-name=date] .date-lozenger-container span{white-space:nowrap}
|
|
489
541
|
._h4bbidpf .fabric-editor-font-size:first-of-type:first-child h6:first-child:not(style){margin-top:0}
|
|
490
542
|
._h9qo1r31 .ProseMirror .placeholder-decoration .placeholder-android{outline-color:currentColor}
|
|
543
|
+
._haa41wth .ProseMirror ul[data-indent-level="1"]{list-style-type:disc}
|
|
491
544
|
._hte21j28 .ak-editor-selected-node>.editor-mention-primitive ::selection{background-color:transparent}
|
|
492
545
|
._htkd115i .ProseMirror .telepointer.color-10{--telepointer-participant-bg-color:var(--ds-background-accent-blue-subtle,#669df1)}
|
|
546
|
+
._hubiw4vn .ProseMirror ul[data-indent-level="6"]{list-style-type:square}
|
|
547
|
+
._huyw1k9k .ProseMirror ol[data-indent-level="2"]{list-style-type:lower-alpha}
|
|
493
548
|
._i3wvidpf .ProseMirror>.code-block:first-child{margin-top:0}
|
|
494
549
|
._iauqidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]>div{margin-left:0}
|
|
495
550
|
._ieodidpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]+*>*{margin-top:0}
|
|
@@ -498,6 +553,7 @@
|
|
|
498
553
|
._j03f1qop{--ak-editor--breakout-wide-layout-width:905px}
|
|
499
554
|
._j2goidpf .fabric-editor-font-size:first-of-type:first-child h5 style:first-child+*{margin-top:0}
|
|
500
555
|
._j543idpf :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) .heading-wrapper style:first-child+*{margin-top:0}
|
|
556
|
+
._j6t01o8l .ProseMirror.ua-firefox ol li p>span:empty{display:inline-block}
|
|
501
557
|
._jaboglyw::-webkit-scrollbar-corner{display:none}
|
|
502
558
|
._jav3idpf .ProseMirror>hr:first-child{margin-top:0}
|
|
503
559
|
._jcgg17vv div[extensionType="com.atlassian.ai-blocks"]:has(.streaming) .extension-container:before{animation-name:k1eqwm1p}
|
|
@@ -521,12 +577,14 @@
|
|
|
521
577
|
._knnuidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]+span+*>*{margin-top:0}
|
|
522
578
|
._kqswh2mm{position:relative}
|
|
523
579
|
._ksblidpf .fabric-editor-alignment:first-of-type:first-child p:first-child:not(style){margin-top:0}
|
|
580
|
+
._kyt0grf3 .ProseMirror li:has(>ul:only-child)>ul{margin-top:0!important}
|
|
524
581
|
._l4vzglyw .ProseMirror .ProseMirror-gapcursor{pointer-events:none}
|
|
525
582
|
._lf1tglyw .ProseMirror-gapcursor+[layout=wrap-right]+[layout=wrap-left]{clear:none}
|
|
526
583
|
._lgf9v77o [data-prosemirror-node-name=date] .date-lozenger-container span{padding-top:var(--ds-space-025,2px)}
|
|
527
584
|
._lh5tdrnj .ProseMirror .ProseMirror-gapcursor span:after{animation-name:k1xnqtye}
|
|
528
585
|
._li04tdv8 .ProseMirror .telepointer.color-15{--telepointer-participant-bg-color:var(--ds-background-accent-teal-subtle,#6cc3e0)}
|
|
529
586
|
._lm211rpy .ProseMirror span.pm-placeholder__text{color:var(--ds-text-subtlest,#6b6e76)}
|
|
587
|
+
._lv7dn7od a .fabric-text-color-mark{color:unset}
|
|
530
588
|
._m1d5tlke .dateView-content-wrap .date-lozenger-container{cursor:pointer}
|
|
531
589
|
._m3b01o36 .ProseMirror-selectednode{outline-width:medium}
|
|
532
590
|
._m5j31j28 .ak-editor-selected-node>.editor-mention-primitive.mention-self ::selection{background-color:transparent}
|
|
@@ -556,7 +614,9 @@
|
|
|
556
614
|
._o7dvt7xp .ProseMirror .ak-editor-annotation-draft{box-shadow:var(--ds-shadow-raised,0 1px 1px #1e1f2140,0 0 1px #1e1f214f)}
|
|
557
615
|
._o7sybimv .dateView-content-wrap.ak-editor-selected-node.danger .date-lozenger-container>span{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
558
616
|
._ocz2idpf :not(.fabric-editor-block-mark)>h1 style:first-child+*{margin-top:0}
|
|
617
|
+
._od11grf3 .ProseMirror li:has(>ul:only-child){margin-top:0!important}
|
|
559
618
|
._ojmct7xp .ProseMirror .ak-editor-annotation-focus{box-shadow:var(--ds-shadow-raised,0 1px 1px #1e1f2140,0 0 1px #1e1f214f)}
|
|
619
|
+
._omxdf705 .ProseMirror:not(.blockCardView-content-wrap)>li:before{content:" "}
|
|
560
620
|
._op0fn7od div[extensionType="com.atlassian.ai-blocks"] .extension-container{overflow-y:unset}
|
|
561
621
|
._oq4if705 .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]:after{content:" "}
|
|
562
622
|
._p31f1hrf .ProseMirror-gapcursor+[layout=wrap-left]+span+[layout=wrap-right]:after{clear:both}
|
|
@@ -577,15 +637,18 @@
|
|
|
577
637
|
._q353idpf .ProseMirror .ak-editor-annotation-draft:has([data-inline-card]){padding-left:0}
|
|
578
638
|
._q7vcidpf .ProseMirror .telepointer:hover .telepointer-initial{opacity:0}
|
|
579
639
|
._qbxqgrf3 div[extensiontype="com.atlassian.ai-blocks"][extensionkey="ai-action-items-block:aiActionItemsBodiedExtension"] div[data-node-type=actionList]{margin-left:0!important}
|
|
640
|
+
._qd3musvi .ProseMirror ul{box-sizing:border-box}
|
|
580
641
|
._qfmzp3kn div[extensionType="com.atlassian.ai-blocks"]:has(.streaming) .extension-container:before{animation-timing-function:linear}
|
|
581
642
|
._qgb1tlke .ProseMirror hr{cursor:pointer}
|
|
582
643
|
._qhe2idpf .fabric-editor-font-size:first-of-type:first-child h6 style:first-child+*{margin-top:0}
|
|
583
644
|
._qmjbxjz2{--ak-editor--breakout-full-page-guttering-padding:calc(var(--ak-editor--large-gutter-padding)*2 + var(--ak-editor--default-gutter-padding))}
|
|
645
|
+
._qok21p3b .ProseMirror ul[data-indent-level="5"]{list-style-type:circle}
|
|
584
646
|
._qzx91j28 .ak-editor-selected-node>.editor-mention-primitive.mention-restricted ::selection{background-color:transparent}
|
|
585
647
|
._r397idpf .ProseMirror .telepointer.telepointer-selection-badge .telepointer-initial{left:0}
|
|
586
648
|
._r6joidpf [layout=wrap-left]+.ProseMirror-gapcursor+[layout=wrap-right]:after{height:0}
|
|
587
649
|
._r8oxidpf .fabric-editor-alignment:first-of-type:first-child h2:first-child:not(style){margin-top:0}
|
|
588
650
|
._ra5tt94y [data-prosemirror-node-name=date] .date-lozenger-container span{margin-right:1px}
|
|
651
|
+
._rajy1tuv .ProseMirror .ak-ul li>ul{margin-top:max(0px,calc((var(--ak-editor-base-font-size, 1pc) - 13px)*1.33333))}
|
|
589
652
|
._rc9pyh40 .ProseMirror hr{height:2px}
|
|
590
653
|
._rejjstnw .ProseMirror .ProseMirror-fake-text-cursor:after{position:absolute}
|
|
591
654
|
._rfl4idpf .fabric-editor-font-size:first-of-type:first-child h5:first-child:not(style){margin-top:0}
|
|
@@ -594,15 +657,20 @@
|
|
|
594
657
|
._rjmvidpf .fabric-editor-font-size:first-of-type:first-child p style:first-child+*{margin-top:0}
|
|
595
658
|
._rn5mbimv .danger .dateView-content-wrap.ak-editor-selected-node .date-lozenger-container>span{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
596
659
|
._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}
|
|
660
|
+
._s7xpcuai .ProseMirror ul{padding-left:var(--ed--list--item-counter--padding,24px)}
|
|
597
661
|
._s8m8idpf .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child h6:first-child:not(style){margin-top:0}
|
|
662
|
+
._s8y916px .ProseMirror:not(.blockCardView-content-wrap)>li>p:first-child{margin-top:-1.714em!important}
|
|
598
663
|
._sb9fglyw .ProseMirror-gapcursor+[layout=wrap-left]+span+[layout=wrap-right]{clear:none}
|
|
599
664
|
._sdnkidpf .ProseMirror-gapcursor+[layout=wrap-right]+span+[layout=wrap-left]+*{margin-top:0}
|
|
665
|
+
._si4z1tuv .ProseMirror .ak-ol li>ul{margin-top:max(0px,calc((var(--ak-editor-base-font-size, 1pc) - 13px)*1.33333))}
|
|
600
666
|
._slqe1j28 .ak-editor-selected-node>.editor-mention-primitive.mention-restricted::selection{background-color:transparent}
|
|
601
667
|
._smxnglyw .ProseMirror .ProseMirror-fake-text-cursor{pointer-events:none}
|
|
668
|
+
._sneogrf3 .ProseMirror div[data-task-list-local-id]>div[data-task-list-local-id]{margin-top:0!important}
|
|
602
669
|
._stw0idpf [layout=wrap-right]+.ProseMirror-gapcursor+span+[layout=wrap-left]>div{margin-right:0}
|
|
603
670
|
._sx0p1tmo .ProseMirror .telepointer.color-14{--telepointer-participant-text-color:var(--ds-text-accent-gray-bolder,#1e1f21)}
|
|
604
671
|
._t7ab1vi7{--ak-editor--default-gutter-padding:32px}
|
|
605
672
|
._te0it94y .editor-mention-primitive{padding-bottom:1px}
|
|
673
|
+
._tmq91tuv .ProseMirror li+li{margin-top:max(0px,calc((var(--ak-editor-base-font-size, 1pc) - 13px)*1.33333))}
|
|
606
674
|
._tqacbimv .danger .mentionView-content-wrap.ak-editor-selected-node>span>span>span{box-shadow:0 0 0 1px var(--ds-border-danger,#e2483d)}
|
|
607
675
|
._tsa3t94y .editor-mention-primitive{padding-top:1px}
|
|
608
676
|
._tsrtidpf [data-prosemirror-node-name=date] .date-lozenger-container span{margin-bottom:0}
|
|
@@ -617,11 +685,13 @@
|
|
|
617
685
|
._ug3m1nu9 .ProseMirror span.pm-placeholder__text[data-placeholder]:after{display:inline}
|
|
618
686
|
._ujemidpf .fabric-editor-alignment:first-of-type:first-child h1 style:first-child+*{margin-top:0}
|
|
619
687
|
._uk93idpf .ProseMirror-gapcursor+[layout=wrap-left]+[layout=wrap-right]>div{margin-right:0}
|
|
688
|
+
._ul3mutpp .ProseMirror ul:not(li>ul):not(:nth-child(1 of :not(style,.ProseMirror-gapcursor,.ProseMirror-widget,span))){margin-top:var(--ds-space-150,9pt)}
|
|
620
689
|
._umh5idpf .ProseMirror>.ProseMirror-widget:first-child+hr{margin-top:0}
|
|
621
690
|
._ups11rpy .ProseMirror .placeholder-decoration{color:var(--ds-text-subtlest,#6b6e76)}
|
|
622
691
|
._uput15s3 .ak-editor-selected-node>.editor-mention-primitive.mention-self{background-color:var(--ds-background-selected,#e9f2fe)}
|
|
623
692
|
._uqqyh2mm .ProseMirror .telepointer{position:relative}
|
|
624
693
|
._uuop1j28 .ProseMirror-hideselection{caret-color:transparent}
|
|
694
|
+
._uw601ku9 [aria-label="Selection toolbar"]{animation-timing-function:cubic-bezier(.6,0,0,1)}
|
|
625
695
|
._uw641q08{--ak-editor--full-width-layout-width:1800px}
|
|
626
696
|
._ux32b3bt .ProseMirror .ProseMirror-fake-text-cursor:after{content:""}
|
|
627
697
|
._uxukn7od div[extensionType="com.atlassian.ai-blocks"] .extension-container{overflow-x:unset}
|
|
@@ -640,12 +710,15 @@
|
|
|
640
710
|
._w0epidpf .ProseMirror .ak-editor-annotation-blur{padding-left:0}
|
|
641
711
|
._w13212c5 div[extensionType="com.atlassian.ai-blocks"]:has(.streaming) .extension-container:after{animation-iteration-count:infinite}
|
|
642
712
|
._w33agrho .fabric-editor--max-width-mode{--ak-editor--breakout-min-width:0px}
|
|
713
|
+
._w39w1p3b .ProseMirror ul[data-indent-level="2"]{list-style-type:circle}
|
|
643
714
|
._w6dp1ule .ProseMirror .telepointer.telepointer-selection-badge .telepointer-initial{display:block}
|
|
644
715
|
._wets1nu9 .ProseMirror .ProseMirror-fake-text-cursor{display:inline}
|
|
645
716
|
._wg06idpf [data-prosemirror-node-name=date] .date-lozenger-container span{margin-top:0}
|
|
646
717
|
._wgub1j28 .ProseMirror span.pm-placeholder.ak-editor-selected-node ::selection{background-color:transparent}
|
|
647
718
|
._wi4l1j28 .dateView-content-wrap.ak-editor-selected-node .date-lozenger-container>span ::-moz-selection{background-color:transparent}
|
|
719
|
+
._wlqz1o8l .ProseMirror.ua-firefox ul li p:empty{display:inline-block}
|
|
648
720
|
._wmhayh40 .ProseMirror .ak-editor-annotation-focus{padding-bottom:2px}
|
|
721
|
+
._wnl31s93 .text-highlight{background-color:var(--ds-background-accent-blue-subtlest,#e9f2fe)}
|
|
649
722
|
._wsn51tmo .ProseMirror .telepointer.color-15{--telepointer-participant-text-color:var(--ds-text-accent-gray-bolder,#1e1f21)}
|
|
650
723
|
._x07nrrda .ProseMirror span.pm-placeholder__text[data-placeholder]:after{content:attr(data-placeholder)}
|
|
651
724
|
._x6bu11lh .ProseMirror .ProseMirror-fake-text-selection{color:HighlightText}
|
|
@@ -660,6 +733,7 @@
|
|
|
660
733
|
._y5fkglyw .ProseMirror .placeholder-decoration .placeholder-android{outline-style:none}
|
|
661
734
|
._yd46zr6s .ProseMirror .ProseMirror-gapcursor span[layout=wide]{transform:translateX(-50%)}
|
|
662
735
|
._ydciidpf .ProseMirror-widget:not([data-blocks-decoration-container=true]):not([data-blocks-drag-handle-container=true]):not([data-blocks-quick-insert-container=true])+.ProseMirror-gapcursor+span+*{margin-top:0}
|
|
736
|
+
._yw541wth .ProseMirror ul[data-indent-level="4"]{list-style-type:disc}
|
|
663
737
|
._yxs7kb7n .ProseMirror .telepointer:hover .telepointer-fullname{opacity:1}
|
|
664
738
|
._yy7y1gly .danger .mentionView-content-wrap.ak-editor-selected-node>span>span>span{background-color:var(--ds-background-danger,#ffeceb)}
|
|
665
739
|
._yyaxidpf [layout=wrap-right]+.ProseMirror-gapcursor+[layout=wrap-left]>div{margin-right:0}
|
|
@@ -673,6 +747,7 @@
|
|
|
673
747
|
._zo131tmo .ProseMirror .telepointer.color-13{--telepointer-participant-text-color:var(--ds-text-accent-gray-bolder,#1e1f21)}
|
|
674
748
|
._zy25uj17{--ak-editor--breakout-fallback-width:calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))}
|
|
675
749
|
._zzusidpf [layout=wrap-left]+.ProseMirror-gapcursor+span+[layout=wrap-right]:after{font-size:0}
|
|
750
|
+
._j9yv7g83 button.first-floating-toolbar-button:focus{outline:2px solid var(--ds-border-focused,#4688ec)}
|
|
676
751
|
._1t47plhp .editor-mention-primitive:hover{background:var(--ds-background-neutral-hovered,#0b120e24)}
|
|
677
752
|
._1y0dhf2y .editor-mention-primitive.mention-self:hover{background:var(--ds-background-brand-bold-hovered,#1558bc)}
|
|
678
753
|
._1b2hplhp [data-prosemirror-node-name=date] .date-lozenger-container span:hover{background-color:var(--ds-background-neutral-hovered,#0b120e24)}
|
|
@@ -692,6 +767,7 @@
|
|
|
692
767
|
@container editor-area (width >= 1266px){._1j8i1xb4 .ProseMirror{--ak-editor--breakout-wide-layout-width:1011px}}
|
|
693
768
|
@keyframes k1eqwm1p{0%{--panel-gradient-angle:0deg;background-position:100%}to{--panel-gradient-angle:360deg;background-position:-100%}}
|
|
694
769
|
@keyframes k1g8d6yk{to{transform:scaleX(1);opacity:1}0%{transform:scaleX(0);opacity:0}90%{transform:scaleX(0);opacity:0}}
|
|
770
|
+
@keyframes k1xe95hp{0%{opacity:0;transform:translateY(1pc)}to{opacity:1;transform:translateY(0)}}
|
|
695
771
|
@keyframes k1xnqtye{0%{opacity:0}to{opacity:0}50%{opacity:1}}
|
|
696
772
|
@keyframes k3895my{0%{transform:scaleX(1);opacity:1}95%{transform:scaleX(1);opacity:1}to{transform:scaleX(0);opacity:0}}
|
|
697
773
|
@keyframes k7wtbat{0%{--panel-gradient-angle:0deg}to{--panel-gradient-angle:360deg}}
|