/********************************************************************************
 * Copyright (C) 2018 TypeFox and others.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the Eclipse
 * Public License v. 2.0 are satisfied: GNU General Public License, version 2
 * with the GNU Classpath Exception which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
 ********************************************************************************/

:root {
  --theia-view-container-title-height: var(--theia-content-line-height);
  --theia-view-container-content-height: calc(
    100% - var(--theia-view-container-title-height)
  );
}

.theia-view-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.theia-view-container > .lm-SplitPanel {
  height: 100%;
  width: 100%;
}

.theia-view-container > .lm-SplitPanel > .lm-SplitPanel-child {
  min-width: 50px;
  min-height: var(--theia-content-line-height);
}

.theia-view-container > .lm-SplitPanel > .lm-SplitPanel-handle::after {
  min-height: 2px;
  min-width: 2px;
}

.lm-SplitPanel > .lm-SplitPanel-handle:hover::after {
  background-color: var(--theia-sash-hoverBorder);
  transition-delay: var(--theia-sash-hoverDelay);
}

.lm-SplitPanel > .lm-SplitPanel-handle:active::after {
  background-color: var(--theia-sash-activeBorder);
  transition-delay: 0s !important;
}

.lm-SplitPanel[data-orientation="horizontal"] > .lm-SplitPanel-handle::after {
  min-width: var(--theia-sash-width);
}

.lm-SplitPanel[data-orientation="vertical"] > .lm-SplitPanel-handle::after {
  min-height: var(--theia-sash-width);
}

.theia-view-container .part {
  height: 100%;
}

.theia-view-container-part-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  background: var(--theia-sideBarSectionHeader-background);
  line-height: var(--theia-view-container-title-height);
  z-index: 10;
  color: var(--theia-sideBarSectionHeader-foreground);
  font-weight: 700;
  overflow: hidden;
}

.lm-Widget > .theia-view-container-part-header {
  box-shadow: 0 1px 0 var(--theia-sideBarSectionHeader-border) inset;
}

.lm-Widget.lm-first-visible > .theia-view-container-part-header {
  box-shadow: none;
}

.theia-view-container-part-header .theia-ExpansionToggle {
  padding-left: 4px;
}

.theia-view-container
  > .lm-SplitPanel[data-orientation="horizontal"]
  .part
  > .theia-header
  .theia-ExpansionToggle::before {
  display: none;
  padding-left: 0px;
}

.theia-view-container
  > .lm-SplitPanel[data-orientation="horizontal"]
  .part
  > .theia-header
  .theia-ExpansionToggle {
  padding-left: 0px;
}

.theia-view-container-part-header .label {
  flex: 0;
  flex-basis: fit-content;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theia-view-container-part-header .description {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: var(--theia-ui-padding);
  text-transform: none;
  opacity: 0.6;
}

.theia-view-container-part-header .notification-count-container {
  margin-right: 12px;
}

.theia-view-container .part > .body {
  height: var(--theia-view-container-content-height);
  min-width: 50px;
  min-height: 50px;
  position: relative;
}

.theia-view-container .part > .body .theia-tree-source-node-placeholder {
  padding-top: 4px;
  height: 100%;
}

.theia-view-container .part:hover > .body {
  display: block;
}

.theia-view-container .part.drop-target {
  background: var(--theia-list-dropBackground);
  border: var(--theia-border-width) dashed var(--theia-contrastActiveBorder);
  transition-property: top, left, right, bottom;
  transition-duration: 150ms;
  transition-timing-function: ease;
}

.theia-view-container-drag-image {
  background: var(--theia-sideBarSectionHeader-background);
  color: var(--theia-sideBarSectionHeader-foreground);
  line-height: var(--theia-content-line-height);
  position: absolute;
  z-index: 999;
  text-transform: uppercase;
  font-size: var(--theia-ui-font-size0);
  font-weight: 500;
  padding: 0 var(--theia-ui-padding) 0 var(--theia-ui-padding);
}

.lm-TabBar-toolbar.theia-view-container-part-title {
  overflow: visible !important;
  padding: 0px;
  padding-right: calc(var(--theia-ui-padding) * 2 / 3);
}

.theia-view-container-part-title {
  display: none;
}

.theia-view-container-part-title.menu-open,
.lm-Widget.part:not(.collapsed):hover
  .theia-view-container-part-header
  .theia-view-container-part-title,
.lm-Widget.part:not(.collapsed):focus-within
  .theia-view-container-part-header
  .theia-view-container-part-title {
  display: flex;
}

.no-pointer-events {
  pointer-events: none;
}
