David Kaltschmidt
642374de25
Explore: Metrics chooser for prometheus
...
- load all histogrammable metrics on start, based on `{le!=''}` series
query
- select dropdown shows all those metrics as well as histograms in a
special group
- select a metric will write fill the metric in the query box
- if a histogram is chosen, it will write a complete
`histogram_quantile` query
- added new dependency: rc-cascader
2018-08-07 13:43:32 +02:00
David Kaltschmidt
307248f713
Add clear row button
...
- clears the content of a query row
2018-08-07 13:43:32 +02:00
David Kaltschmidt
00f04f4ea0
Add clear button to Explore
...
- Clear All button to clear all queries and results
- moved result viewer buttons below query rows to make it more clear
that they govern result options
2018-08-07 13:42:32 +02:00
Torkel Ödegaard
013f8cd8ea
refactor: moving code around a bit, refactoring PR #12796
2018-08-05 11:39:46 +02:00
David
bda49fcaa2
Add click on explore table cell to add filter to query ( #12729 )
...
* Add click on explore table cell to add filter to query
- move query state from query row to explore container to be able to set
modified queries
- added TS interface for columns in table model
- plumbing from table cell click to datasource
- add modifyQuery to prometheus datasource
- implement addFilter as addLabelToQuery with tests
* Review feedback
- using airbnb style for Cell declaration
- fixed addLabelToQuery for complex label values
2018-08-03 11:20:13 +03:00
Patrick O'Carroll
ff0ca6b7e2
added two new classes for color, fixed so link has value color
2018-08-02 15:25:48 +02:00
Patrick O'Carroll
b03e3242e3
removed table-panel-link class
2018-08-02 11:21:17 +02:00
Patrick O'Carroll
36d981597e
removed table-panel-link class and add a class white to modify table-panel-cell-link class
2018-08-02 11:18:21 +02:00
Patrick O'Carroll
d4d896ade8
replaced style with class for links
2018-08-01 09:08:17 +02:00
Marcus Efraimsson
0550ec6de1
Merge pull request #12665 from grafana/9863-animated-delete-button
...
built a component for delete button in tables
2018-07-27 12:37:53 +02:00
David
7699451d94
Refactor Explore query field ( #12643 )
...
* Refactor Explore query field
- extract typeahead field that only contains logic for the typeahead
mechanics
- renamed QueryField to PromQueryField, a wrapper around TypeaheadField
that deals with Prometheus-specific concepts
- PromQueryField creates a promql typeahead by providing the handlers
for producing suggestions, and for applying suggestions
- The `refresher` promise is needed to trigger a render once an async
action in the wrapper returns.
This is prep work for a composable query field to be used by Explore, as
well as editors in datasource plugins.
* Added typeahead handling tests
- extracted context-to-suggestion logic to make it testable
- kept DOM-dependent parts in main onTypeahead funtion
* simplified error handling in explore query field
* Refactor query suggestions
- use monaco's suggestion types (roughly), see
https://github.com/Microsoft/monaco-editor/blob/f6fb545/monaco.d.ts#L4208
- suggest functions and metrics in empty field (ctrl+space)
- copy and expand prometheus function docs from prometheus datasource
(will be migrated back to the datasource in the future)
* Added prop and state types, removed unused cwrp
* Split up suggestion processing for code readability
2018-07-26 15:04:12 +03:00
Marcus Efraimsson
81a041b50c
Merge pull request #12672 from grafana/12668-blue-in-light-theme
...
adjust table header contrast for the light theme
2018-07-25 11:49:45 +02:00
Patrick O'Carroll
df62282c11
fix for typeahead background, increased lighten
2018-07-25 11:27:43 +02:00
Patrick O'Carroll
f4ab432542
added position absolute and some flexbox so I could remov changes in display and setTimeout, added tests and types, did some renaming
2018-07-25 10:29:55 +02:00
David Kaltschmidt
3297ae462d
Datasource for Grafana logging platform
...
- new builtin datasource plugin "Logging" (likely going to be renamed)
- plugin implements no panel ctrls yet, only ships datasource
- new models for logging data as first class citizen (aside from table
and time_series model)
- Logs as new view for Explore
- JSON view for development
Testable only against existing logish deployment.
Then test with queries like `{job="..."} regexp`.
2018-07-20 17:07:17 +02:00
Patrick O'Carroll
b6909eb3b0
removed blue-dark variable with blue-light in light-theme, blue variable now has same value as blue-dark had before, should fix issue with any low contrast issues with blue in light-theme, this made query-blue variable unnecessery removed it, added variable for variable dropdown highlight background
2018-07-20 16:02:41 +02:00
Patrick O'Carroll
0b421004ea
built a component for delete button in tables, instead of using a modal to confirm it now does it in the row of the table, created a sass file for the component, the component uses css transitions for animation
2018-07-20 09:59:04 +02:00
Torkel Ödegaard
e318489bd4
Fix default browser th font-weight
2018-07-17 11:56:33 +02:00
Torkel Ödegaard
4e089229fb
minor fix for legacy panels
2018-07-16 14:56:40 +02:00
David
a13b4f2b3f
Merge pull request #12596 from grafana/davkal/explore-datasource-selector
...
Explore Datasource selector
2018-07-16 11:13:29 +02:00
Tobias Skarhed
7ae844518c
Remove unused SASS variables ( #12603 )
...
* Comment out unused vars
* Remove unused sass vars
2018-07-13 12:10:09 -07:00
Torkel Ödegaard
964620c38c
fix: panel embedd scrolbar fix, fixes #12589 ( #12595 )
2018-07-13 05:07:04 -07:00
David Kaltschmidt
390090da05
Set datasource in deep links to Explore
2018-07-13 09:45:56 +02:00
David Kaltschmidt
d06b26de26
Explore Datasource selector
...
Adds a datasource selector to the Explore UI. Only datasource plugins
that have `explore: true` in their `plugin.json` can be selected.
- adds datasource selector (based on react-select) to explore UI
- adds getExploreSources to datasource service
- new `explore` flag in datasource plugins model
- Prometheus plugin enabled explore
2018-07-13 09:09:36 +02:00
Torkel Ödegaard
211e0f2199
wip: another baby step, another million to go
2018-07-11 12:11:21 -07:00
Torkel Ödegaard
902eba90d0
Merge branch 'master' into react-panels
2018-07-11 11:39:22 -07:00
Torkel Ödegaard
c03764ff8a
Refactor team pages to react & design change ( #12574 )
...
* Rewriting team pages in react
* teams to react progress
* teams: getting team by id returns same DTO as search, needed for AvatarUrl
* teams: progress on new team pages
* fix: team test
* listing team members and removing team members now works
* teams: team member page now works
* ux: fixed adding team member issue
* refactoring TeamPicker to conform to react coding styles better
* teams: very close to being done with team page rewrite
* minor style tweak
* ux: polish to team pages
* feature: team pages in react & everything working
* fix: removed flickering when changing tabs by always rendering PageHeader
2018-07-11 11:23:07 -07:00
Tobias Skarhed
cfa555b569
Add folder name to dashboard title ( #12545 )
...
* Add folder name to dashboard title. No display on medium displays and below
* Compare folderId instead
* folderId bigger than 0
2018-07-11 03:31:07 -07:00
Torkel Ödegaard
761283231c
react panels: working on changing type
2018-07-09 18:17:51 +02:00
Torkel Ödegaard
e052e165e9
Merge branch 'react-panels' of github.com:grafana/grafana into react-panels
2018-07-09 15:35:31 +02:00
Torkel Ödegaard
4fd2107071
Merge branch 'master' of github.com:grafana/grafana into react-panels
2018-07-09 15:35:16 +02:00
David
25bcdbcab1
Merge pull request #12284 from grafana/davkal/queryfield-refactor
...
Query field refactorings to support external plugins
2018-07-09 11:29:59 +02:00
Torkel Ödegaard
51f8d3ca42
fix: minor css change
2018-07-08 13:03:22 -07:00
Torkel Ödegaard
8036c49ffe
wip: minopr progress on react panel edit infra
2018-07-08 12:29:23 -07:00
Torkel Ödegaard
50f24c98f7
wip: minor progres on react panels edit mode
2018-07-08 07:39:25 -07:00
Torkel Ödegaard
dbe191fd55
wip: viz editor started
2018-07-07 05:10:42 -07:00
Torkel Ödegaard
645974ec8d
ux: minor fix/tweak to inactive view mode, think logo should be visible & fixes dashboard title alignment
2018-07-07 10:25:41 +02:00
Torkel Ödegaard
09ad8360ea
Merge branch 'master' into react-panels
2018-07-05 09:36:03 -07:00
Marcus Efraimsson
ab458061e6
Merge pull request #12441 from grafana/12430_fix
...
Fix footer CSS issue
2018-06-28 14:25:08 +02:00
Marcus Efraimsson
54420363d3
fix footer css issue
2018-06-28 14:02:42 +02:00
Tobias Skarhed
c2381f088f
Add disabled styles for checked checkbox ( #12422 )
2018-06-28 03:02:49 -07:00
Marcus Efraimsson
9f02927761
login: fix layout issues
2018-06-26 15:19:57 +02:00
Torkel Ödegaard
230606146d
wip: react panel minor progrss
2018-06-19 21:25:57 +02:00
Torkel Ödegaard
db52ea66bd
react panels minor progress
2018-06-19 16:57:55 +02:00
Torkel Ödegaard
542da8dc45
Merge branch 'master' into react-panels
2018-06-18 15:08:06 +02:00
David Kaltschmidt
73ddf2c3ed
hint support for typeahead
2018-06-14 16:20:09 +01:00
David Kaltschmidt
0425b47791
refactor Explore query field
2018-06-14 16:19:29 +01:00
Patrick O'Carroll
a0aa0b55e7
moved link icon in panel header
2018-06-14 09:24:51 +02:00
Patrick O'Carroll
0bb30b146c
save-modal save button ( #12047 )
...
Disable save dashboard button when saving
2018-06-12 11:54:50 +02:00
Patrick O'Carroll
77403b0dc1
changed som variables to values so it's the same for dark and light theme, added special styling for login text, link and input ( #12196 )
2018-06-07 11:03:58 -07:00
Patrick O'Carroll
25f2960717
fixed so panel title doesn't wrap and ( #12142 )
...
dashboard: fix so panel titles doesn't wrap
2018-06-07 16:20:55 +02:00
Ryan McKinley
17a2ce13f0
nicer collapsed row behaviour ( #12186 )
...
* nicer collapsed row behavior
* don't block events
* use a div to toggle
* use singular name
2018-06-06 21:58:42 -07:00
Marcus Efraimsson
6281910591
Merge pull request #12037 from grafana/login-change-password
...
change admin password after first login
2018-06-04 16:21:45 +02:00
Patrick O'Carroll
cb6c6c8172
change admin password after first login
2018-06-04 16:01:09 +02:00
Torkel Ödegaard
829af9425f
revert: reverted singlestat panel position change PR #12004
2018-06-04 15:45:29 +02:00
Patrick O'Carroll
8419cc0553
made folder text smaller
2018-06-04 13:32:19 +02:00
Patrick O'Carroll
83a73327cf
removed italic
2018-06-01 15:16:22 +02:00
Patrick O'Carroll
18e4271abd
added span with folder title that is shown for recently and starred, created a new class for folder title
2018-06-01 10:34:57 +02:00
Marcus Efraimsson
d2296d332e
Merge pull request #12107 from grafana/davkal/11771-hide-gridcontrols
...
Fix CSS to hide grid controls in fullscreen/low-activity views
2018-05-30 21:29:24 +02:00
David
7a3c1e162c
Merge pull request #11942 from grafana/davkal/design-integration
...
Explore: Time selector, split view, design integration
2018-05-30 12:27:24 +02:00
David Kaltschmidt
ac1dda3b3a
Fix CSS to hide grid controls in fullscreen/low-activity views
...
* there was a comma missing to hide the handles, fixed now
* added new styles to hide header interaction in full screen panels
2018-05-30 12:07:51 +02:00
Torkel Ödegaard
4c9b146bda
PR: minor change to PR #12004 before merge
2018-05-29 14:11:05 +02:00
Torkel Ödegaard
249e682511
Merge branch 'master' of https://github.com/mammuthus/grafana
2018-05-29 14:04:54 +02:00
Torkel Ödegaard
ddd5e5ae70
tech: updated react-grid-layout to latest official release, closes #12100
2018-05-29 13:23:07 +02:00
David Kaltschmidt
448b1cbc15
Integrated dark theme for explore UI
2018-05-25 12:51:27 +02:00
balyn
fac0333f47
The old code for centering removed
...
Old code removed
2018-05-24 19:35:04 +03:00
David Kaltschmidt
f5e351af8b
Explore split view
...
* button to bring a up a duplicate explore area to compare
* side by side rendering of two explore components
* right component has close button
* left component has page title
2018-05-24 10:55:01 +02:00
David Kaltschmidt
23c9da6162
Fixed custom dates for react timepicker
...
* added jest tests for timepicker component
2018-05-24 10:55:01 +02:00
David Kaltschmidt
eadaff6191
Explore: Design integration
...
* style header like other grafana components
* use panel container for graph and same styles for query field
* fix typeahead CSS selector (was created outside of .explore)
* use navbar buttons for +/- of rows
* moved elapsed time under run query button
* fix JS error on multiple timeseries being returned
* fix color for graph lines
* show prometheus query errors
2018-05-24 10:55:00 +02:00
David Kaltschmidt
0d3f24ce54
Explore: time selector
...
* time selector for explore section
* mostly ported the angular time selector, but left out the timepicker
(3rd-party angular component)
* can be initialised via url parameters (jump from panels to explore)
* refreshing not implemented for now
* moved the forward/backward nav buttons around the time selector
2018-05-24 10:55:00 +02:00
mammuthus
0cfdd726f7
Singlestat value: vertical alignment fix
...
There is a problem with vertical alignment of Singlestat value - it's a bit lower then it has to be.
This hack fix it.
2018-05-20 21:28:53 +03:00
Daniel Lee
567fec402e
scroll: temporary fix for double scrollbar issue
...
If #11939 is not merged in the patch release, then
this is a temporary fix for 5.1.3. It sets overflow to
hidden for larger screens and keeps the overflow set to
auto for mobiles and tablets.
Fixes #11937
2018-05-16 00:19:15 +02:00
Torkel Ödegaard
eb3aa7b193
PR: ux changes to #11528
2018-05-08 11:24:20 +02:00
Torkel Ödegaard
6a5ce09b08
Merge branch 'feature/save_json' of https://github.com/jereksel/grafana into jereksel-feature/save_json
2018-05-08 10:54:26 +02:00
Torkel Ödegaard
fb7db147ed
Merge remote-tracking branch 'origin/11809-permission-dropdown'
2018-05-07 09:49:38 +02:00
Marcus Efraimsson
d0753949bc
Merge pull request #11794 from grafana/11616-timepicker-buttons
...
fix dark/light theme date selector styling in timepicker control
2018-05-04 14:55:56 +02:00
Patrick O'Carroll
515eab2405
added left:unset to counter left:0 in recent react-select release
2018-05-04 11:46:17 +02:00
Patrick O'Carroll
c897485958
fixed text color in light theme
2018-05-04 10:30:42 +02:00
Alexander Zobnin
83d599670d
scroll: remove firefox scrollbars
2018-05-03 11:54:02 +03:00
Alexander Zobnin
64283408ee
scroll: fix scrolling on mobile Chrome ( #11710 )
2018-05-02 12:43:25 +03:00
Patrick O'Carroll
3dd073f98d
fixed so all buttons are styled not just small ones, fixes #11616
2018-05-02 09:56:53 +02:00
Daniel Lee
fc718b8a9a
table: fix for padding
...
The table-panel-wrapper class got removed when clicking on the panel
menu which resulted in extra padding for the .panel-content div. This
fixes that by setting the table-specific css class lower down in the
html.
2018-04-30 16:17:37 +02:00
Marcus Efraimsson
4f7791b9fa
fix dropdown typeahead issue
...
New explore feature overriding css for dropdown typeahead component.
2018-04-30 11:50:50 +02:00
David Kaltschmidt
949e3d29e8
Explore: add support for multiple queries
...
* adds +/- buttons to query rows in the Explore section
* on Run Query all query expressions are submitted
* `generateQueryKey` and `ensureQueries` are helpers to ensure each
query field has a unique key for react.
2018-04-27 15:42:35 +02:00
David Kaltschmidt
f1220fd2a4
Explore WIP
2018-04-26 20:27:19 +02:00
Marcus Efraimsson
fff5d7154e
Merge pull request #11721 from grafana/11677-missaligned-menu-carot
...
fix misalignment of unit and other drop downs in firefox
2018-04-25 17:24:54 +02:00
Daniel Lee
4b73f67703
Merge pull request #11722 from grafana/ie11-panel-edit-height
...
removed height 100% from panel-container to fix ie11 panel edit mode
2018-04-25 16:26:41 +02:00
Daniel Lee
3000a2a43b
Merge pull request #11652 from grafana/davkal/hmr
...
Add weback-dev-server with hot/hmr support
2018-04-25 15:52:53 +02:00
Patrick O'Carroll
6836268f3e
removed height 100% from panel-container to fix ie11 panel edit mode
2018-04-25 12:44:39 +02:00
Patrick O'Carroll
99aa9a46bc
replaced border hack carot with fontawesome carot fixes #11677
2018-04-25 12:16:43 +02:00
Andrzej Ressel
9d5ccaef54
Merge branch 'master' into feature/save_json
2018-04-22 21:24:52 +02:00
Daniel Lee
c2064781a0
Merge pull request #11640 from grafana/11637-dropdown-styling
...
removed padding and moved carrot
2018-04-20 11:05:40 +02:00
David Kaltschmidt
cc5d7002b0
Add weback-dev-server with hot/hmr support
...
* adds `npm start` / `yarn start` script
* starts a webpack-dev-server using the dev config, served on :3333
* hot reloading (HMR) for react/styles, not working for angular code
* new entry `dev.ts` for dynamic imports of CSS theme (ExtractText does
not work with HMR)
* TS loader pipeline moved out of common to add HMR for react
* applied `hot()` to some react containers (that's their new default
export, named exports remains for testing)
* added sections to README
* updated yarn.lock
2018-04-19 11:42:53 +02:00
Marcus Efraimsson
82054e1a3e
Merge branch 'master' into 10427_addpanel_filter
2018-04-18 11:36:13 +02:00
Patrick O'Carroll
e794951087
removed padding and moved carrot
2018-04-18 10:21:48 +02:00
Torkel Ödegaard
1594ceeb6f
fix: Label font weight should be semi bold, fixes #11629
2018-04-17 19:40:44 +02:00
Patrick O'Carroll
0120023aba
added forceupdate to grid item so addpanel items rezie instantly, renamed function to copyPanel, fixed panel items height issue
2018-04-17 13:10:08 +02:00
Marcus Efraimsson
9733172d3c
Merge pull request #11422 from grafana/dashboard-acl-ux2
...
improved ux for permission list
2018-04-17 09:39:39 +02:00
Marcus Efraimsson
d9799f7c13
Merge pull request #11572 from grafana/settings-icons-fix
...
ux: sizing and positioning of dashboard settings menu icons
2018-04-17 09:22:16 +02:00
Marcus Efraimsson
0e0976b0a2
Merge branch 'master' into 10427_addpanel_filter
2018-04-16 23:30:34 +02:00
Marcus Efraimsson
bc8353ae14
Merge branch 'master' into dashboard-acl-ux2
2018-04-16 21:19:01 +02:00
Marcus Efraimsson
9573bc43ce
dashboard: better size and alignment of settings icons
2018-04-16 17:16:35 +02:00
David Kaltschmidt
5a29c17282
moved version in help menu to top
2018-04-16 16:25:28 +02:00
David Kaltschmidt
712212d6aa
Show Grafana version and build in Help menu
...
* establishes Help as the single place to look for the Grafana version
* version is passed as menu sub-title to side menu
* added rendering of sub-title, plus styles
* sub-title was used by profile menu (its value is the login string),
but was not shown; now showing this value on condition that login name
is different from user name
2018-04-16 13:37:05 +02:00
Marcus Efraimsson
060cd6ebef
Merge branch 'master' into settings-icons-fix
2018-04-13 14:49:08 +02:00
Alexander Zobnin
f8543fced9
remove mistakenly added styles
2018-04-12 14:29:35 +03:00
Alexander Zobnin
31e5c1fa1f
Merge remote-tracking branch 'upstream/11053-remove-native-scrollbar' into 11053-remove-native-scrollbar
2018-04-12 14:23:47 +03:00
Alexander Zobnin
74c10515ad
fix right side legend rendering in phantomjs
2018-04-12 14:22:19 +03:00
Daniel Lee
d4398479f5
scrollbar: fix so no overflow for legend under graph
...
Adds 1px of padding to the graph legend scroll div so that a non-table
legend does not get an unnecessary scroll bar.
2018-04-12 11:26:27 +02:00
Daniel Lee
76c87d1a74
scrollbar: fixes continuation scrolling for iOS
...
The -webkit-overflow-scrolling is an iOS only property:
https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-overflow-scrolling
that turns on momementum/continuation scrolling for iOS devices. This means
that when swiping, the scroll continues for a half second rather than instantly
stopping the scroll when the user lifts their finger from the screen.
2018-04-12 10:53:27 +02:00
Patrick O'Carroll
229486015d
added styling to fontawesome icons so they have same size as the other icons
2018-04-12 10:44:00 +02:00
Andrzej Ressel
bff174dba9
PR comments
2018-04-11 22:59:29 +02:00
Marcus Efraimsson
cdcaaa5d03
minor scrollbar fixes
...
Hide page scrollbar when rendering using phantomjs.
Hide baron scrollbar when rendering using phantomjs.
2018-04-11 20:12:32 +02:00
Daniel Lee
e74be16900
Merge remote-tracking branch 'upstream/11053-remove-native-scrollbar' into 11053-remove-native-scrollbar
2018-04-11 18:33:00 +02:00
Marcus Efraimsson
a1b53674a9
dashboard: show baron scrollbar in dashboard panel when mouse is over
...
This should make the scrolling user experience much better since it
will highlight and show that content actually can be scrolled when
hovering over a panel.
2018-04-11 18:12:48 +02:00
Daniel Lee
83f7ac18db
Merge remote-tracking branch 'upstream/master' into 11053-remove-native-scrollbar
2018-04-11 14:32:19 +02:00
Daniel Lee
25ec7b5b02
scrollbar: use native scroll for page
2018-04-11 14:30:39 +02:00
Alexander Zobnin
d9ba16f550
scrollbar: fix phantomjs rendering error
2018-04-09 14:21:20 +03:00
Daniel Lee
ce787b88bf
css: quick fix after IE11 changes
...
Temporary fix so that the add panel panel works properly. This will
break a3f15ced68
.
2018-04-06 21:29:42 +02:00
Alexander Zobnin
41e5d66e39
scrollbar: fix add panel height bug
2018-04-06 20:31:44 +03:00
Alexander Zobnin
d3d64337b4
scrollbar: styles cleanup
2018-04-06 20:00:03 +03:00
Patrick O'Carroll
6d6ecbd458
fixed sidemenu icon issue created by earlier pr
2018-04-06 10:54:06 +02:00
Patrick O'Carroll
b363e160d9
added icons for viewer and editor, fixed add permission team avatar
2018-04-06 09:43:59 +02:00
Alexander Zobnin
9f07ae72ee
scrollbar: fix search scroller in mobile view
2018-04-05 16:47:20 +03:00
Alexander Zobnin
d6233714d2
Merge remote-tracking branch 'upstream/master' into fix-11053
2018-04-05 16:30:46 +03:00
Alexander Zobnin
fa43782299
scrollbar: fix graph legend height
2018-04-05 16:28:12 +03:00
Daniel Lee
32b833e488
Merge pull request #11271 from grafana/11073_dashboard_folder_indent
...
added indent to dashboards inside folder in search dropdown…
2018-04-05 11:12:17 +02:00
Patrick O'Carroll
b321a21cb5
removed indent for manage dashboards
2018-04-05 11:00:15 +02:00
Daniel Lee
088720cf2b
Merge pull request #11417 from grafana/ie11_alerting_style_fix
...
removed padding for icons and added margin
2018-04-04 23:24:41 +02:00
Alexander Zobnin
4df4249aea
scrollbar: fix dashboard width bug
2018-04-04 19:22:07 +03:00
Daniel Lee
a6a08038d4
Merge pull request #11416 from grafana/ie11_graphpanel_edit
...
Graphpanel Edit fix for IE11
2018-04-03 15:44:54 +02:00
Patrick O'Carroll
658c6a8ff4
changed from margin to padding
2018-04-03 15:43:25 +02:00
Daniel Lee
1a6c632264
Merge pull request #11396 from grafana/ie11_search_and_popup
...
fixed alignment in search + fixed issue ie popup
2018-04-03 15:06:08 +02:00
Daniel Lee
cdc0b04840
Merge pull request #11393 from grafana/ie_sidemenu
...
sidemenu fix for internet explorer 11,
2018-04-03 15:00:25 +02:00
Daniel Lee
6bc5896b3a
Merge pull request #11381 from grafana/ie11_login
...
styled login page for ie11
2018-04-03 14:35:12 +02:00
Alexander Zobnin
3fcd262711
scrollbar: fix side menu on mobile devices
2018-04-03 14:48:48 +03:00
Patrick O'Carroll
feb222f633
changed variable for tabbed close btn hover, and changed text-strong variable for lighttheme, removed commented out variable
2018-04-03 09:53:14 +02:00
Alexander Zobnin
7b75b251b1
scrollbar: fix Firefox issue (white stripe on the right of scrollbar)
2018-04-02 21:15:10 +03:00
Alexander Zobnin
efaf267deb
scrollbar: fix legend rendering issues
2018-04-02 20:47:09 +03:00
Alexander Zobnin
77d2ee9add
Initially move to baron scrollbar
2018-04-02 14:59:49 +03:00
Daniel Lee
32264c61c4
Merge branch 'master' into dashboard-acl-ux2
2018-03-29 11:32:24 +02:00
Patrick O'Carroll
d40b7433ea
removed padding for icons and added margin
2018-03-28 15:06:20 +02:00
Patrick O'Carroll
a3f15ced68
fixed graphpanel editmode and custom width for right side legend for IE11
2018-03-28 14:19:17 +02:00
Patrick O'Carroll
d4be953d23
fixed alignment in search + fixed issue ie popup
2018-03-27 12:36:13 +02:00
Patrick O'Carroll
dbcba4a009
sidemenu fix for internet explorer 11, changed icon width/height to pixels and added height to logo
2018-03-27 10:41:47 +02:00
Patrick O'Carroll
ff62036f15
styled login page for ie11
2018-03-26 14:14:57 +02:00
Patrick O'Carroll
4916826364
small screen legend right also work like legend under in render + set scrollbar to undefined in destroyScrollbar so it doesnt become disabled when toggeling between right and under
2018-03-22 14:39:13 +01:00
Patrick O'Carroll
f2f709989f
fixed so legend right works like legend under on small screens
2018-03-22 09:41:05 +01:00
Patrick O'Carroll
fc9014f920
added indent to dashboards inside folder in search dropdown, and added indent to dashboard icon in search item
2018-03-16 12:36:36 +01:00
Patrick O'Carroll
3c9f31a0bb
added media breakpoint to legend-right
2018-03-07 13:10:44 +01:00
Daniel Lee
3a19cf52ef
Merge pull request #11123 from grafana/mobile_menu_polish
...
changed background for mobile menu background on light theme,
2018-03-07 10:58:57 +01:00
Patrick O'Carroll
9b3863a150
changed background for mobile menu background on light theme, increased font size in and added border-right in menu
2018-03-06 14:16:10 +01:00
Torkel Ödegaard
0de90accfb
fix: restores white resize handle for panels, fixes #11103
2018-03-06 11:19:01 +01:00
Torkel Ödegaard
dff2c14aed
fix: changed react-grid-layout to use grafana fork to a commit before 15503084fb
, this fixes all the panel movement bugs, fixes #10831
2018-02-27 11:34:29 +01:00
Patrick O'Carroll
7fb34f7918
gave scroll-canvas-dashboard 100% height in kiosk-mode, fixes #11010 ( #11017 )
2018-02-26 11:52:48 +01:00
Patrick O'Carroll
e037ef21f7
added admin icon and permission member definitions(role,team,user)
2018-02-26 10:21:24 +01:00
Patrick O'Carroll
ce9c8ae854
added no copies div
2018-02-22 09:58:52 +01:00
Patrick O'Carroll
5e5a4cf1b0
added highlighter, fixed setState and changed back flex to spacea around
2018-02-21 15:39:15 +01:00
Patrick O'Carroll
9ac82f3d0e
added tabs and searchfilter to addpanel, fixes#10427
2018-02-21 14:51:28 +01:00
Marcus Efraimsson
3c6bc263dc
Merge branch 'master' into 10630_folder_api
2018-02-21 11:25:56 +01:00
Torkel Ödegaard
98a4731454
fix: scrollbar position now to max right pos, fixes #10982
2018-02-21 11:01:48 +01:00
Alexander Zobnin
ceb8223ddf
Fixes for heatmap panel in Grafana 5 ( #10973 )
...
* heatmap: fix chart height
* heatmap: fix font size
* heatmap: fix legend size
* heatmap: fix rendering tests
2018-02-21 09:16:56 +01:00
Patrick O'Carroll
9f4b7ac26f
added scroll to org list modal ( #10960 )
...
* added scroll to org list modal, fixes #10774
* removed console.log
2018-02-20 11:08:53 +01:00
Marcus Efraimsson
fce1e3f7f1
Merge branch 'master' into 10630_folder_api
2018-02-19 13:32:45 +01:00
Torkel Ödegaard
168ac314fc
fix: more phantomjs fixes
2018-02-15 13:20:50 +01:00
Torkel Ödegaard
57103ec98a
fix: refactoring #10922
2018-02-15 12:42:17 +01:00
Jan Fajerski
e9380bbdff
sass/base: import from current dir in _fonts.scss ( #10894 )
...
The import statement relative to base seems to confuse sass if there is
a colon (:) in the path name.
Fixes : #10866
Signed-off-by: Jan Fajerski <jfajerski@suse.com>
2018-02-13 17:20:51 +01:00
Patrick O'Carroll
42af87b7c9
fixed bg gradient, fixes #10869 ( #10875 )
2018-02-12 17:10:27 +01:00
Torkel Ödegaard
6bbd87dd9c
ux: minor tweak to grid resize handle color
2018-02-10 20:11:11 +01:00
Torkel Ödegaard
f54ba20783
fix: css fix, found a better way to fix #10772
2018-02-06 13:01:23 +01:00
Daniel Lee
8c027ea707
scroll: css for #10722
...
Missed adding to previous commit. Ref #10722
2018-02-05 19:31:16 +01:00
Daniel Lee
5d756707ab
dashlist: scroll fix when no header
...
The first item in the dashlist has a margin that messes up
the height calculation for the scroll bar when the Show headings
option is not selected. This fix adds a margin-top set to 0 for
the 1st item in the list in this case. This prevents a scrollbar
being shown incorrectly. Fixes #10772
2018-02-05 19:22:15 +01:00
Alexander Zobnin
20feb123c9
fix panel menu caret placement ( #10759 )
2018-02-05 11:49:59 +01:00
Torkel Ödegaard
40c9d5f2a3
ux: hide sidemenu in kiosk mode, and while playlist is playing, fixes #107402
2018-02-04 17:32:27 +01:00
Torkel Ödegaard
162f4941f0
fix: restored tags to search
2018-02-03 10:14:45 +01:00
Torkel Ödegaard
5aeded8cf3
Merge branch 'master' into react-panels
2018-02-02 15:47:13 +01:00
Patrick O'Carroll
d2827a0005
Light theme icon color ( #10730 )
...
* working on new colors for icons in light theme
* more work on icon colors
* changed colors of icons for light theme
2018-02-02 10:18:45 +01:00
Torkel Ödegaard
5171d7e285
Merge branch 'master' of github.com:grafana/grafana
2018-02-01 15:45:59 +01:00
Torkel Ödegaard
c3181552f8
ux: added max width to dashboard settings views
2018-02-01 15:45:15 +01:00
Daniel Lee
22a349051c
Merge pull request #10719 from grafana/add_permissions_10676
...
Grafana 5.0: Add permissions modal for the permissions pages
2018-02-01 14:20:04 +00:00
Daniel Lee
cc55ab6bc8
dashfolders: adds permission modal to dashboard settings
2018-02-01 14:32:19 +01:00
Daniel Lee
9cdc1428d7
Merge remote-tracking branch 'upstream/master' into add_permissions_10676
2018-02-01 14:02:14 +01:00
Torkel Ödegaard
d08a829b69
ux: fix for responsive breakpoints and solo mode showing sidemenu
2018-02-01 11:29:04 +01:00
Daniel Lee
a9e2273064
Merge remote-tracking branch 'upstream/master' into dashboard_permissions
2018-01-31 16:45:32 +01:00
Johannes Schill
2ad4c30bc6
ux: POC - Update "Add permissions" design and add a fancy animation #10676
2018-01-31 14:19:07 +01:00
Patrick O'Carroll
ad893614e1
created cta-bg variable and changed bg color on light theme ( #10693 )
2018-01-31 14:14:11 +01:00
Johannes Schill
666d29fafa
dashfolders: POC - Use separate component for "Add permission" #10676
2018-01-31 10:39:38 +01:00
Daniel Lee
4bc5945c17
dashfolders: remove inline styles
2018-01-30 17:26:44 +01:00
Daniel Lee
0fb05bcf59
Merge remote-tracking branch 'upstream/master' into dashboard_permissions
2018-01-30 09:26:23 +01:00
Johannes Schill
ee57ed10f9
dashfolders: Add min-width to align icons in permissions list and some margin between icon and text #10275
2018-01-29 17:10:25 +01:00
Johannes Schill
0573545d5a
ui: Fix Firefox align issue in dropdowns #10527 ( #10662 )
2018-01-29 17:06:16 +01:00
Johannes Schill
787b493c00
dashfolders: Use grafana's question mark instead of FA's and use the react tooltip instead of angular's #10275
2018-01-29 14:53:10 +01:00
Daniel Lee
146af8595d
dashfolders: css class as parameter for Picker
...
For the permissions picker, pass in an extra class to decide
if the description should be aligned left or right.
2018-01-29 14:30:01 +01:00
Daniel Lee
5ee2d1de05
dashfolders: select with description for permissions
...
The dropdown for selecting permission is a new component built on
react-select that includes a description for the permission for
every option in the select.
2018-01-29 13:56:12 +01:00
Torkel Ödegaard
b6ce16ebae
ux: minor tweak of #10634
2018-01-29 10:41:06 +01:00
Patrick O'Carroll
ffff75b01a
reverted media queries
2018-01-26 16:59:16 +01:00
Patrick O'Carroll
2f891726c3
fix for sm
2018-01-26 14:57:55 +01:00
Patrick O'Carroll
08822fbdca
added media break for md and sm
2018-01-26 14:46:52 +01:00
Patrick O'Carroll
eb2d4b20bc
added varibale to table hover, lightend colors for table light theme, fixes #10609 ( #10611 )
2018-01-25 12:17:16 +01:00
Torkel Ödegaard
dd70710617
refactor: minor css class naming change of #10505
2018-01-23 16:10:04 +01:00