open-nomad/ui/app/styles/components/variables.scss
2023-04-10 15:36:59 +00:00

219 lines
3.3 KiB
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.section.single-variable {
margin-top: 1.5rem;
.back-link {
text-decoration: none;
color: #363636;
position: relative;
top: 4px;
}
}
.variable-title {
.toggle {
font-size: 0.8rem;
margin-left: 1rem;
position: relative;
top: -0.25rem;
.toggler {
margin-right: 0.25rem;
}
}
}
.new-variables {
& > div {
margin-bottom: 1rem;
}
.path-input {
height: 2.25em;
&:disabled {
background-color: #f5f5f5;
}
&.error {
color: $red;
border-color: $red;
}
}
.duplicate-path-error {
position: relative;
animation: slide-in 0.3s ease-out;
}
.path-namespace {
display: grid;
grid-template-columns: 6fr 1fr;
gap: 0 1rem;
}
.key-value {
display: grid;
grid-template-columns: 1fr 4fr 130px;
gap: 0 1rem;
align-items: end;
input.error {
color: $red;
border-color: $red;
}
.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;
}
.key-value-error {
grid-column: -1 / 1;
position: relative;
animation: slide-in 0.3s ease-out;
margin: 0;
}
}
.editor-wrapper {
&.error {
.CodeMirror {
box-shadow: 0 0 0 3px $red;
}
.help {
padding: 1rem 0;
font-size: 1rem;
}
}
}
.notification.conflict {
color: $text;
p {
margin-bottom: 1rem;
}
pre {
background: black;
color: $white;
max-height: 500px;
overflow: auto;
code {
height: 100%;
}
}
.options {
margin: 1rem 0;
}
}
footer {
display: grid;
grid-auto-columns: max-content;
grid-auto-flow: column;
gap: 1rem;
.button.is-info.is-inverted.add-more[disabled] {
border-color: #dbdbdb;
box-shadow: 0 2px 0 0 rgb(122 122 122 / 20%);
}
}
}
table.path-tree {
tr {
cursor: pointer;
&.inaccessible {
cursor: not-allowed;
}
svg {
margin-bottom: -2px;
margin-right: 10px;
}
}
}
.section .notification.related-entities {
--blue: #1563ff;
display: flex;
align-items: center;
gap: 0.5rem;
&.notification {
align-items: center;
}
a {
color: $blue;
display: inline-flex;
align-items: center;
gap: 0.25rem;
}
}
.related-entities-hint {
margin: 0.5rem 0;
code {
background-color: lighten($grey-lighter, 8%);
border: 1px solid $grey-lighter;
padding: 0 0.25rem;
border-radius: 4px;
}
}
.job-template-hint {
margin-top: 0.5rem;
code {
background-color: #eee;
padding: 0.25rem;
}
.copy-button {
display: inline-block;
padding-left: 0;
position: relative;
top: -5px;
button,
.button {
background-color: transparent;
padding-right: 0.25rem;
}
}
}
table.variable-items {
// table-layout: fixed;
td.value-cell {
width: 80%;
& > div {
display: grid;
grid-template-columns: auto auto 1fr;
gap: 0.5rem;
}
}
}
@keyframes slide-in {
0% {
top: 10px;
opacity: 0;
}
100% {
top: 0px;
opacity: 1;
}
}