Path: blob/main/src/vs/editor/browser/widget/multiDiffEditor/style.css
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45.monaco-component.multiDiffEditor {6background: var(--vscode-multiDiffEditor-background);78position: relative;910height: 100%;11width: 100%;1213overflow-y: hidden;1415> div {16position: absolute;17top: 0px;18left: 0px;1920height: 100%;21width: 100%;2223&.placeholder {24visibility: hidden;2526&.visible {27visibility: visible;28}2930display: grid;31place-items: center;32place-content: center;33}34}3536.active {37--vscode-multiDiffEditor-border: var(--vscode-focusBorder);38}3940.multiDiffEntry {41display: flex;42flex-direction: column;43flex: 1;44overflow: hidden;454647.collapse-button {48margin: 0 5px;49cursor: pointer;5051a {52display: block;53}54}5556.header {57z-index: 1000;58background: var(--vscode-editor-background);5960&:not(.collapsed) .header-content {61border-bottom: 1px solid var(--vscode-sideBarSectionHeader-border);62}6364.header-content {65margin: 8px 0px 0px 0px;66padding: 4px 5px;6768border-top: 1px solid var(--vscode-multiDiffEditor-border);6970display: flex;71align-items: center;7273color: var(--vscode-foreground);74background: var(--vscode-multiDiffEditor-headerBackground);7576&.shadow {77box-shadow: var(--vscode-scrollbar-shadow) 0px 6px 6px -6px;78}7980.file-path {81display: flex;82flex: 1;83min-width: 0;8485.title {86font-size: 14px;87line-height: 22px;8889&.original {90flex: 1;91min-width: 0;92text-overflow: ellipsis;93}94}9596.status {97font-weight: 600;98opacity: 0.75;99margin: 0px 10px;100line-height: 22px;101102/*103TODO@hediet: move colors from git extension to core!104&.renamed {105color: v ar(--vscode-gitDecoration-renamedResourceForeground);106}107108&.deleted {109color: v ar(--vscode-gitDecoration-deletedResourceForeground);110}111112&.added {113color: v ar(--vscode-gitDecoration-addedResourceForeground);114}115*/116}117}118119.actions {120padding: 0 8px;121}122}123124125}126127.editorParent {128flex: 1;129display: flex;130flex-direction: column;131132border-bottom: 1px solid var(--vscode-multiDiffEditor-border);133overflow: hidden;134}135136.editorContainer {137flex: 1;138}139}140}141142143