Skip to content

Commit

Permalink
fix button styling
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed Apr 27, 2018
1 parent dee99fb commit d3d49d6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ exports[`apmUiEnabled 1`] = `
description="APM automatically collects in-depth performance metrics and errors from inside your applications."
footer={
<EuiButton
className="addDataButton"
color="primary"
fill={false}
href="#/home/tutorial/apm"
Expand Down Expand Up @@ -79,6 +80,7 @@ exports[`apmUiEnabled 1`] = `
description="Ingest logs from popular data sources and easily visualize in preconfigured dashboards."
footer={
<EuiButton
className="addDataButton"
color="primary"
fill={false}
href="#/home/tutorial_directory/logging"
Expand Down Expand Up @@ -108,6 +110,7 @@ exports[`apmUiEnabled 1`] = `
description="Collect metrics from the operating system and services running on your servers."
footer={
<EuiButton
className="addDataButton"
color="primary"
fill={false}
href="#/home/tutorial_directory/metrics"
Expand Down Expand Up @@ -137,6 +140,7 @@ exports[`apmUiEnabled 1`] = `
description="Centralize security events for interactive investigation in ready-to-go visualizations."
footer={
<EuiButton
className="addDataButton"
color="primary"
fill={false}
href="#/home/tutorial_directory/security"
Expand Down Expand Up @@ -248,6 +252,7 @@ exports[`render 1`] = `
description="Ingest logs from popular data sources and easily visualize in preconfigured dashboards."
footer={
<EuiButton
className="addDataButton"
color="primary"
fill={false}
href="#/home/tutorial_directory/logging"
Expand Down Expand Up @@ -277,6 +282,7 @@ exports[`render 1`] = `
description="Collect metrics from the operating system and services running on your servers."
footer={
<EuiButton
className="addDataButton"
color="primary"
fill={false}
href="#/home/tutorial_directory/metrics"
Expand Down Expand Up @@ -306,6 +312,7 @@ exports[`render 1`] = `
description="Centralize security events for interactive investigation in ready-to-go visualizations."
footer={
<EuiButton
className="addDataButton"
color="primary"
fill={false}
href="#/home/tutorial_directory/security"
Expand Down
5 changes: 4 additions & 1 deletion src/core_plugins/kibana/public/home/components/add_data.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import './add_data.less';
import './recently_accessed.less';
import React from 'react';
import PropTypes from 'prop-types';

Expand Down Expand Up @@ -28,6 +27,7 @@ export function AddData({ apmUiEnabled }) {
description="APM automatically collects in-depth performance metrics and errors from inside your applications."
footer={
<EuiButton
className="addDataButton"
href="#/home/tutorial/apm"
>
Add APM
Expand All @@ -50,6 +50,7 @@ export function AddData({ apmUiEnabled }) {
description="Ingest logs from popular data sources and easily visualize in preconfigured dashboards."
footer={
<EuiButton
className="addDataButton"
href="#/home/tutorial_directory/logging"
>
Add log data
Expand All @@ -66,6 +67,7 @@ export function AddData({ apmUiEnabled }) {
description="Collect metrics from the operating system and services running on your servers."
footer={
<EuiButton
className="addDataButton"
href="#/home/tutorial_directory/metrics"
>
Add metric data
Expand All @@ -82,6 +84,7 @@ export function AddData({ apmUiEnabled }) {
description="Centralize security events for interactive investigation in ready-to-go visualizations."
footer={
<EuiButton
className="addDataButton"
href="#/home/tutorial_directory/security"
>
Add security events
Expand Down
4 changes: 4 additions & 0 deletions src/core_plugins/kibana/public/home/components/add_data.less
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@
width: 64px;
height: 64px;
}

.addDataButton {
line-height: normal;
}

0 comments on commit d3d49d6

Please sign in to comment.