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
666e8e83
Commit
666e8e83
authored
Dec 13, 2018
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wip: changes
parent
1751a510
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
9 deletions
+22
-9
public/app/features/dashboard/dashgrid/EditorTabBody.tsx
+5
-1
public/app/features/dashboard/dashgrid/VisualizationTab.tsx
+9
-2
public/app/features/dashboard/dashgrid/VizTypePicker.tsx
+0
-1
public/sass/_variables.dark.scss
+3
-3
public/sass/components/_panel_editor.scss
+1
-2
public/sass/utils/_utils.scss
+4
-0
No files found.
public/app/features/dashboard/dashgrid/EditorTabBody.tsx
View file @
666e8e83
...
...
@@ -5,7 +5,7 @@ import { FadeIn } from 'app/core/components/Animations/FadeIn';
interface
Props
{
children
:
JSX
.
Element
;
heading
:
string
;
renderToolbar
?:
()
=>
JSX
.
Element
|
JSX
.
Element
[]
;
renderToolbar
?:
()
=>
JSX
.
Element
;
toolbarItems
?:
EditorToolBarView
[];
}
...
...
@@ -106,8 +106,12 @@ export class EditorTabBody extends PureComponent<Props, State> {
<
div
className=
"toolbar"
>
<
div
className=
"toolbar__heading"
>
{
heading
}
</
div
>
{
renderToolbar
&&
renderToolbar
()
}
{
toolbarItems
.
length
>
0
&&
(
<>
<
div
className=
"gf-form--grow"
/>
{
toolbarItems
.
map
(
item
=>
this
.
renderButton
(
item
))
}
</>
)
}
</
div
>
<
div
className=
"panel-editor__scroll"
>
<
CustomScrollbar
autoHide=
{
false
}
>
...
...
public/app/features/dashboard/dashgrid/VisualizationTab.tsx
View file @
666e8e83
...
...
@@ -169,6 +169,10 @@ export class VisualizationTab extends PureComponent<Props, State> {
/>
<
i
className=
"gf-form-input-icon fa fa-search"
/>
</
label
>
<
div
className=
"flex-grow"
/>
<
button
className=
"btn btn-link"
onClick=
{
this
.
onCloseVizPicker
}
>
<
i
className=
"fa fa-chevron-up"
/>
</
button
>
</>
);
}
else
{
...
...
@@ -183,14 +187,17 @@ export class VisualizationTab extends PureComponent<Props, State> {
};
onTypeChanged
=
(
plugin
:
PanelPlugin
)
=>
{
// this.setState({ isVizPickerOpen: false });
if
(
plugin
.
id
===
this
.
props
.
plugin
.
id
)
{
this
.
setState
({
isVizPickerOpen
:
false
});
}
else
{
this
.
props
.
onTypeChanged
(
plugin
);
}
};
render
()
{
const
{
plugin
}
=
this
.
props
;
const
{
isVizPickerOpen
,
searchQuery
}
=
this
.
state
;
const
toolbarItems
:
EditorToolBarView
=
[];
const
toolbarItems
:
EditorToolBarView
[]
=
[];
if
(
!
isVizPickerOpen
)
{
toolbarItems
.
push
({
...
...
public/app/features/dashboard/dashgrid/VizTypePicker.tsx
View file @
666e8e83
...
...
@@ -62,7 +62,6 @@ export class VizTypePicker extends PureComponent<Props> {
};
render
()
{
const
{
onClose
}
=
this
.
props
;
const
filteredPluginList
=
this
.
getFilteredPluginList
();
return
(
...
...
public/sass/_variables.dark.scss
View file @
666e8e83
...
...
@@ -271,7 +271,7 @@ $menu-dropdown-shadow: 5px 5px 20px -5px $black;
$tab-border-color
:
$dark-4
;
// Toolbar
$toolbar-bg
:
$input-b
g
;
$toolbar-bg
:
$input-b
lack
;
// Pagination
// -------------------------
...
...
@@ -377,12 +377,12 @@ $checkbox-color: $dark-1;
$panel-editor-shadow
:
0
0
20px
black
;
$panel-editor-border
:
1px
solid
$dark-3
;
$panel-editor-side-menu-shadow
:
drop-shadow
(
0
0
10px
$black
);
$panel-editor-toolbar-view-bg
:
$black
;
$panel-editor-toolbar-view-bg
:
$
input-
black
;
$panel-editor-viz-item-shadow
:
0
0
8px
$dark-5
;
$panel-editor-viz-item-border
:
1px
solid
$dark-5
;
$panel-editor-viz-item-shadow-hover
:
0
0
4px
$blue
;
$panel-editor-viz-item-border-hover
:
1px
solid
$blue
;
$panel-editor-viz-item-bg
:
$black
;
$panel-editor-viz-item-bg
:
$
input-
black
;
$panel-editor-tabs-line-color
:
#e3e3e3
;
$panel-editor-viz-item-bg-hover
:
darken
(
$blue
,
47%
);
$panel-editor-viz-item-bg-hover-active
:
darken
(
$orange
,
45%
);
...
...
public/sass/components/_panel_editor.scss
View file @
666e8e83
...
...
@@ -35,7 +35,6 @@
background
:
$page-bg
;
margin
:
0
20px
0
84px
;
border-radius
:
3px
;
border
:
$panel-editor-border
;
box-shadow
:
$panel-editor-shadow
;
}
...
...
@@ -134,7 +133,7 @@
.viz-picker
{
background
:
$toolbar-bg
;
margin
:
-40px
-20px
40px
106
px
;
margin
:
-40px
-20px
40px
-20
px
;
padding
:
20px
;
position
:
relative
;
}
...
...
public/sass/utils/_utils.scss
View file @
666e8e83
...
...
@@ -83,6 +83,10 @@ button.close {
position
:
absolute
;
}
.flex-grow
{
flex-grow
:
1
;
}
.center-vh
{
display
:
flex
;
align-items
:
center
;
...
...
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