Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add background-color to pagination links. #7360

Merged
merged 1 commit into from
Jun 2, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/ui/public/styles/pagination.less
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ paginate {

a {
text-decoration: none;
background-color: @white;
background-color: @kibanaGray6;
margin-left: 2px;
padding: 8px 11px;
}
Expand All @@ -42,6 +42,7 @@ paginate {
text-decoration: none !important;
font-weight: bold;
color: @paginate-page-link-active-color;
cursor: default;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this here? one would thin you wouldn't need to set the the value to default.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typically these kinds of rules reset another rule that had set cursor: pointer

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops, you're right man. didn't realize/forgot default sets it to a regular cursor.

}
}
}
Expand Down