mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Rename NoResults and LoadingResults to NoItems and LoadingItems.
This commit is contained in:
parent
d758fed76a
commit
ad390b01e9
11 changed files with 13 additions and 13 deletions
|
@ -103,7 +103,7 @@
|
|||
|
||||
<!-- NoResults -->
|
||||
<div class="kuiPanel kuiPanel--centered" ng-if="!service.data.length">
|
||||
<div class="kuiNoResults">
|
||||
<div class="kuiNoItems">
|
||||
No {{service.title}} matched your search.
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -100,10 +100,10 @@ body {
|
|||
@import "icon/index";
|
||||
@import "info_panel/index";
|
||||
@import "link/index";
|
||||
@import "loading_results/index";
|
||||
@import "loading_items/index";
|
||||
@import "local_nav/index";
|
||||
@import "micro_button/index";
|
||||
@import "no_results/index";
|
||||
@import "no_items/index";
|
||||
@import "panel/index";
|
||||
@import "table/index";
|
||||
@import "tabs/index";
|
||||
|
|
1
src/ui_framework/components/loading_items/_index.scss
Normal file
1
src/ui_framework/components/loading_items/_index.scss
Normal file
|
@ -0,0 +1 @@
|
|||
@import "loading_items";
|
|
@ -1,4 +1,4 @@
|
|||
.kuiLoadingResults {
|
||||
.kuiLoadingItems {
|
||||
padding: 30px;
|
||||
font-size: 18px;
|
||||
color: $subduedFontColor;
|
|
@ -1 +0,0 @@
|
|||
@import "loading_results";
|
1
src/ui_framework/components/no_items/_index.scss
Normal file
1
src/ui_framework/components/no_items/_index.scss
Normal file
|
@ -0,0 +1 @@
|
|||
@import "no_items";
|
|
@ -1,4 +1,4 @@
|
|||
.kuiNoResults {
|
||||
.kuiNoItems {
|
||||
padding: 30px;
|
||||
font-size: 18px;
|
||||
color: $subduedFontColor;
|
|
@ -1 +0,0 @@
|
|||
@import "no_results";
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
<!-- LoadingResults -->
|
||||
<div class="kuiPanel kuiPanel--centered">
|
||||
<div class="kuiLoadingResults">
|
||||
<div class="kuiLoadingItems">
|
||||
Loading…
|
||||
</div>
|
||||
</div>
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
<!-- NoResults -->
|
||||
<div class="kuiPanel kuiPanel--centered">
|
||||
<div class="kuiNoResults">
|
||||
<div class="kuiNoItems">
|
||||
No Items matched your search.
|
||||
</div>
|
||||
</div>
|
|
@ -14,11 +14,11 @@ export default createExample([{
|
|||
html: require('./controlled_table.html'),
|
||||
hasDarkTheme: false,
|
||||
}, {
|
||||
title: 'ControlledTable with LoadingResults',
|
||||
html: require('./controlled_table_loading_results.html'),
|
||||
title: 'ControlledTable with LoadingItems',
|
||||
html: require('./controlled_table_loading_items.html'),
|
||||
hasDarkTheme: false,
|
||||
}, {
|
||||
title: 'ControlledTable with NoResults',
|
||||
html: require('./controlled_table_no_results.html'),
|
||||
title: 'ControlledTable with NoItems',
|
||||
html: require('./controlled_table_no_items.html'),
|
||||
hasDarkTheme: false,
|
||||
}]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue