Skip to content
Snippets Groups Projects
analysis-panel.component.scss 1.22 KiB
Newer Older
@import "src/stylesheets/variables";
Julian Späth's avatar
Julian Späth committed
.analysis {
  position: absolute !important;
  height: 100% !important;
  width: 100% !important;
Julian Späth's avatar
Julian Späth committed
}
.tab-header-small {
  padding: 0 !important;
}

Michael Hartung's avatar
Michael Hartung committed
.network-view-settings {
  // remove margin from tab header when network is displayed, so that network
Michael Hartung's avatar
Michael Hartung committed
  // does not disappear in empty border
  padding-left: 0 !important;
  padding-right: 0 !important;
Michael Hartung's avatar
Michael Hartung committed
  .tabs {
    margin: 0;
  }
  .tab-content {
    width: 100%;
    height: calc(100% - #{$network-header-height} - #{$analysis-tab-header-height});
Michael Hartung's avatar
Michael Hartung committed
  }
}

.tabs-header {
  height: $analysis-tab-header-height;
}

.tab-content {
  visibility: hidden;
  position: absolute;
  &.is-visible {
    visibility: visible;
  }
  &.scrollable {
    overflow-y: auto;
Julian Matschinske's avatar
Julian Matschinske committed
    padding-right: 10px;
  }
Michael Hartung's avatar
Michael Hartung committed
  &.table-tab {
    // 100% - #{$network-header-height} - #{$analysis-tab-header-height} - normalization-button
    height: calc(100% - 40px - 1.5rem - 72px - 6px);
Michael Hartung's avatar
Michael Hartung committed
  }
Julian Matschinske's avatar
Julian Matschinske committed

  h4 {
    margin-top: 60px;
Julian Späth's avatar
Julian Späth committed

.checkbox-col {
  width: 50px;
}

.meta {
  table {
    width: 500px;
    td {
      width: 50px;
    }
  }

}
Julian Matschinske's avatar
Julian Matschinske committed

.tooltip-button {
  font-size: 10px;
  width: 10px;
}

.scroll-y{
  overflow-y: auto;
}
Michael Hartung's avatar
Michael Hartung committed
.legend {
  z-index: $analysis-network-legend-z !important;
}