mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
75 lines
1.2 KiB
SCSS
75 lines
1.2 KiB
SCSS
.pack-details-side-panel {
|
|
padding: 20px;
|
|
|
|
&__description {
|
|
color: $text-medium;
|
|
font-size: 14px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
&__section-label {
|
|
border-bottom: 1px solid $accent-light;
|
|
color: $text-dark;
|
|
font-size: 16px;
|
|
font-weight: $bold;
|
|
letter-spacing: -0.5px;
|
|
margin-bottom: 0;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
&__edit-pack-link {
|
|
display: block;
|
|
}
|
|
|
|
&__more-queries-section {
|
|
@include display(flex);
|
|
@include justify-content(space-between);
|
|
|
|
color: $link;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
|
|
button {
|
|
color: $link;
|
|
font-size: 16px;
|
|
font-weight: $normal;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
&__pack-icon {
|
|
color: $text-light;
|
|
margin-right: 11px;
|
|
}
|
|
|
|
&__pack-name {
|
|
@include ellipsis(250px);
|
|
color: $text-dark;
|
|
font-size: 18px;
|
|
font-weight: $bold;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
&__query-icon {
|
|
color: $text-light;
|
|
font-size: 16px;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
&__queries-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
&__query-name {
|
|
@include ellipsis(240px);
|
|
font-size: 14px;
|
|
vertical-align: middle;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|