Skip to content

Commit ca9b4d9

Browse files
authored
Merge pull request #3185 from nextcloud/backport/3175/stable33
[stable33] fix: adjust z-index for color picker modals
2 parents cb51c29 + 8459aa1 commit ca9b4d9

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/viewer-init.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* extracted by css-entry-points-plugin */
2-
@import './init-Ca_UMrhY.chunk.css';
2+
@import './init-BCmEO2CK.chunk.css';
33
@import './previewUtils-DsYu1D1k.chunk.css';
44
@import './NcIconSvgWrapper-Bui9PhAS-3xIBDiQU.chunk.css';
55
@import './NcActionButton-Dc3ra1Np.chunk.css';

js/viewer-init.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

js/viewer-init.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/ImageEditor.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export default {
189189
mutations.forEach((mutation) => {
190190
if (mutation.type === 'childList') {
191191
mutation.addedNodes.forEach((node) => {
192-
if (node.classList.contains('FIE_root') || node.classList.contains('SfxModal-Wrapper')) {
192+
if (node.classList?.contains('FIE_root') || node.classList?.contains('SfxModal-Wrapper')) {
193193
emit('viewer:trapElements:changed', node)
194194
}
195195
})
@@ -366,7 +366,7 @@ export default {
366366
<style lang="scss">
367367
// Make sure the editor and its modals are above everything
368368
.SfxModal-Wrapper {
369-
z-index: 10101 !important;
369+
z-index: 10102 !important;
370370
}
371371
372372
#SfxPopper {

0 commit comments

Comments
 (0)