mirror of
https://github.com/grafana/grafana.git
synced 2025-01-06 22:23:19 -06:00
d2ff73d455
* Update dependency stylelint-config-sass-guidelines to v10 * fixes * fix typo --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
49 lines
869 B
SCSS
49 lines
869 B
SCSS
@use 'sass:map';
|
|
.grafana-info-box {
|
|
position: relative;
|
|
padding: $space-lg;
|
|
background-color: $empty-list-cta-bg;
|
|
border-left: 3px solid $info-box-border-color;
|
|
margin-bottom: $space-md;
|
|
margin-right: $space-xs;
|
|
box-shadow: $card-shadow;
|
|
flex-grow: 1;
|
|
|
|
h5 {
|
|
margin-bottom: $spacer;
|
|
}
|
|
ul {
|
|
padding-left: $spacer * 1.5;
|
|
}
|
|
|
|
code {
|
|
@include font-family-monospace();
|
|
font-size: $font-size-base - 2;
|
|
background-color: $code-tag-bg;
|
|
color: $text-color;
|
|
border: 1px solid $code-tag-border;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
a {
|
|
@extend .external-link;
|
|
}
|
|
|
|
&--max-lg {
|
|
max-width: map.get($grid-breakpoints, 'lg');
|
|
}
|
|
}
|
|
|
|
.grafana-info-box__close {
|
|
text-align: center;
|
|
display: block;
|
|
color: $link-color !important;
|
|
height: 0;
|
|
position: relative;
|
|
top: -9px;
|
|
}
|