Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased]

### Fixed

- **SplitLayout**: The fixed pane size was set to zero initially.
- **SplitLayout**: The mouse-over state was not reset when the button was released outside the component.

## [1.8.0] - 2024-11-08

### Added
Expand Down
14 changes: 13 additions & 1 deletion dev/vscode-split-layout/vertical.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@
});
};
</script>
<style>
vscode-demo:not(:defined) {
display: block;
margin: 32px 0;
padding: 55px 20px 20px;
}

vscode-split-layout:not(:defined) {
display: flex;
overflow: auto;
}
</style>
</head>

<body>
Expand All @@ -30,9 +42,9 @@ <h2>Vertical example</h2>
<vscode-demo>
<vscode-split-layout
initial-handle-position="100px"
handle-position="25%"
reset-on-dbl-click
split="vertical"
fixed-pane="start"
style="width: 500px; height: 250px; border-width: 10px;"
>
<div slot="start" class="split-layout-content start">
Expand Down
Loading