Path: blob/main/src/vs/workbench/contrib/notebook/browser/media/notebookCellOutput.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-workbench .notebookOverlay .output {6position: absolute;7height: 0px;8user-select: text;9-webkit-user-select: text;10cursor: auto;11box-sizing: border-box;12z-index: var(--z-index-notebook-output);13}1415.monaco-workbench .notebookOverlay .output .cell-output-toolbar {16left: -29px;17width: 22px;18z-index: var(--z-index-notebook-cell-output-toolbar);19}2021.monaco-workbench .notebookOverlay .output p {22white-space: initial;23overflow-x: auto;24margin: 0px;25}2627.monaco-workbench .notebookOverlay .output > div.foreground {28width: 100%;29min-height: 24px;30box-sizing: border-box;31}3233.monaco-workbench .notebookOverlay .output > div.foreground.output-inner-container {34width: 100%;35box-sizing: border-box;36}3738.monaco-workbench .notebookOverlay .output > div.foreground.output-inner-container .rendered-output {39display: inline;40transform: translate3d(0px, 0px, 0px);41}4243.monaco-workbench .notebookOverlay .output .cell-output-toolbar {44position: absolute;45top: 4px;46left: -32px;47height: 16px;48cursor: pointer;49padding: 6px 0px;50}5152.monaco-workbench .notebookOverlay .output .cell-output-toolbar .actions-container {53justify-content: center;54}5556.monaco-workbench .notebookOverlay .output pre {57margin: 4px 0;58}5960.monaco-workbench .notebookOverlay .output .error_message {61color: red; /*TODO@rebornix theme color*/62}6364.monaco-workbench .notebookOverlay .output .error > div {65white-space: normal;66}6768.monaco-workbench .notebookOverlay .output .error pre.traceback {69margin: 8px 0;70}7172.monaco-workbench .notebookOverlay .output .error .traceback > span {73display: block;74}7576.monaco-workbench .notebookOverlay .output .display img {77max-width: 100%;78}7980.monaco-workbench .notebookOverlay .output-show-more-container {81position: absolute;82}8384.monaco-workbench .notebookOverlay .output-show-more-container p {85padding: 8px 8px 0 8px;86margin: 0px;87}8889.output-show-more {90padding: 8px 0 0 0;91font-style: italic;92}9394.output-show-more a {95cursor: pointer;96}9798/** Cell output show more*/99.notebookOverlay .output-show-more-container a,100.notebookOverlay div.output-show-more a {101color: var(--vscode-textLink-foreground);102}103104.notebookOverlay .output-show-more-container a:active,105.notebookOverlay .output-show-more a:active {106color: var(--vscode-textLink-activeForeground);107}108109/** Notebook cell output background */110.notebookOverlay .output,111.notebookOverlay .output-element,112.notebookOverlay .output-show-more-container {113background-color: var(--vscode-notebook-outputContainerBackgroundColor);114}115116.notebookOverlay .output-element {117border-top: none !important; border: 1px solid transparent; border-color: var(--vscode-notebook-outputContainerBorderColor) !important;118}119120121