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
7d09579e
Commit
7d09579e
authored
Apr 12, 2016
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(timepicker): adds arrows to move back and forth in current dashboard
closes #119
parent
e5c9a24c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
4 deletions
+15
-4
CHANGELOG.md
+1
-0
public/app/features/dashboard/timepicker/timepicker.html
+3
-3
public/sass/_old_responsive.scss
+9
-0
public/sass/pages/_dashboard.scss
+2
-1
No files found.
CHANGELOG.md
View file @
7d09579e
...
...
@@ -2,6 +2,7 @@
### Enhancements
*
**InfluxDB**
: Changed multi query encoding to work with InfluxDB 0.11 & 0.12, closes
[
#4533
](
https://github.com/grafana/grafana/issues/4533
)
*
**Timepicker**
: Add arrows and shortcuts for moving back and forth in current dashboard, closes
[
#119
](
https://github.com/grafana/grafana/issues/119
)
### Bug fixes
*
**Postgres**
: Fixed page render crash when using postgres, fixes
[
#4558
](
https://github.com/grafana/grafana/issues/4558
)
...
...
public/app/features/dashboard/timepicker/timepicker.html
View file @
7d09579e
<ul
class=
"nav gf-timepicker-nav"
>
<li
class=
"dashnav-
zoom-out
"
style=
"padding-top: 2px"
>
<li
class=
"dashnav-
move-timeframe
"
style=
"padding-top: 2px"
>
<a
class=
'small'
ng-click=
'ctrl.move(-1)'
>
<i
class=
"fa fa-arrow-left"
></i>
</a>
</li>
<li
class=
"dashnav-
zoom-out
"
style=
"padding-top: 2px"
>
<li
class=
"dashnav-
move-timeframe
"
style=
"padding-top: 2px"
>
<a
class=
'small'
ng-click=
'ctrl.move(1)'
>
<i
class=
"fa fa-arrow-right"
></i>
<i
class=
"fa fa-arrow-right"
></i>
</a>
</li>
<li
class=
"dashnav-zoom-out"
style=
"padding-top: 2px"
>
...
...
public/sass/_old_responsive.scss
View file @
7d09579e
...
...
@@ -24,6 +24,7 @@
max-width
:
120px
;
}
.dashnav-zoom-out
,
.dashnav-move-timeframe
,
.dashnav-action-icons
{
display
:
none
;
}
...
...
@@ -40,6 +41,11 @@
.gf-timepicker-nav-btn
{
max-width
:
120px
;
}
.dashnav-move-timeframe
{
display
:
none
;
}
.panel-in-fullscreen
{
.dashnav-action-icons
{
display
:
none
;
...
...
@@ -60,6 +66,9 @@
.dashnav-zoom-out
{
display
:
block
;
}
.dashnav-move-timeframe
{
display
:
block
;
}
}
@include
media-breakpoint-up
(
xl
)
{
...
...
public/sass/pages/_dashboard.scss
View file @
7d09579e
...
...
@@ -96,7 +96,8 @@
.add-row-panel-hint
,
.dashnav-refresh-action
,
.dashnav-zoom-out
,
.dashnav-action-icons
{
.dashnav-action-icons
,
.dashnav-move-timeframe
{
display
:
none
;
}
...
...
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