mirror of
https://github.com/grafana/grafana.git
synced 2025-02-09 23:16:16 -06:00
23 lines
335 B
SCSS
23 lines
335 B
SCSS
|
.dashlist-item {
|
||
|
|
||
|
}
|
||
|
|
||
|
.dashlist-link {
|
||
|
display: block;
|
||
|
margin: 5px;
|
||
|
padding: 7px;
|
||
|
background-color: $grafanaTargetBackground;
|
||
|
border: 1px solid $grafanaTargetBorder;
|
||
|
.fa {
|
||
|
float: right;
|
||
|
padding-top: 3px;
|
||
|
}
|
||
|
.fa-star {
|
||
|
color: $orange;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
background-color: $grafanaTargetFuncBackground;
|
||
|
}
|
||
|
}
|