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
e6776f71
Commit
e6776f71
authored
Nov 16, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup(sass): removed tight-form styles
parent
d7e8753c
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
79 additions
and
298 deletions
+79
-298
docs/sources/datasources/plugin_api.md
+0
-6
public/app/features/dashboard/partials/globalAlerts.html
+0
-0
public/app/features/panel/partials/query_editor_row.html
+0
-56
public/sass/_grafana.scss
+0
-1
public/sass/components/_query_editor.scss
+79
-0
public/sass/components/_tightform.scss
+0
-235
No files found.
docs/sources/datasources/plugin_api.md
View file @
e6776f71
...
...
@@ -30,11 +30,5 @@ Even though the data source type name is with lowercase `g`, the directive uses
that is how angular directives needs to be named in order to match an element with name
`<metric-query-editor-graphite />`
.
You also specify the query controller here instead of in the query.editor.html partial like before.
### query.editor.html
This partial needs to be updated, remove the
`np-repeat`
this is done in the outer partial now,m the query.editor.html
should only render a single query. Take a look at the Graphite or InfluxDB partials for
`query.editor.html`
for reference.
You should also add a
`tight-form-item`
with
`{{target.refId}}`
, all queries needs to be assigned a letter (
`refId`
).
These query reference letters are going to be utilized in a later feature.
public/app/features/dashboard/partials/globalAlerts.html
deleted
100644 → 0
View file @
d7e8753c
This diff is collapsed.
Click to expand it.
public/app/features/panel/partials/query_editor_row.html
View file @
e6776f71
...
...
@@ -57,59 +57,3 @@
</div>
</div>
<div
class=
"tight-form"
ng-if=
"false"
>
<ul
class=
"tight-form-list pull-right"
>
<li
ng-show=
"ctrl.error"
class=
"tight-form-item"
>
<a
bs-tooltip=
"ctrl.error"
style=
"color: rgb(229, 189, 28)"
role=
"menuitem"
>
<i
class=
"fa fa-warning"
></i>
</a>
</li>
<li
class=
"tight-form-item small"
ng-show=
"ctrl.target.datasource"
>
<em>
{{ctrl.target.datasource}}
</em>
</li>
<li
class=
"tight-form-item"
ng-if=
"ctrl.toggleEditorMode"
>
<a
class=
"pointer"
tabindex=
"1"
ng-click=
"ctrl.toggleEditorMode()"
>
<i
class=
"fa fa-pencil"
></i>
</a>
</li>
<li
class=
"tight-form-item"
>
<div
class=
"dropdown"
>
<a
class=
"pointer dropdown-toggle"
data-toggle=
"dropdown"
tabindex=
"1"
>
<i
class=
"fa fa-bars"
></i>
</a>
<ul
class=
"dropdown-menu pull-right"
role=
"menu"
>
<li
role=
"menuitem"
>
<a
tabindex=
"1"
ng-click=
"ctrl.duplicateQuery()"
>
Duplicate
</a>
</li>
<li
role=
"menuitem"
>
<a
tabindex=
"1"
ng-click=
"ctrl.moveQuery(-1)"
>
Move up
</a>
</li>
<li
role=
"menuitem"
>
<a
tabindex=
"1"
ng-click=
"ctrl.moveQuery(1)"
>
Move down
</a>
</li>
</ul>
</div>
</li>
<li
class=
"tight-form-item last"
>
<a
class=
"pointer"
tabindex=
"1"
ng-click=
"ctrl.removeQuery(target)"
>
<i
class=
"fa fa-trash"
></i>
</a>
</li>
</ul>
<ul
class=
"tight-form-list"
>
<li
class=
"tight-form-item"
style=
"min-width: 15px; text-align: center"
>
{{ctrl.target.refId}}
</li>
<li>
<a
class=
"tight-form-item"
ng-click=
"ctrl.toggleHideQuery()"
role=
"menuitem"
>
<i
class=
"fa fa-eye"
></i>
</a>
</li>
</ul>
<ul
class=
"tight-form-list"
ng-transclude
>
</ul>
<div
class=
"clearfix"
></div>
</div>
public/sass/_grafana.scss
View file @
e6776f71
...
...
@@ -50,7 +50,6 @@
@import
"components/tagsinput"
;
@import
"components/tables_lists"
;
@import
"components/search"
;
@import
"components/tightform"
;
@import
"components/gf-form"
;
@import
"components/sidemenu"
;
@import
"components/navbar"
;
...
...
public/sass/components/_query_editor.scss
View file @
e6776f71
...
...
@@ -67,3 +67,82 @@
}
}
.grafana-metric-options
{
margin-top
:
25px
;
}
.tight-form-func
{
background
:
$tight-form-func-bg
;
&
.show-function-controls
{
padding-top
:
5px
;
min-width
:
100px
;
text-align
:
center
;
}
}
input
[
type
=
"text"
]
.tight-form-func-param
{
background
:
transparent
;
border
:
none
;
margin
:
0
;
padding
:
0
;
}
.tight-form-func-controls
{
display
:
none
;
text-align
:
center
;
.fa-arrow-left
{
float
:
left
;
position
:
relative
;
top
:
2px
;
}
.fa-arrow-right
{
float
:
right
;
position
:
relative
;
top
:
2px
;
}
.fa-remove
{
margin-left
:
10px
;
}
}
.grafana-metric-options
{
margin-top
:
25px
;
}
.tight-form-func
{
background
:
$tight-form-func-bg
;
&
.show-function-controls
{
padding-top
:
5px
;
min-width
:
100px
;
text-align
:
center
;
}
}
input
[
type
=
"text"
]
.tight-form-func-param
{
background
:
transparent
;
border
:
none
;
margin
:
0
;
padding
:
0
;
}
.tight-form-func-controls
{
display
:
none
;
text-align
:
center
;
.fa-arrow-left
{
float
:
left
;
position
:
relative
;
top
:
2px
;
}
.fa-arrow-right
{
float
:
right
;
position
:
relative
;
top
:
2px
;
}
.fa-remove
{
margin-left
:
10px
;
}
}
public/sass/components/_tightform.scss
deleted
100644 → 0
View file @
d7e8753c
.tight-form
{
border-top
:
1px
solid
$tight-form-border
;
border-left
:
1px
solid
$tight-form-border
;
border-right
:
1px
solid
$tight-form-border
;
background
:
$tight-form-bg
;
&
.last
{
border-bottom
:
1px
solid
$tight-form-border
;
}
&
.borderless
{
background
:
transparent
;
border
:
none
;
}
.checkbox-label
{
display
:
inline
;
padding-right
:
4px
;
margin-bottom
:
0
;
cursor
:
pointer
;
}
}
.tight-form-container-no-item-borders
{
border
:
1px
solid
$tight-form-border
;
border-bottom
:
none
;
.tight-form
,
.tight-form-item
,
[
type
=
"text"
]
.tight-form-input
,
[
type
=
"text"
]
.tight-form-clear-input
{
border
:
none
;
}
}
.spaced-form
{
.tight-form
{
margin
:
7px
0
;
}
}
.borderless
{
.tight-form-item
,
.tight-form-input
{
border
:
none
;
}
}
.tight-form-container
{
border-bottom
:
1px
solid
$tight-form-border
;
}
.tight-form-btn
{
padding
:
7px
12px
;
}
.tight-form-list
{
list-style
:
none
;
margin
:
0
;
>
li
{
float
:
left
;
}
}
.tight-form-flex-wrapper
{
display
:
flex
;
flex-direction
:
row
;
float
:
none
!
important
;
}
.grafana-metric-options
{
margin-top
:
25px
;
}
.tight-form-item
{
padding
:
8px
7px
;
box-sizing
:
content-box
;
display
:
inline-block
;
font-weight
:
normal
;
border-right
:
1px
solid
$tight-form-border
;
display
:
inline-block
;
color
:
$text-color
;
.has-open-function
&
{
padding-top
:
25px
;
}
.tight-form-disabled
&
{
color
:
$link-color-disabled
;
a
{
color
:
$link-color-disabled
;
}
}
&
:hover
,
&
:focus
{
text-decoration
:
none
;
}
&
a
:hover
{
background
:
$tight-form-func-bg
;
}
&
.last
{
border-right
:
none
;
}
}
.tight-form-item-icon
{
i
{
width
:
15px
;
text-align
:
center
;
display
:
inline-block
;
}
}
.tight-form-func
{
background
:
$tight-form-func-bg
;
&
.show-function-controls
{
padding-top
:
5px
;
min-width
:
100px
;
text-align
:
center
;
}
}
input
[
type
=
"text"
]
.tight-form-func-param
{
background
:
transparent
;
border
:
none
;
margin
:
0
;
padding
:
0
;
}
input
[
type
=
"text"
]
.tight-form-clear-input
{
padding
:
8px
7px
;
border
:
none
;
margin
:
0px
;
background
:
transparent
;
border-radius
:
0
;
border-right
:
1px
solid
$tight-form-border
;
}
[
type
=
"text"
],
[
type
=
"email"
],
[
type
=
"number"
],
[
type
=
"password"
]
{
&
.tight-form-input
{
background-color
:
$input-bg
;
border
:
none
;
border-right
:
1px
solid
$tight-form-border
;
margin
:
0px
;
border-radius
:
0
;
padding
:
8px
6px
;
height
:
100%
;
box-sizing
:
border-box
;
&
.last
{
border-right
:
none
;
}
}
}
input
[
type
=
"checkbox"
]
.tight-form-checkbox
{
margin
:
0
;
}
.tight-form-textarea
{
height
:
200px
;
margin
:
0
;
box-sizing
:
border-box
;
}
select
.tight-form-input
{
border
:
none
;
border-right
:
1px
solid
$tight-form-border
;
background-color
:
$input-bg
;
margin
:
0px
;
border-radius
:
0
;
height
:
36px
;
padding
:
9px
3px
;
&
.last
{
border-right
:
none
;
}
}
.tight-form-func-controls
{
display
:
none
;
text-align
:
center
;
.fa-arrow-left
{
float
:
left
;
position
:
relative
;
top
:
2px
;
}
.fa-arrow-right
{
float
:
right
;
position
:
relative
;
top
:
2px
;
}
.fa-remove
{
margin-left
:
10px
;
}
}
.tight-form-radio
{
input
[
type
=
"radio"
]
{
margin
:
0
;
}
label
{
display
:
inline
;
}
}
.tight-form-section
{
margin-bottom
:
20px
;
margin-right
:
40px
;
vertical-align
:
top
;
display
:
inline-block
;
.tight-form
{
margin-left
:
20px
;
}
}
.tight-form-align
{
padding-left
:
66px
;
}
.tight-form-item-large
{
width
:
115px
;
}
.tight-form-item-xlarge
{
width
:
150px
;
}
.tight-form-item-xxlarge
{
width
:
200px
;
}
.tight-form-input.tight-form-item-xxlarge
{
width
:
215px
;
}
.tight-form-inner-box
{
margin
:
20px
0
20px
148px
;
display
:
inline-block
;
}
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