2017-08-31 14:05:52 +02:00
|
|
|
// .grafana-info-box::before {
|
|
|
|
|
// content: "\f05a";
|
|
|
|
|
// font-family:'FontAwesome';
|
|
|
|
|
// position: absolute;
|
|
|
|
|
// top: -13px;
|
|
|
|
|
// left: -8px;
|
|
|
|
|
// font-size: 20px;
|
|
|
|
|
// color: $text-color;
|
|
|
|
|
// }
|
2016-02-15 15:27:41 +01:00
|
|
|
|
|
|
|
|
.grafana-info-box {
|
|
|
|
|
position: relative;
|
2017-07-31 14:39:33 +02:00
|
|
|
background: $info-box-background;
|
2017-05-05 09:16:28 +02:00
|
|
|
box-shadow: $card-shadow;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
border-radius: 4px;
|
2017-07-31 14:39:33 +02:00
|
|
|
margin-bottom: $spacer;
|
2017-08-31 14:05:52 +02:00
|
|
|
margin-right: $gf-form-margin;
|
2017-08-31 16:38:49 +02:00
|
|
|
flex-grow: 1;
|
2017-05-05 09:16:28 +02:00
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
h5 {
|
2017-05-05 11:30:44 +02:00
|
|
|
margin-bottom: $spacer;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
2016-03-01 12:26:31 +01:00
|
|
|
ul {
|
2017-08-31 16:38:49 +02:00
|
|
|
padding-left: $spacer * 1.5;
|
2016-03-01 12:26:31 +01:00
|
|
|
}
|
2017-07-31 14:39:33 +02:00
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
@extend .external-link;
|
|
|
|
|
}
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
2017-08-31 14:05:52 +02:00
|
|
|
.grafana-info-box__close {
|
|
|
|
|
text-align: center;
|
|
|
|
|
display: block;
|
|
|
|
|
color: $link-color !important;
|
|
|
|
|
height: 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -9px;
|
|
|
|
|
}
|