Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
81af8f07
Commit
81af8f07
authored
Jul 11, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(links): updated links to grafana.net
parent
65683ab2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
67 additions
and
59 deletions
+67
-59
public/app/core/components/search/search.html
+2
-2
public/app/features/plugins/partials/plugin_list.html
+35
-31
public/img/grafana_net_logo.svg
+0
-0
public/sass/components/_search.scss
+16
-1
public/sass/pages/_plugins.scss
+14
-25
No files found.
public/app/core/components/search/search.html
View file @
81af8f07
...
...
@@ -72,8 +72,8 @@
Import
</a>
<a
class=
"pull-right s
mall muted
"
target=
"_blank"
href=
"https://grafana.net/dashboards?utm_source=grafana_search"
>
Explore ready made dashboards on Grafana.net
<a
class=
"pull-right s
earch-button-row-explore-link
"
target=
"_blank"
href=
"https://grafana.net/dashboards?utm_source=grafana_search"
>
Find dashboards on
</a>
<div
class=
"clearfix"
></div>
...
...
public/app/features/plugins/partials/plugin_list.html
View file @
81af8f07
...
...
@@ -5,9 +5,9 @@
<div
class=
"page-header"
>
<h1>
Plugins
</h1>
<
a
class=
"btn btn-inverse"
href=
"https://grafana.net/plugins?utm_source=grafana_plugin_list"
target=
"_blank"
>
Explore plugins on Grafana.net
<
/a
>
<
!-- <a class="btn btn-inverse" href="https://grafana.net/plugins?utm_source=grafana_plugin_list" target="_blank"> --
>
<!-- Explore plugins on Grafana.net -->
<
!-- </a> --
>
<div
class=
"page-header-tabs"
>
<ul
class=
"gf-tabs"
>
...
...
@@ -27,36 +27,40 @@
</a>
</li>
</ul>
</div>
</div>
<section
class=
"card-section"
layout-mode
>
<a
class=
"get-more-plugins-link"
href=
"https://grafana.net/plugins?utm_source=grafana_plugin_list"
target=
"_blank"
>
Find plugins on
</a>
</div>
</div>
<section
class=
"card-section"
layout-mode
>
<layout-selector></layout-selector>
<ol
class=
"card-list"
>
<li
class=
"card-item-wrapper"
ng-repeat=
"plugin in ctrl.plugins"
>
<a
class=
"card-item"
href=
"plugins/{{plugin.id}}/edit"
>
<div
class=
"card-item-header"
>
<div
class=
"card-item-type"
>
<i
class=
"icon-gf icon-gf-{{plugin.type}}"
></i>
{{plugin.type}}
</div>
<div
class=
"card-item-notice"
ng-show=
"plugin.hasUpdate"
>
<span
bs-tooltip=
"plugin.latestVersion"
>
Update available!
</span>
</div>
</div>
<div
class=
"card-item-body"
>
<figure
class=
"card-item-figure"
>
<img
ng-src=
"{{plugin.info.logos.small}}"
>
</figure>
<div
class=
"card-item-details"
>
<div
class=
"card-item-name"
>
{{plugin.name}}
</div>
<div
class=
"card-item-sub-name"
>
By {{plugin.info.author.name}}
</div>
</div>
</div>
</a>
</li>
</ol>
</section>
<ol
class=
"card-list"
>
<li
class=
"card-item-wrapper"
ng-repeat=
"plugin in ctrl.plugins"
>
<a
class=
"card-item"
href=
"plugins/{{plugin.id}}/edit"
>
<div
class=
"card-item-header"
>
<div
class=
"card-item-type"
>
<i
class=
"icon-gf icon-gf-{{plugin.type}}"
></i>
{{plugin.type}}
</div>
<div
class=
"card-item-notice"
ng-show=
"plugin.hasUpdate"
>
<span
bs-tooltip=
"plugin.latestVersion"
>
Update available!
</span>
</div>
</div>
<div
class=
"card-item-body"
>
<figure
class=
"card-item-figure"
>
<img
ng-src=
"{{plugin.info.logos.small}}"
>
</figure>
<div
class=
"card-item-details"
>
<div
class=
"card-item-name"
>
{{plugin.name}}
</div>
<div
class=
"card-item-sub-name"
>
By {{plugin.info.author.name}}
</div>
</div>
</div>
</a>
</li>
</ol>
</section>
</div>
public/img/grafana_net_logo.svg
0 → 100644
View file @
81af8f07
This diff is collapsed.
Click to expand it.
public/sass/components/_search.scss
View file @
81af8f07
...
...
@@ -101,9 +101,24 @@
.search-button-row
{
padding-top
:
20px
;
line-height
:
2
.5rem
;
button
,
a
{
margin-right
:
10px
;
}
.search-button-row-explore-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
:
0
.8rem
;
&
:hover
{
color
:
$link-hover-color
;
}
}
}
public/sass/pages/_plugins.scss
View file @
81af8f07
...
...
@@ -63,28 +63,17 @@
}
}
// .app-edit-logo-box {
// padding: 1.2rem;
// background: $panel-bg;
// text-align: center;
// img {
// max-width: 7rem;
// }
// margin-right: 2rem;
// }
//
// .app-edit-links {
// list-style: none;
// margin: 0 0 0 2rem;
//
// li {
// background: $panel-bg;
// margin-top: 4px;
// padding: 0.2rem 1rem;
// }
// }
//
// .app-edit-description {
// font-style: italic;
// margin-bottom: 1.5rem;
// }
.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
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment