code-server/packages/vscode/src/vscode.scss

17 lines
594 B
SCSS
Raw Normal View History

2019-01-19 00:04:24 +00:00
// These use -webkit-margin-before/after which don't work.
.monaco-workbench > .part > .title > .title-label h2,
.monaco-panel-view .panel > .panel-header h3.title {
margin-top: 0;
margin-bottom: 0;
}
2019-01-08 00:46:19 +00:00
// Using @supports to keep the Firefox fixes completely separate from vscode's
// CSS that is tailored for Chrome.
@supports (-moz-appearance:none) {
2019-01-19 00:04:24 +00:00
// Fix buttons getting cut off on notifications.
2019-01-08 00:46:19 +00:00
.monaco-workbench .notifications-list-container .notification-list-item .notification-list-item-buttons-container .monaco-button.monaco-text-button {
max-width: 100%;
width: auto;
}
}