mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
32 lines
447 B
SCSS
32 lines
447 B
SCSS
|
|
.get-more-plugins-link {
|
|
color: $gray-3;
|
|
font-size: $font-size-sm;
|
|
position: relative;
|
|
top: 1.2rem;
|
|
&:hover {
|
|
color: $link-hover-color;
|
|
}
|
|
img {
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
.get-more-plugins-link {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.plugin-info-list-item {
|
|
img {
|
|
width: 16px;
|
|
}
|
|
|
|
white-space: nowrap;
|
|
max-width: $page-sidebar-width;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|