mirror of
https://github.com/grafana/grafana.git
synced 2025-01-18 04:23:33 -06:00
6937f3549b
* Remove icon types duplicates, update getAllIcons * Update Explore-related icons, positioning * Update Getting started icons * Update navmodel * Style adjustments, css changes * Update tests * Updatee icon name in test file
34 lines
497 B
SCSS
34 lines
497 B
SCSS
.get-more-plugins-link {
|
|
color: $gray-3;
|
|
font-size: $font-size-sm;
|
|
position: relative;
|
|
top: $space-md;
|
|
|
|
&:hover {
|
|
color: $link-hover-color;
|
|
}
|
|
|
|
img {
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
.get-more-plugins-link {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.plugin-info-list-item {
|
|
white-space: nowrap;
|
|
max-width: $page-sidebar-width;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
|
|
img {
|
|
width: 16px;
|
|
margin-right: 4px;
|
|
margin-bottom: 1px;
|
|
}
|
|
}
|