Skip to content

Commit

Permalink
feat: remove the isEmbedMode style and keep the isEmbedMode css class…
Browse files Browse the repository at this point in the history
… name.
  • Loading branch information
lecepin committed Sep 4, 2024
1 parent 91c9bc2 commit 76eb20c
Showing 1 changed file with 1 addition and 30 deletions.
31 changes: 1 addition & 30 deletions src/SplitPane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -221,34 +221,5 @@ function changeViewSize() {
}
}

/* embed mode */
.is-embed-mode .left,
.is-embed-mode .right {
position: absolute;
inset: 0;
width: auto !important;
height: auto !important;
}
.is-embed-mode .dragger {
display: none;
}
.is-embed-mode.split-pane .toggler {
display: block;
}
.is-embed-mode.split-pane .right {
z-index: -1;
pointer-events: none;
}
.is-embed-mode.split-pane .left {
z-index: 0;
pointer-events: all;
}
.is-embed-mode.split-pane.show-output .right {
z-index: 0;
pointer-events: all;
}
.is-embed-mode.split-pane.show-output .left {
z-index: -1;
pointer-events: none;
}

</style>

0 comments on commit 76eb20c

Please sign in to comment.