Fix some styles in the playground with overflow (#3542)

FIx: 
- Hover popup would get croped 


![image](https://github.com/microsoft/typespec/assets/1031227/a2b975d5-47af-4e4a-b547-f56b8c4e3668)
- tabs overlap

![image](https://github.com/microsoft/typespec/assets/1031227/8919ec99-eb15-4197-a6c2-817f8d29fd17)
This commit is contained in:
Timothee Guerin 2024-06-06 13:18:46 -07:00 коммит произвёл GitHub
Родитель 6ce8837c72
Коммит 0f344accd6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
5 изменённых файлов: 16 добавлений и 2 удалений

Просмотреть файл

@ -0,0 +1,8 @@
---
# Change versionKind to one of: internal, fix, dependencies, feature, deprecation, breaking
changeKind: fix
packages:
- "@typespec/playground"
---
Fix issue where hover tooltip would be cropped or not visible

Просмотреть файл

@ -53,7 +53,7 @@ export const Editor: FunctionComponent<EditorProps> = ({ model, options, actions
return (
<div
className="monaco-editor-container"
style={{ width: "100%", height: "100%", overflow: "hidden" }}
style={{ width: "100%", height: "100%" }}
ref={editorContainerRef}
data-tabster='{"uncontrolled": {}}' // https://github.com/microsoft/tabster/issues/316
></div>

Просмотреть файл

@ -1,6 +1,7 @@
.tabs {
border-bottom: 1px solid var(--colorNeutralStroke1);
box-shadow: var(--shadow2);
overflow-y: auto;
}
.tab-divider {

Просмотреть файл

@ -5,3 +5,8 @@
height: 100%;
overflow: hidden;
}
.edit-pane {
display: flex;
flex-direction: column;
}

Просмотреть файл

@ -261,7 +261,7 @@ export const Playground: FunctionComponent<PlaygroundProps> = (props) => {
<SplitPane sizes={verticalPaneSizes} onChange={onVerticalPaneSizeChange} split="horizontal">
<Pane>
<SplitPane initialSizes={["50%", "50%"]}>
<Pane>
<Pane className={style["edit-pane"]}>
<EditorCommandBar
host={host}
selectedEmitter={selectedEmitter}