mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* change recently accessed header to h3 to be more accessible * change recently accessed header to h3 to be more accessible
This commit is contained in:
parent
a9083312a8
commit
9ea342ffa7
2 changed files with 10 additions and 9 deletions
|
@ -6,17 +6,17 @@ exports[`render 1`] = `
|
||||||
hasShadow={false}
|
hasShadow={false}
|
||||||
paddingSize="l"
|
paddingSize="l"
|
||||||
>
|
>
|
||||||
<EuiText
|
<EuiTitle
|
||||||
grow={true}
|
size="xs"
|
||||||
>
|
>
|
||||||
<p>
|
<h3>
|
||||||
<EuiTextColor
|
<EuiTextColor
|
||||||
color="subdued"
|
color="subdued"
|
||||||
>
|
>
|
||||||
Recently viewed
|
Recently viewed
|
||||||
</EuiTextColor>
|
</EuiTextColor>
|
||||||
</p>
|
</h3>
|
||||||
</EuiText>
|
</EuiTitle>
|
||||||
<EuiSpacer
|
<EuiSpacer
|
||||||
size="s"
|
size="s"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -13,6 +13,7 @@ import {
|
||||||
EuiIcon,
|
EuiIcon,
|
||||||
EuiSpacer,
|
EuiSpacer,
|
||||||
EuiToolTip,
|
EuiToolTip,
|
||||||
|
EuiTitle,
|
||||||
} from '@elastic/eui';
|
} from '@elastic/eui';
|
||||||
|
|
||||||
export const NUM_LONG_LINKS = 5;
|
export const NUM_LONG_LINKS = 5;
|
||||||
|
@ -174,13 +175,13 @@ export class RecentlyAccessed extends Component {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<EuiPanel paddingSize="l">
|
<EuiPanel paddingSize="l">
|
||||||
<EuiText>
|
<EuiTitle size="xs">
|
||||||
<p>
|
<h3>
|
||||||
<EuiTextColor color="subdued">
|
<EuiTextColor color="subdued">
|
||||||
Recently viewed
|
Recently viewed
|
||||||
</EuiTextColor>
|
</EuiTextColor>
|
||||||
</p>
|
</h3>
|
||||||
</EuiText>
|
</EuiTitle>
|
||||||
|
|
||||||
<EuiSpacer size="s"/>
|
<EuiSpacer size="s"/>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue