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
825cac38
Commit
825cac38
authored
Oct 13, 2017
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ux: minor fixes
parent
0c31d230
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
35 deletions
+45
-35
public/app/features/dashboard/dashgrid/DashboardPanel.tsx
+2
-0
public/app/features/dashboard/dashgrid/DashboardRow.tsx
+42
-0
public/app/features/dashboard/dashnav/dashnav.ts
+1
-1
public/sass/components/_navbar.scss
+0
-34
No files found.
public/app/features/dashboard/dashgrid/DashboardPanel.tsx
View file @
825cac38
...
...
@@ -31,6 +31,8 @@ export class DashboardPanel extends React.Component<DashboardPanelProps, any> {
}
}
render
()
{
return
(
<
div
ref=
{
element
=>
this
.
element
=
element
}
/>
...
...
public/app/features/dashboard/dashgrid/DashboardRow.tsx
0 → 100644
View file @
825cac38
import
React
from
'react'
;
import
{
PanelModel
}
from
'../panel_model'
;
export
interface
DashboardRowProps
{
panel
:
PanelModel
;
}
export
class
DashboardPanel
extends
React
.
Component
<
DashboardRowProps
,
any
>
{
constructor
(
props
)
{
super
(
props
);
this
.
toggle
=
this
.
toggle
.
bind
(
this
);
this
.
openSettings
=
this
.
openSettings
.
bind
(
this
);
}
toggle
()
{}
openSettings
()
{}
render
()
{
return
(
<
div
>
<
div
className=
"dashboard-row__center"
>
<
div
className=
"dashboard-row__actions-left"
>
<
i
className=
"fa fa-chevron-down"
/>
<
i
className=
"fa fa-chevron-right"
/>
</
div
>
<
a
className=
"dashboard-row__title pointer"
onClick=
{
this
.
toggle
}
>
<
span
className=
"dashboard-row__title-text"
>
{
this
.
props
.
panel
.
title
}
</
span
>
</
a
>
<
div
className=
"dashboard-row__actions-right"
>
<
a
className=
"pointer"
onClick=
{
this
.
openSettings
}
>
<
i
className=
"fa fa-cog"
/>
</
a
>
</
div
>
</
div
>
<
div
className=
"dashboard-row__panel_count"
>
(0 hidden panels)
</
div
>
<
div
className=
"dashboard-row__drag grid-drag-handle"
/>
</
div
>
);
}
}
public/app/features/dashboard/dashnav/dashnav.ts
View file @
825cac38
...
...
@@ -148,7 +148,7 @@ export class DashNavCtrl {
addPanel
()
{
this
.
dashboard
.
addPanel
({
type
:
'graph'
,
gridPos
:
{
x
:
0
,
y
:
0
,
w
:
12
,
h
:
7
},
gridPos
:
{
x
:
0
,
y
:
0
,
w
:
12
,
h
:
9
},
title
:
'New Graph'
,
});
}
...
...
public/sass/components/_navbar.scss
View file @
825cac38
...
...
@@ -71,40 +71,6 @@
color
:
darken
(
$link-color
,
5%
);
font-size
:
$font-size-lg
;
padding
:
1rem
1rem
0
.75rem
1rem
;
min-height
:
:
$navbarHeight
;
.fa-caret-down
{
font-size
:
60%
;
padding-left
:
0
.2rem
;
}
.icon-gf
{
position
:
relative
;
top
:
2px
;
font-size
:
20px
;
line-height
:
8px
;
margin-right
:
0
.5rem
;
}
>
img
{
max-width
:
27px
;
max-height
:
27px
;
}
&
--search
{
padding
:
1rem
1
.5rem
0
.75rem
1
.5rem
;
}
}
.navbar-page-btn
{
text-overflow
:
ellipsis
;
overflow
:
hidden
;
white-space
:
nowrap
;
display
:
block
;
margin
:
0
;
color
:
darken
(
$link-color
,
5%
);
font-size
:
$font-size-lg
;
padding
:
1rem
1rem
0
.75rem
1rem
;
min-height
:
$navbarHeight
;
.fa-caret-down
{
...
...
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