[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed issue where status bar can overflow without affecting notification beak #155649

Merged
merged 7 commits into from
Jul 22, 2022
Prev Previous commit
Next Next commit
using overflow: hidden while keeping beak intact
  • Loading branch information
nirabhromakhal committed Jul 20, 2022
commit ae5f722c329efce6788bc2bcceafc4d39cf6e77d
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
height: 22px;
font-size: 12px;
display: flex;
overflow-x: hidden;
overflow: hidden;
transition: background-color 0.35s ease-out;
}

Expand All @@ -33,6 +33,7 @@

.monaco-workbench .part.statusbar > .right-items {
flex-direction: row-reverse;
flex-wrap: wrap; /* extra items move to new line */
}

.monaco-workbench .part.statusbar > .left-items {
Expand All @@ -47,10 +48,6 @@
max-width: 40vw;
}

.monaco-workbench .part.statusbar > .items-container > .statusbar-item.has-beak {
/*position: relative;*/
}

.monaco-workbench .part.statusbar > .items-container > .statusbar-item.has-beak:before {
content: '';
position: absolute;
Expand Down