forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[7364]: Deconcatenate selectors in src/plugins/kibana/public/visualiz…
…e/styles/main.less. - Refactor styles for reduced specificity. - Refactor markup attributes as part of a proposal for a new style. - Remove unused classes nested beneath wizard-row: striped, panel, panel-default. - Remove redundant wizard-agg-list class. Former-commit-id: d4036dc
- Loading branch information
Showing
3 changed files
with
58 additions
and
73 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,31 @@ | ||
<bread-crumbs></bread-crumbs> | ||
<div class="wizard"> | ||
<div class="wizard-column"> | ||
<h3>Create New Visualization</h3> | ||
<h3 class="wizard-sub-title">Create New Visualization</h3> | ||
<div class="wizard-row"> | ||
<a class="wizard-type" ng-repeat="type in visTypes.inTitleOrder" ng-href="{{ visTypeUrl(type) }}"> | ||
<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> | ||
<i | ||
aria-hidden="true" | ||
class="wizard-type-heading-icon fa fa-fw" | ||
ng-class="type.icon" | ||
></i> | ||
<h4 class="wizard-type-heading-text">{{type.title}}</h4> | ||
</div> | ||
<p class="wizard-type-description">{{type.description}}</p> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="wizard-column"> | ||
<h3>Or, Open a Saved Visualization</h3> | ||
<h3 class="wizard-sub-title">Or, Open a Saved Visualization</h3> | ||
<saved-object-finder | ||
title="Saved Visualizations" | ||
type="visualizations" | ||
class="wizard-row"> | ||
</saved-object-finder> | ||
class="wizard-row" | ||
></saved-object-finder> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<bread-crumbs></bread-crumbs> | ||
<div class="wizard"> | ||
<div class="wizard-small wizard-column"> | ||
<h3>From a New Search, Select Index</h3> | ||
<div class="wizard-column wizard-column--small"> | ||
<h3 class="wizard-sub-title">From a New Search, Select Index</h3> | ||
<paginated-selectable-list | ||
per-page="20" | ||
list="indexPattern.list" | ||
user-make-url="makeUrl" | ||
class="wizard-row"> | ||
</paginated-selectable-list> | ||
class="wizard-row" | ||
></paginated-selectable-list> | ||
</div> | ||
<div class="wizard-large wizard-column"> | ||
<h3>Or, From a Saved Search</h3> | ||
<div class="wizard-column wizard-column--large"> | ||
<h3 class="wizard-sub-title">Or, From a Saved Search</h3> | ||
<!-- Saved searches --> | ||
<saved-object-finder | ||
title="Saved Searches" | ||
type="searches" | ||
class="wizard-row" | ||
make-url="step2WithSearchUrl"> | ||
</saved-object-finder> | ||
make-url="step2WithSearchUrl" | ||
></saved-object-finder> | ||
</div> | ||
</div> |