mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
86 lines
1.3 KiB
SCSS
86 lines
1.3 KiB
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;
|
|
}
|
|
|
|
.plugin-markdown-readme {
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
ul {
|
|
padding-left: $spacer*1.5;
|
|
margin-bottom: $spacer*2;
|
|
}
|
|
|
|
table {
|
|
td, th {
|
|
padding: $spacer*.5 $spacer;
|
|
}
|
|
th {
|
|
font-weight: normal;
|
|
background: $table-bg-accent;
|
|
}
|
|
}
|
|
|
|
table, th, td {
|
|
border: 1px solid $table-border;
|
|
border-collapse: collapse;
|
|
}
|
|
}
|
|
|
|
.get-more-plugins-link {
|
|
color: $text-muted;
|
|
font-size: $font-size-sm;
|
|
padding-right: 7rem;
|
|
background: url(../img/grafana_net_logo.svg);
|
|
background-size: 6.5rem 3rem;
|
|
background-repeat: no-repeat;
|
|
background-position: right;
|
|
position: relative;
|
|
top: 1.2rem;
|
|
&:hover {
|
|
color: $link-hover-color;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
.get-more-plugins-link {
|
|
display: none;
|
|
}
|
|
}
|