7f7f764c5a
* Sets up a CSS grid for Evaluations sidebar * Flex seems more sensible for this actually * Tighten up the header margin * Percy found a diff; the expand button wasnt showing for view logs sidebar
176 lines
3 KiB
SCSS
176 lines
3 KiB
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
$topNavOffset: 112px;
|
|
$subNavOffset: 49px;
|
|
|
|
.sidebar {
|
|
position: fixed;
|
|
background: #ffffff;
|
|
width: 750px;
|
|
padding: 24px;
|
|
right: 0%;
|
|
overflow: visible;
|
|
bottom: 0;
|
|
top: $topNavOffset;
|
|
transform: translateX(100%);
|
|
transition-duration: 150ms;
|
|
transition-timing-function: ease;
|
|
z-index: $z-modal;
|
|
&.open {
|
|
transform: translateX(0%);
|
|
box-shadow: 6px 6px rgba(0, 0, 0, 0.06), 0px 12px 16px rgba(0, 0, 0, 0.2);
|
|
}
|
|
&.has-subnav {
|
|
top: calc($topNavOffset + $subNavOffset);
|
|
}
|
|
|
|
&.wide {
|
|
width: calc(100vw - $gutter-width - 1rem);
|
|
}
|
|
|
|
.button.widener {
|
|
position: absolute;
|
|
left: 0;
|
|
top: calc(50% - 16px);
|
|
width: 32px;
|
|
height: 32px;
|
|
left: -16px;
|
|
box-shadow: -5px 0 10px -5px rgb(0 0 0 / 20%);
|
|
border-radius: 16px;
|
|
}
|
|
|
|
&.evaluations-sidebar {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
flex-direction: column;
|
|
|
|
& > .evaluation-response {
|
|
display: grid;
|
|
min-height: 200px;
|
|
grid-template-rows: auto 1fr;
|
|
overflow: hidden;
|
|
& > .boxed-section-body {
|
|
overflow: auto;
|
|
}
|
|
}
|
|
& > div,
|
|
h1.title {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.sidebar-content {
|
|
position: relative;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.error-header {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.detail-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.related-evaluations {
|
|
overflow-x: scroll;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
.evaluation-actors {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
flex-basis: 100%;
|
|
}
|
|
|
|
.actor {
|
|
margin: 24px;
|
|
outline: 1px solid #d9dee6;
|
|
padding: 10px;
|
|
width: 100px;
|
|
}
|
|
|
|
.task-context-sidebar {
|
|
display: grid;
|
|
gap: 1rem;
|
|
grid-template-rows: auto 1fr;
|
|
|
|
&.has-events {
|
|
grid-template-rows: auto minmax(auto, 25%) 1fr;
|
|
}
|
|
header {
|
|
display: grid;
|
|
justify-content: left;
|
|
grid-template-columns: 1fr auto auto;
|
|
gap: 2rem;
|
|
border-bottom: 1px solid $grey-blue;
|
|
padding-bottom: 1rem;
|
|
margin-bottom: 24px;
|
|
height: 50px;
|
|
|
|
.title {
|
|
margin-bottom: unset;
|
|
}
|
|
|
|
.link {
|
|
align-self: center;
|
|
}
|
|
|
|
.state {
|
|
font-size: 1rem;
|
|
font-weight: normal;
|
|
margin-left: 1rem;
|
|
text-transform: capitalize;
|
|
|
|
&:before {
|
|
content: '';
|
|
display: inline-block;
|
|
height: 1rem;
|
|
width: 1rem;
|
|
margin-right: 5px;
|
|
border-radius: 4px;
|
|
position: relative;
|
|
top: 2px;
|
|
}
|
|
|
|
&.running:before {
|
|
background-color: $green;
|
|
}
|
|
&.dead:before {
|
|
background-color: $red;
|
|
}
|
|
&.pending:before {
|
|
background-color: $grey-lighter;
|
|
}
|
|
}
|
|
}
|
|
|
|
& > .task-events,
|
|
& > .task-log {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.task-events,
|
|
.task-log {
|
|
display: grid;
|
|
grid-template-rows: auto 1fr;
|
|
.boxed-section-body {
|
|
overflow: auto;
|
|
}
|
|
.notification {
|
|
grid-row: -1;
|
|
}
|
|
}
|
|
|
|
.cli-window {
|
|
height: 100%;
|
|
}
|
|
}
|