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
bca0894f
Commit
bca0894f
authored
Apr 26, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(query editors): progress on query editors
parent
bbf4d003
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
7 deletions
+11
-7
public/app/features/panel/partials/query_editor_row.html
+2
-0
public/app/plugins/datasource/elasticsearch/partials/bucket_agg.html
+2
-2
public/app/plugins/datasource/elasticsearch/partials/query.editor.html
+1
-1
public/sass/_variables.dark.scss
+2
-2
public/sass/components/_gf-form.scss
+1
-0
public/sass/utils/_utils.scss
+3
-2
No files found.
public/app/features/panel/partials/query_editor_row.html
View file @
bca0894f
<div
class=
"gf-form-query"
>
<div
class=
"gf-form"
>
<label
class=
"gf-form-label"
>
...
...
@@ -24,6 +25,7 @@
<div
class=
"gf-form"
>
<label
class=
"gf-form-label"
>
<a
class=
"pointer"
tabindex=
"1"
ng-click=
"ctrl.toggleCollapse()"
ng-class=
"{muted: !ctrl.canCollapse}"
>
<em
ng-show=
"ctrl.target.datasource"
>
{{ctrl.target.datasource}}
</em>
<i
class=
"fa fa-fw fa-chevron-down"
ng-hide=
"ctrl.collapsed"
></i>
<i
class=
"fa fa-fw fa-chevron-left"
ng-show=
"ctrl.collapsed"
></i>
</a>
...
...
public/app/plugins/datasource/elasticsearch/partials/bucket_agg.html
View file @
bca0894f
...
...
@@ -43,9 +43,9 @@
<div
class=
"gf-form offset-width-7"
>
<label
class=
"gf-form-label width-10"
>
Trim edges
points
Trim edges
<info-popover
mode=
"right-normal"
>
Trim the edges on the timeseries
x
datapoints
Trim the edges on the timeseries datapoints
</info-popover>
</label>
<input
class=
"gf-form-input max-width-12"
type=
"number"
ng-model=
"agg.settings.trimEdges"
ng-change=
"onChangeInternal()"
>
...
...
public/app/plugins/datasource/elasticsearch/partials/query.editor.html
View file @
bca0894f
...
...
@@ -7,7 +7,7 @@
</div>
<div
class=
"gf-form max-width-15"
>
<label
class=
"gf-form-label query-keyword"
>
Alias
</label>
<input
type=
"text"
class=
"gf-form-input"
ng-model=
"ctrl.target.alias"
spellcheck=
'false'
placeholder=
"alias patterns
(empty = auto)
"
ng-blur=
"ctrl.refresh()"
>
<input
type=
"text"
class=
"gf-form-input"
ng-model=
"ctrl.target.alias"
spellcheck=
'false'
placeholder=
"alias patterns"
ng-blur=
"ctrl.refresh()"
>
</div>
</div>
...
...
public/sass/_variables.dark.scss
View file @
bca0894f
...
...
@@ -67,8 +67,8 @@ $page-gradient: linear-gradient(60deg, transparent 70%, darken($page-bg, 4%) 98%
// Links
// -------------------------
$link-color
:
darken
(
$white
,
11%
);
$link-color-disabled
:
darken
(
$link-color
,
30%
);
$link-color
:
darken
(
$white
,
11%
);
$link-color-disabled
:
darken
(
$link-color
,
30%
);
$link-hover-color
:
$white
;
$external-link-color
:
$blue
;
...
...
public/sass/components/_gf-form.scss
View file @
bca0894f
...
...
@@ -126,6 +126,7 @@ $gf-form-margin: 0.25rem;
&
--dropdown
{
padding-right
:
$input-padding-x
*
2
;
&
:after
{
position
:
absolute
;
top
:
35%
;
...
...
public/sass/utils/_utils.scss
View file @
bca0894f
...
...
@@ -59,15 +59,16 @@ button.close {
// Toggling content
.hide
{
display
:
none
;
display
:
none
!
important
;
}
.show
{
display
:
block
;
}
// Visibility
.invisible
{
visibility
:
hidden
;
visibility
:
hidden
!
important
;
}
// For Affix plugin
...
...
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