e58999d62b
* Disable path input when model is not new * isDisabled tests for secure variables path
48 lines
727 B
SCSS
48 lines
727 B
SCSS
.new-secure-variables {
|
|
& > div {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.path-input {
|
|
&:disabled {
|
|
background-color: #f5f5f5;
|
|
}
|
|
}
|
|
|
|
.key-value {
|
|
display: grid;
|
|
grid-template-columns: 1fr 4fr 130px;
|
|
gap: 1rem;
|
|
align-items: end;
|
|
|
|
.value-label {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
& > span {
|
|
grid-column: -1 / 1;
|
|
}
|
|
}
|
|
|
|
button.show-hide-values {
|
|
height: 100%;
|
|
box-shadow: none;
|
|
margin-left: -2px;
|
|
border-color: $grey-blue;
|
|
}
|
|
}
|
|
}
|
|
|
|
table.path-tree {
|
|
tr {
|
|
cursor: pointer;
|
|
a {
|
|
color: #0a0a0a;
|
|
text-decoration: none;
|
|
}
|
|
svg {
|
|
margin-bottom: -2px;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|