Path: blob/main/src/vs/editor/browser/widget/multiDiffEditor/style.css
5221 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> .multi-diff-root-floating-menu {37position: absolute;38top: auto;39right: 28px;40bottom: 24px;41left: auto;42width: auto;43}4445.active {46--vscode-multiDiffEditor-border: var(--vscode-focusBorder);47}4849.multiDiffEntry {50display: flex;51flex-direction: column;52flex: 1;53overflow: hidden;545556.collapse-button {57margin: 0 5px;58cursor: pointer;5960a {61display: block;62}63}6465.header {66z-index: 1000;67background: var(--vscode-editor-background);6869&:not(.collapsed) .header-content {70border-bottom: 1px solid var(--vscode-sideBarSectionHeader-border);71}7273.header-content {74margin: 8px 0px 0px 0px;75padding: 4px 5px;7677border-top: 1px solid var(--vscode-multiDiffEditor-border);7879display: flex;80align-items: center;8182color: var(--vscode-foreground);83background: var(--vscode-multiDiffEditor-headerBackground);8485&.shadow {86box-shadow: var(--vscode-scrollbar-shadow) 0px 6px 6px -6px;87}8889.file-path {90display: flex;91flex: 1;92min-width: 0;9394.title {95font-size: 14px;96line-height: 22px;9798&.original {99flex: 1;100min-width: 0;101text-overflow: ellipsis;102}103}104105.status {106font-weight: 600;107opacity: 0.75;108margin: 0px 10px;109line-height: 22px;110111/*112TODO@hediet: move colors from git extension to core!113&.renamed {114color: v ar(--vscode-gitDecoration-renamedResourceForeground);115}116117&.deleted {118color: v ar(--vscode-gitDecoration-deletedResourceForeground);119}120121&.added {122color: v ar(--vscode-gitDecoration-addedResourceForeground);123}124*/125}126}127128.actions {129padding: 0 8px;130}131}132133134}135136.editorParent {137flex: 1;138display: flex;139flex-direction: column;140141border-bottom: 1px solid var(--vscode-multiDiffEditor-border);142overflow: hidden;143}144145.editorContainer {146flex: 1;147}148}149}150151152