-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6156 from stormpython/visualize
New Design for Visualize
- Loading branch information
Showing
15 changed files
with
307 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
<h1> | ||
Create a new visualization <br class="visible-xs"> | ||
<span class="pull-right label label-default hidden-xs">Step 1</span> | ||
<span class="label label-default visible-xs">Step 1</span> | ||
</h1> | ||
|
||
<div class="wizard-vis-types"> | ||
<a class="wizard-vis-type" | ||
ng-repeat="type in visTypes.inTitleOrder" | ||
ng-href="{{ visTypeUrl(type) }}"> | ||
<div class="wizard-vis-type-heading"> | ||
<i aria-hidden="true" class="fa fa-fw" ng-class="type.icon"></i> | ||
<h4>{{type.title}}</h4> | ||
<div class="wizard"> | ||
<div class="wizard-column"> | ||
<h3>Create New Visualization</h3> | ||
<div class="wizard-row"> | ||
<a class="wizard-type" ng-repeat="type in visTypes.inTitleOrder" ng-href="{{ visTypeUrl(type) }}"> | ||
<div class="wizard-type-heading"> | ||
<i aria-hidden="true" class="fa fa-fw" ng-class="type.icon"></i> | ||
<h4>{{type.title}}</h4> | ||
</div> | ||
<p class="wizard-type-description">{{type.description}}</p> | ||
</a> | ||
</div> | ||
<p class="wizard-vis-type-description">{{type.description}}</p> | ||
</a> | ||
</div> | ||
<div class="wizard-column"> | ||
<h3>Or, Open a Saved Visualization</h3> | ||
<saved-object-finder | ||
title="Saved Visualizations" | ||
type="visualizations" | ||
class="wizard-row"> | ||
</saved-object-finder> | ||
</div> | ||
</div> | ||
|
||
<h1>Or, open a saved visualization</h1> | ||
|
||
<saved-object-finder | ||
title="Saved Visualizations" | ||
type="visualizations"> | ||
</saved-object-finder> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,26 @@ | ||
<h1> | ||
Select a search source | ||
<span class="pull-right label label-default hidden-xs">Step 2</span> | ||
<span class="label label-default visible-xs">Step 2</span> | ||
</h1> | ||
<ul class="list-group list-group-menu" ng-switch on="stepTwoMode"> | ||
<li ng-click="stepTwoMode='new'" | ||
ng-class="{'active': stepTwoMode=='new'}" | ||
class="list-group-item list-group-menu-item"> | ||
From a new search | ||
</li> | ||
<li class="list-group-item" ng-switch-when="new"> | ||
<div class="wizard"> | ||
<div class="wizard-column"> | ||
<h3>From a New Search</h3> | ||
<!-- Index patterns --> | ||
Select an index pattern | ||
<div class="form-group"> | ||
<select | ||
class="form-control" | ||
ng-model="indexPattern.selection" | ||
ng-options="pattern as pattern for pattern in indexPattern.list | orderBy:'toString()'"> | ||
</select> | ||
<div class="wizard-row"> | ||
<div class="panel panel-default"> | ||
<div class="panel-heading">Index Patterns</div> | ||
</div> | ||
<ul class="striped list-group"> | ||
<li class="list-group-item" ng-repeat="pattern in indexPattern.list | orderBy: 'toString()'"> | ||
<a class="index-link" kbn-href="{{ makeUrl(pattern) }}">{{pattern}}</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</li> | ||
|
||
<li ng-click="stepTwoMode='saved'" | ||
ng-class="{'active': stepTwoMode=='saved'}" | ||
class="list-group-item list-group-menu-item"> | ||
From a saved search | ||
</li> | ||
<li class="list-group-item" ng-switch-when="saved"> | ||
</div> | ||
<div class="wizard-column"> | ||
<h3>Or, From a Saved Search</h3> | ||
<!-- Saved searches --> | ||
<saved-object-finder | ||
title="Saved Searches" | ||
type="searches" | ||
make-url="step2WithSearchUrl"> | ||
title="Saved Searches" | ||
type="searches" | ||
class="wizard-row" | ||
make-url="step2WithSearchUrl"> | ||
</saved-object-finder> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
src/ui/public/chrome/directives/app_switcher/app_switcher.less
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.