2019-01-19 07:04:24 +07: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-23 05:39:20 +07:00
|
|
|
.monaco-icon-label > .monaco-icon-label-description-container {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.monaco-icon-label > .decorations-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
padding-right: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.monaco-icon-label::after {
|
|
|
|
margin-left: initial;
|
|
|
|
}
|
|
|
|
|
2019-03-02 04:51:11 +07:00
|
|
|
// We don't have rating data.
|
|
|
|
.extension-ratings {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2019-01-08 07:46:19 +07: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 07:04:24 +07:00
|
|
|
// Fix buttons getting cut off on notifications.
|
2019-01-08 07:46:19 +07:00
|
|
|
.monaco-workbench .notifications-list-container .notification-list-item .notification-list-item-buttons-container .monaco-button.monaco-text-button {
|
|
|
|
max-width: 100%;
|
|
|
|
width: auto;
|
|
|
|
}
|
2019-01-23 05:39:20 +07:00
|
|
|
|
|
|
|
.monaco-shell .screen-reader-detected-explanation .buttons a,
|
|
|
|
.monaco-workbench > .part.editor > .content .editor-group-container > .title .tabs-container > .tab.sizing-shrink,
|
|
|
|
.monaco-workbench .notifications-list-container .notification-list-item .notification-list-item-buttons-container .monaco-button {
|
|
|
|
max-width: -moz-fit-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.monaco-workbench > .part.editor > .content .editor-group-container > .title .tabs-container > .tab.sizing-fit,
|
|
|
|
.explorer-viewlet .panel-header .count,
|
|
|
|
.extensions-viewlet > .extensions .extension > .details > .header-container > .header > .version,
|
|
|
|
.debug-viewlet .debug-call-stack .stack-frame .label {
|
|
|
|
min-width: -moz-fit-content;
|
|
|
|
}
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
2019-03-01 03:04:19 +07:00
|
|
|
|
|
|
|
.window-appicon {
|
|
|
|
background-image: url(./vscode-coder.svg) !important;
|
|
|
|
background-size: 56px !important;
|
|
|
|
width: 56px !important;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|