mirror of
https://github.com/grafana/grafana.git
synced 2025-01-15 19:22:34 -06:00
3adee1eda0
Pseudo-elements must start with double colons pseudo-element
24 lines
377 B
SCSS
24 lines
377 B
SCSS
.grafana-info-box::before {
|
|
content: "\f05a";
|
|
font-family:'FontAwesome';
|
|
position: absolute;
|
|
top: -13px;
|
|
left: -8px;
|
|
font-size: 20px;
|
|
color: $blue;
|
|
}
|
|
|
|
.grafana-info-box {
|
|
position: relative;
|
|
padding: 5px 20px;
|
|
background-color: $tight-form-bg;
|
|
border: 1px solid $tight-form-border;
|
|
h5 {
|
|
margin-top: 5px;
|
|
}
|
|
ul {
|
|
padding-left: $spacer;
|
|
}
|
|
}
|
|
|