clearml-web/src/app/webapp-common/experiments/dumb/experiment-execution-parameters/experiment-execution-parameters.component.scss
shyallegro 07d90efe15
Release v1.3 (#19)
Co-authored-by: shyallegro <support@allegro.ai>
2022-03-15 15:46:26 +02:00

78 lines
1.2 KiB
SCSS

@import "../../../shared/ui-components/styles/variables";
:host {
form.editable, .table-container {
height: 100%;
padding-bottom: 6px;
}
form.editable {
padding-bottom: 6px;
}
.form-container {
height: 100%;
overflow: auto;
input.highlight-text {
background: $neon-yellow-betterinchrome;
&.current-match {
background: #f5d655;
}
}
}
mat-form-field {
width: 42%;
padding-right: 12px;
}
::ng-deep tr:hover {
cursor: auto !important;
transition: background-color 0.3s;
}
.separator {
width: 100%;
//border-bottom: solid 1px #dee1e9;
}
.remove-step {
margin: .25em 0;
padding-bottom: 1.34375em;
padding-top: 7px;
display: flex;
align-items: center;
}
.param-row {
font-weight: 500;
& > div {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.highlight-text {
color: $blue-600;
}
.name {
font-weight: 500;
}
.allow-multi-space {
white-space: pre;
}
.add-parameter {
border: 1px solid $grey-purple;
background-color: #ffffff;
color: $grey-purple;
transition: all ease-in-out 0.15s, border ease-in-out 0.15s;
}
}