mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 16:08:47 +00:00
35 lines
825 B
SCSS
35 lines
825 B
SCSS
.scripts {
|
|
@include vertical-page-tab-panel-layout;
|
|
margin-top: $gap-page-component; // Required as these Tabs don't use TabPanel
|
|
|
|
&__description {
|
|
margin: 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-off-white;
|
|
cursor: pointer;
|
|
.list-item__actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: $pad-medium;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|