Path: blob/main/src/vs/base/browser/ui/splitview/paneview.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-pane-view {6width: 100%;7height: 100%;8}910.monaco-pane-view .pane {11overflow: hidden;12width: 100%;13height: 100%;14display: flex;15flex-direction: column;16}1718.monaco-pane-view .pane.horizontal:not(.expanded) {19flex-direction: row;20}2122.monaco-pane-view .pane > .pane-header {23height: 22px;24font-size: 11px;25font-weight: bold;26overflow: hidden;27display: flex;28cursor: pointer;29align-items: center;30box-sizing: border-box;31}3233.monaco-pane-view .pane > .pane-header.not-collapsible {34cursor: default;35}3637.monaco-pane-view .pane > .pane-header > .title {38text-transform: uppercase;39}4041.monaco-pane-view .pane.horizontal:not(.expanded) > .pane-header {42flex-direction: column;43height: 100%;44width: 22px;45}4647.monaco-pane-view .pane > .pane-header > .codicon:first-of-type {48margin: 0 2px;49}5051.monaco-pane-view .pane.horizontal:not(.expanded) > .pane-header > .codicon:first-of-type {52margin: 2px;53}5455/* TODO: actions should be part of the pane, but they aren't yet */56.monaco-pane-view .pane > .pane-header > .actions {57display: none;58margin-left: auto;59margin-right: 8px;60}6162.monaco-pane-view .pane > .pane-header > .actions .action-item {63margin-right: 4px;64}6566.monaco-pane-view .pane > .pane-header > .actions .action-label {67padding: 2px;68}6970/* TODO: actions should be part of the pane, but they aren't yet */71.monaco-pane-view .pane:hover > .pane-header.expanded > .actions,72.monaco-pane-view .pane:focus-within > .pane-header.expanded > .actions,73.monaco-pane-view .pane > .pane-header.actions-always-visible.expanded > .actions,74.monaco-pane-view .pane > .pane-header.focused.expanded > .actions {75display: initial;76}7778.monaco-pane-view .pane > .pane-header .monaco-action-bar .action-item.select-container {79cursor: default;80}8182.monaco-pane-view .pane > .pane-header .action-item .monaco-select-box {83cursor: pointer;84min-width: 110px;85min-height: 18px;86padding: 2px 23px 2px 8px;87}8889.linux .monaco-pane-view .pane > .pane-header .action-item .monaco-select-box,90.windows .monaco-pane-view .pane > .pane-header .action-item .monaco-select-box {91padding: 0px 23px 0px 8px;92}9394/* Bold font style does not go well with CJK fonts */95.monaco-pane-view:lang(zh-Hans) .pane > .pane-header,96.monaco-pane-view:lang(zh-Hant) .pane > .pane-header,97.monaco-pane-view:lang(ja) .pane > .pane-header,98.monaco-pane-view:lang(ko) .pane > .pane-header {99font-weight: normal;100}101102.monaco-pane-view .pane > .pane-header.hidden {103display: none;104}105106.monaco-pane-view .pane > .pane-body {107overflow: hidden;108flex: 1;109}110111/* Animation */112113.monaco-pane-view.animated .split-view-view {114transition-duration: 0.15s;115transition-timing-function: ease-out;116}117118.reduce-motion .monaco-pane-view .split-view-view {119transition-duration: 0s !important;120}121122.monaco-pane-view.animated.vertical .split-view-view {123transition-property: height;124}125126.monaco-pane-view.animated.horizontal .split-view-view {127transition-property: width;128}129130#monaco-pane-drop-overlay {131position: absolute;132z-index: 10000;133width: 100%;134height: 100%;135left: 0;136box-sizing: border-box;137}138139#monaco-pane-drop-overlay > .pane-overlay-indicator {140position: absolute;141width: 100%;142height: 100%;143min-height: 22px;144min-width: 19px;145146pointer-events: none; /* very important to not take events away from the parent */147transition: opacity 150ms ease-out;148}149150#monaco-pane-drop-overlay > .pane-overlay-indicator.overlay-move-transition {151transition: top 70ms ease-out, left 70ms ease-out, width 70ms ease-out, height 70ms ease-out, opacity 150ms ease-out;152}153154155