-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
basic layout and scrolling now works
- Loading branch information
Showing
10 changed files
with
202 additions
and
265 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
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
16 changes: 6 additions & 10 deletions
16
...core_plugins/kibana/public/discover/np_ready/components/field_chooser/discover_field.html
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,26 +1,22 @@ | ||
<li | ||
class="sidebar-item" | ||
attr-field="{{::field.name}}" | ||
class="dscSidebarItem" | ||
> | ||
<div | ||
data-test-subj="field-{{::field.name}}" | ||
ng-click="onClickToggleDetails($event, field)" | ||
kbn-accessible-click | ||
class="sidebar-item-title dscSidebarItem" | ||
> | ||
<div class="dscField dscSidebarItem__label"> | ||
<field-name | ||
data-test-subj="field-{{::field.name}}" | ||
ng-click="onClickToggleDetails($event, field)" | ||
kbn-accessible-click | ||
field="field" | ||
></field-name> | ||
</div> | ||
|
||
<button | ||
ng-if="field.name !== '_source'" | ||
ng-click="toggleDisplay(field)" | ||
ng-class="::field.display ? 'kuiButton--danger' : 'kuiButton--primary'" | ||
ng-class="::field.display ? 'dscSidebarItem__action--remove' : 'dscSidebarItem__action--add'" | ||
ng-bind="::addRemoveButtonLabel" | ||
class="dscSidebarItem__action kuiButton kuiButton--small" | ||
class="dscSidebarItem__action" | ||
data-test-subj="fieldToggle-{{::field.name}}" | ||
></button> | ||
</div> | ||
</li> |
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.