| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- .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;
- }
- }
|