mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 19:00:54 -06:00
58 lines
820 B
SCSS
58 lines
820 B
SCSS
.plugin-header {
|
|
@include clearfix();
|
|
|
|
padding: $spacer 0 $spacer/2 0;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.plugin-header-logo {
|
|
float: left;
|
|
width: 7rem;
|
|
img {
|
|
width: 7rem;
|
|
}
|
|
margin-right: $spacer;
|
|
}
|
|
|
|
.plugin-header-info-block {
|
|
float: left;
|
|
}
|
|
|
|
.plugin-header-author {
|
|
}
|
|
|
|
.plugin-header-stamps-type {
|
|
color: $link-color-disabled;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.plugin-info-list-item {
|
|
img {
|
|
width: 16px;
|
|
}
|
|
|
|
white-space: nowrap;
|
|
max-width: $page-sidebar-width;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|