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
e80241b5
Commit
e80241b5
authored
Nov 03, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ux(dashboard): minor tweaks
parent
f1137e4d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
7 deletions
+12
-7
public/app/core/services/keybindingSrv.ts
+5
-1
public/app/features/dashboard/row/add_panel.ts
+0
-2
public/app/features/dashboard/row/row.html
+0
-3
public/sass/components/_row.scss
+7
-1
No files found.
public/app/core/services/keybindingSrv.ts
View file @
e80241b5
...
...
@@ -9,6 +9,7 @@ import Mousetrap from 'mousetrap';
export
class
KeybindingSrv
{
helpModal
:
boolean
;
bindings
:
any
;
/** @ngInject */
constructor
(
private
$rootScope
,
private
$modal
,
private
$location
,
private
contextSrv
)
{
...
...
@@ -29,7 +30,7 @@ export class KeybindingSrv {
this
.
bind
(
"g a"
,
this
.
openAlerting
);
this
.
bind
(
"g p"
,
this
.
goToProfile
);
this
.
bind
(
"s s"
,
this
.
openSearchStarred
);
this
.
bind
(
[
'f'
]
,
this
.
openSearch
);
this
.
bind
(
'f'
,
this
.
openSearch
);
}
openSearchStarred
()
{
...
...
@@ -102,6 +103,7 @@ export class KeybindingSrv {
scope
.
appEvent
(
'quick-snapshot'
);
});
// edit panel
this
.
bind
(
'e'
,
()
=>
{
if
(
dashboard
.
meta
.
focusPanelId
&&
dashboard
.
meta
.
canEdit
)
{
this
.
$rootScope
.
appEvent
(
'panel-change-view'
,
{
...
...
@@ -113,6 +115,7 @@ export class KeybindingSrv {
}
});
// view panel
this
.
bind
(
'v'
,
()
=>
{
if
(
dashboard
.
meta
.
focusPanelId
)
{
this
.
$rootScope
.
appEvent
(
'panel-change-view'
,
{
...
...
@@ -124,6 +127,7 @@ export class KeybindingSrv {
}
});
// delete panel
this
.
bind
(
'd'
,
()
=>
{
if
(
dashboard
.
meta
.
focusPanelId
&&
dashboard
.
meta
.
canEdit
)
{
var
panelInfo
=
dashboard
.
getPanelInfoById
(
dashboard
.
meta
.
focusPanelId
);
...
...
public/app/features/dashboard/row/add_panel.ts
View file @
e80241b5
...
...
@@ -4,8 +4,6 @@ import _ from 'lodash';
import
config
from
'app/core/config'
;
import
{
coreModule
,
appEvents
}
from
'app/core/core'
;
// import VirtualScroll from 'virtual-scroll';
// console.log(VirtualScroll);
export
class
AddPanelCtrl
{
row
:
any
;
...
...
public/app/features/dashboard/row/row.html
View file @
e80241b5
...
...
@@ -8,9 +8,6 @@
<span
ng-class=
"ctrl.row.titleSize"
>
{{ctrl.row.title | interpolateTemplateVars:this}}
</span>
</a>
<div
class=
"dash-row-header-spacer"
>
</div>
<div
class=
"dash-row-header-actions"
>
<a
class=
"pointer dash-row-header-action-add-panel"
ng-click=
"ctrl.showAddPanel()"
ng-class=
"{active: ctrl.dropView===1}"
>
Add Panel
...
...
public/sass/components/_row.scss
View file @
e80241b5
...
...
@@ -171,7 +171,13 @@ a.dash-row-header-actions--tight {
.add-panel-panels-scroll
{
width
:
100%
;
overflow
:
hidden
;
overflow
:
auto
;
&
:
:-
webkit-scrollbar
{
display
:
none
}
-ms-overflow-style
:
none
;
}
.add-panel-panels
{
...
...
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