mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Add LoadingResults component.
This commit is contained in:
parent
ac35cdc255
commit
d758fed76a
5 changed files with 82 additions and 0 deletions
|
@ -100,6 +100,7 @@ body {
|
|||
@import "icon/index";
|
||||
@import "info_panel/index";
|
||||
@import "link/index";
|
||||
@import "loading_results/index";
|
||||
@import "local_nav/index";
|
||||
@import "micro_button/index";
|
||||
@import "no_results/index";
|
||||
|
|
1
src/ui_framework/components/loading_results/_index.scss
Normal file
1
src/ui_framework/components/loading_results/_index.scss
Normal file
|
@ -0,0 +1 @@
|
|||
@import "loading_results";
|
|
@ -0,0 +1,6 @@
|
|||
.kuiLoadingResults {
|
||||
padding: 30px;
|
||||
font-size: 18px;
|
||||
color: $subduedFontColor;
|
||||
line-height: $lineHeight;
|
||||
}
|
|
@ -0,0 +1,70 @@
|
|||
<div class="kuiControlledTable">
|
||||
<!-- ToolBar -->
|
||||
<div class="kuiToolBar">
|
||||
<div class="kuiToolBarSearch">
|
||||
<div class="kuiToolBarSearchBox">
|
||||
<div class="kuiToolBarSearchBox__icon kuiIcon fa-search"></div>
|
||||
<input
|
||||
class="kuiToolBarSearchBox__input"
|
||||
type="text"
|
||||
placeholder="Search..."
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="kuiToolBarSection">
|
||||
<button class="kuiButton kuiButton--primary">
|
||||
Add
|
||||
</button>
|
||||
|
||||
<button class="kuiButton kuiButton--basic kuiButton--icon">
|
||||
<span class="kuiButton__icon kuiIcon fa-gear"></span>
|
||||
</button>
|
||||
|
||||
<button class="kuiButton kuiButton--basic kuiButton--icon">
|
||||
<span class="kuiButton__icon kuiIcon fa-bars"></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="kuiToolBarSection">
|
||||
<div class="kuiToolBarText">
|
||||
0 of 33
|
||||
</div>
|
||||
|
||||
<div class="kuiButtonGroup kuiButtonGroup--united">
|
||||
<button class="kuiButton kuiButton--basic kuiButton--icon">
|
||||
<span class="kuiButton__icon kuiIcon fa-chevron-left"></span>
|
||||
</button>
|
||||
<button class="kuiButton kuiButton--basic kuiButton--icon">
|
||||
<span class="kuiButton__icon kuiIcon fa-chevron-right"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- LoadingResults -->
|
||||
<div class="kuiPanel kuiPanel--centered">
|
||||
<div class="kuiLoadingResults">
|
||||
Loading…
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- ToolBarFooter -->
|
||||
<div class="kuiToolBarFooter">
|
||||
<div class="kuiToolBarFooterSection">
|
||||
<div class="kuiToolBarText">
|
||||
0 of 33
|
||||
</div>
|
||||
|
||||
<div class="kuiButtonGroup kuiButtonGroup--united">
|
||||
<button class="kuiButton kuiButton--basic kuiButton--icon">
|
||||
<span class="kuiButton__icon kuiIcon fa-chevron-left"></span>
|
||||
</button>
|
||||
<button class="kuiButton kuiButton--basic kuiButton--icon">
|
||||
<span class="kuiButton__icon kuiIcon fa-chevron-right"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
|
@ -13,6 +13,10 @@ export default createExample([{
|
|||
title: 'ControlledTable',
|
||||
html: require('./controlled_table.html'),
|
||||
hasDarkTheme: false,
|
||||
}, {
|
||||
title: 'ControlledTable with LoadingResults',
|
||||
html: require('./controlled_table_loading_results.html'),
|
||||
hasDarkTheme: false,
|
||||
}, {
|
||||
title: 'ControlledTable with NoResults',
|
||||
html: require('./controlled_table_no_results.html'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue