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
d22e1c43
Commit
d22e1c43
authored
Jul 23, 2013
by
Rashid Khan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added tabs to editor panels
parent
cc5da00b
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
66 additions
and
30 deletions
+66
-30
common/css/bootstrap.dark.min.css
+2
-2
common/css/main.css
+7
-0
common/lib/angular-strap.min.js
+0
-0
js/controllers.js
+5
-0
partials/dasheditor.html
+15
-12
partials/paneleditor.html
+13
-8
partials/querySelect.html
+14
-0
partials/roweditor.html
+10
-8
No files found.
common/css/bootstrap.dark.min.css
View file @
d22e1c43
...
...
@@ -3172,9 +3172,9 @@ table th[class*="span"],
font-size
:
20px
;
font-weight
:
bold
;
line-height
:
21px
;
color
:
#
000000
;
color
:
#
FFF
;
text-shadow
:
0
1px
0
#ffffff
;
opacity
:
0.
2
;
opacity
:
0.
3
;
filter
:
alpha
(
opacity
=
20
);
}
...
...
common/css/main.css
View file @
d22e1c43
...
...
@@ -6,6 +6,13 @@
color
:
#000
;
}
.editor-title
{
margin-right
:
10px
;
font-size
:
1.7em
;
font-weight
:
bold
;
text-transform
:
capitalize
;
}
.spy
{
position
:
absolute
;
right
:
0px
;
...
...
common/lib/angular-strap.min.js
View file @
d22e1c43
This diff is collapsed.
Click to expand it.
js/controllers.js
View file @
d22e1c43
...
...
@@ -13,6 +13,11 @@ angular.module('kibana.controllers', [])
last
:
null
};
// For
$scope
.
editor
=
{
index
:
0
};
$scope
.
init
=
function
()
{
$scope
.
config
=
config
;
...
...
partials/dasheditor.html
View file @
d22e1c43
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<h3>
{{dashboard.current.title}}
<small>
editor
</small></h3>
</div>
<div
class=
"modal-body"
>
<h4>
Dashboard Control
</h4>
<div
class=
"row-fluid"
>
<div
class=
"span8"
>
<div
class=
"pull-right editor-title"
>
Dashboard settings
</div>
<div
ng-model=
"editor.index"
bs-tabs
>
<div
ng-repeat=
"tab in ['General','Index','Rows']"
data-title=
"{{tab}}"
>
</div>
</div>
<div
class=
"row-fluid"
ng-show=
"editor.index == 0"
>
<div
class=
"span4"
>
<label
class=
"small"
>
Title
</label><input
type=
"text"
class=
"input-large"
ng-model=
'dashboard.current.title'
></input>
</div>
<div
class=
"span1"
>
<label
class=
"small"
>
Editable
</label><input
type=
"checkbox"
ng-model=
"dashboard.current.editable"
ng-checked=
"dashboard.current.editable"
/>
</div>
</div>
<div
class=
"row-fluid"
>
<div
class=
"row-fluid"
ng-show=
"editor.index == 1"
>
<h4>
Index Settings
</h4>
<div
ng-show=
"dashboard.current.index.interval != 'none'"
class=
"row-fluid"
>
<div
class=
"span12"
>
...
...
@@ -46,9 +49,8 @@
</div>
</div>
</div>
<
hr/
>
<
div
class=
"row-fluid"
ng-show=
"editor.index == 2"
>
<h4>
Rows
</h4>
<div
class=
"row-fluid"
>
<form>
<div
class=
"span5"
>
<label
class=
"small"
>
Title
</label>
...
...
@@ -68,7 +70,7 @@
</div>
</form>
</div>
<div
class=
"row-fluid"
>
<div
class=
"row-fluid"
ng-show=
"editor.index == 2"
>
<div
class=
"span12"
>
<table
class=
"table table-condensed table-striped"
>
<thead>
...
...
@@ -87,5 +89,5 @@
</div>
</div>
<div
class=
"modal-footer"
>
<button
type=
"button"
class=
"btn btn-success"
ng-click=
"dismiss();reset_panel();dashboard.refresh()"
>
Close
</button>
<button
type=
"button"
class=
"btn btn-success"
ng-click=
"
editor.index=0;
dismiss();reset_panel();dashboard.refresh()"
>
Close
</button>
</div>
\ No newline at end of file
partials/paneleditor.html
View file @
d22e1c43
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<h3>
{{panel.title}} Editor
</h3>
</div>
<div
class=
"modal-body"
>
<div
class=
"modal-body"
>
<div
class=
"pull-right editor-title"
>
{{panel.type}} settings
</div>
<h4>
General
<small>
panel settings
</small></h4>
<div
ng-model=
"editor.index"
bs-tabs
>
<div
ng-repeat=
"tab in ['General','Panel']"
data-title=
"{{tab}}"
>
</div>
</div>
<div
ng-show=
"editor.index == 0"
>
<h4>
{{panel.title}} General
<small>
panel settings
</small></h4>
<div
ng-include
src=
"'partials/panelgeneral.html'"
></div>
</div>
<div
ng-show=
"editor.index == 1"
>
<h4
style=
"text-transform: capitalize;"
>
{{panel.type}}
<small>
panel settings.
<strong
ng-show=
"!_.isUndefined(panel.status)"
>
({{panel.status}})
</strong></small></h4>
<div
ng-include
src=
"edit_path(panel.type)"
>
No additional settings are available for this type of panel.
</div>
</div>
</div>
<div
class=
"modal-footer"
>
<!-- close_edit() is provided here to allow for a scope to perform action on dismiss -->
<button
type=
"button"
class=
"btn btn-success"
ng-click=
"close_edit();dismiss()"
>
Close
</button>
<button
type=
"button"
class=
"btn btn-success"
ng-click=
"
editor.index=0;
close_edit();dismiss()"
>
Close
</button>
</div>
\ No newline at end of file
partials/querySelect.html
0 → 100644
View file @
d22e1c43
<style>
.querySelect
.query
{
margin-right
:
5px
;
}
</style>
<h4>
Queries
</h4>
<div
class=
"span2"
style=
"margin-left:0px"
>
<select
class=
"input-small"
ng-change=
"set_refresh(true);"
ng-model=
"panel.queries.mode"
ng-options=
"f for f in ['all','pinned','selected']"
></select>
</div>
<div
class=
"span9 querySelect"
ng-show=
"panel.queries.mode == 'selected'"
>
<span
ng-repeat=
"id in querySrv.ids"
class=
"query badge"
>
<i
ng-click=
"panel.queries.ids = _.toggleInOut(panel.queries.ids,id);set_refresh(true);"
ng-class=
"{'icon-check': _.contains(panel.queries.ids,id),'icon-check-empty': !_.contains(panel.queries.ids,id)}"
></i>
<i
class=
"icon-circle"
ng-style=
"{color: querySrv.list[id].color}"
></i><span>
{{querySrv.list[id].alias || querySrv.list[id].query}}
</span>
</span>
</div>
partials/roweditor.html
View file @
d22e1c43
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<h3>
{{row.title}}
<small>
row editor
</small></h3>
</div>
<div
class=
"modal-body"
>
<h4>
Row Control
</h4>
<div
class=
"row-fluid"
>
<div
class=
"pull-right editor-title"
>
Row settings
</div>
<div
ng-model=
"editor.index"
bs-tabs
>
<div
ng-repeat=
"tab in ['General','Panels']"
data-title=
"{{tab}}"
>
</div>
</div>
<div
class=
"row-fluid"
ng-show=
"editor.index == 0"
>
<div
class=
"span4"
>
<label
class=
"small"
>
Title
</label><input
type=
"text"
class=
"input-medium"
ng-model=
'row.title'
></input>
</div>
...
...
@@ -18,7 +20,7 @@
<label
class=
"small"
>
Collapsable
</label><input
type=
"checkbox"
ng-model=
"row.collapsable"
ng-checked=
"row.collapsable"
/>
</div>
</div>
<div
class=
"row-fluid"
>
<div
class=
"row-fluid"
ng-show=
"editor.index == 1"
>
<h4>
New Panel
</h4>
<form
class=
"input-append"
>
<select
class=
"input-medium input-append"
ng-model=
"panel.type"
ng-options=
"f for f in config.modules|stringSort"
></select>
...
...
@@ -30,7 +32,7 @@
<div
add-panel=
"{{panel.type}}"
></div>
</div>
</div>
<div
class=
"row-fluid"
>
<div
class=
"row-fluid"
ng-show=
"editor.index == 1"
>
<div
class=
"span12"
>
<h4>
Panels
</h4>
<table
class=
"table table-condensed table-striped"
>
...
...
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