mirror of
https://github.com/fleetdm/fleet
synced 2026-05-09 02:01:09 +00:00
34 lines
742 B
SCSS
34 lines
742 B
SCSS
.scripts {
|
|
font-size: $x-small;
|
|
|
|
&__description {
|
|
margin: $pad-xxlarge 0;
|
|
}
|
|
|
|
&__premium-feature-message {
|
|
margin-top: $pad-xxxlarge;
|
|
}
|
|
|
|
.list-item {
|
|
&__actions {
|
|
display: none;
|
|
}
|
|
}
|
|
.upload-list__list-item {
|
|
// move default padding to ScriptListItem to allow for onClick functionality covering entire ScriptListItem
|
|
padding: 0;
|
|
.script-list-item {
|
|
padding: 1rem 1.5rem;
|
|
&:hover {
|
|
// currently this behavior has only been specified for Script list items
|
|
background-color: $ui-fleet-blue-10;
|
|
cursor: pointer;
|
|
.list-item__actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: $pad-medium;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|