|
| 1 | +/*--------------------------------------------------------------------------------------------- |
| 2 | + * Copyright (c) Microsoft Corporation. All rights reserved. |
| 3 | + * Licensed under the MIT License. See License.txt in the project root for license information. |
| 4 | + *--------------------------------------------------------------------------------------------*/ |
| 5 | + |
| 6 | +/* .notebook-diff-editor { |
| 7 | + display: flex; |
| 8 | + flex-direction: row; |
| 9 | + height: 100%; |
| 10 | + width: 100%; |
| 11 | +} |
| 12 | +.notebook-diff-editor-modified, |
| 13 | +.notebook-diff-editor-original { |
| 14 | + display: flex; |
| 15 | + height: 100%; |
| 16 | + width: 50%; |
| 17 | +} */ |
| 18 | + |
| 19 | +.notebook-text-diff-editor .cell-diff-editor-container { |
| 20 | + margin: 8px; |
| 21 | +} |
| 22 | + |
| 23 | +.notebook-text-diff-editor .cell-diff-editor-container .metadata-container { |
| 24 | + display: flex; |
| 25 | + height: 24px; |
| 26 | + align-items: center; |
| 27 | + cursor: default; |
| 28 | +} |
| 29 | + |
| 30 | +.notebook-text-diff-editor .cell-diff-editor-container .metadata-container .metadata-folding-indicator .codicon { |
| 31 | + visibility: visible; |
| 32 | + padding: 4px 0 0 10px; |
| 33 | + cursor: pointer; |
| 34 | +} |
| 35 | + |
| 36 | +.notebook-text-diff-editor .cell-diff-editor-container .metadata-container .metadata-status { |
| 37 | + font-size: 12px; |
| 38 | +} |
| 39 | + |
| 40 | +.notebook-text-diff-editor .cell-diff-editor-container .metadata-container .metadata-status span { |
| 41 | + margin: 0 8px; |
| 42 | + line-height: 21px; |
| 43 | +} |
| 44 | + |
| 45 | +.notebook-text-diff-editor .cell-diff-editor-container.delete .editor-container { |
| 46 | + display: inline-block; |
| 47 | + width: calc(50% - 18px); |
| 48 | +} |
| 49 | + |
| 50 | +.notebook-text-diff-editor .cell-diff-editor-container.delete .diagonal-fill { |
| 51 | + display: inline-block; |
| 52 | + width: calc(50% + 18px); |
| 53 | +} |
| 54 | + |
| 55 | +.notebook-text-diff-editor .cell-diff-editor-container.insert .editor-container { |
| 56 | + display: inline-block; |
| 57 | + width: calc(50% + 18px); |
| 58 | +} |
| 59 | + |
| 60 | +.notebook-text-diff-editor .cell-diff-editor-container.insert .diagonal-fill { |
| 61 | + display: inline-block; |
| 62 | + width: calc(50% - 18px); |
| 63 | +} |
| 64 | + |
| 65 | +.notebook-text-diff-editor { |
| 66 | + overflow: hidden; |
| 67 | +} |
| 68 | + |
| 69 | +.monaco-workbench .notebook-text-diff-editor > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row, |
| 70 | +.monaco-workbench .notebook-text-diff-editor > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row:hover, |
| 71 | +.monaco-workbench .notebook-text-diff-editor > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.focused { |
| 72 | + outline: none !important; |
| 73 | +} |
0 commit comments