fleet/frontend/pages/software/ManageSoftwarePage/components/ManageAutomationsModal/_styles.scss
Martavis Parker 0fef79926f
Host expiry setting to validate on change (#4604)
* cleaned up old conflicting tooltip styles

* fixed hsot expiry validation; validate on change
2022-03-15 23:38:19 -07:00

58 lines
948 B
SCSS

.manage-automations-modal {
width: 778px;
&__button-wrap {
display: flex;
justify-content: flex-end;
margin: $pad-large 0 0;
}
.button--inverse {
padding: $pad-small;
margin-right: $pad-small;
}
pre,
code {
background-color: $ui-off-white;
color: $core-fleet-blue;
border: 1px solid $ui-fleet-blue-15;
border-radius: 4px;
padding: 7px $pad-medium;
margin: $pad-large 0 0 44px;
}
&__error {
color: $ui-error;
}
&__overlay-container {
display: grid;
}
&__software-automation-enabled,
&__overlay {
grid-area: 1 / 1;
}
&__overlay {
background-color: $core-white;
z-index: 0;
opacity: 75%;
}
&__software-automation-description {
p {
margin: $pad-large 0;
}
}
// so tooltips won't be triggered with whitespace
.form-field__label {
display: inline-block;
}
.form-field__label--error {
color: $ui-error;
}
}