-
Notifications
You must be signed in to change notification settings - Fork 839
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
Single page pagination, button reset, table header sorting, codeblock styling #298
Changes from 4 commits
a81d156
618ba87
e6ca206
333ba8e
a926a07
d5047d3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,7 +75,8 @@ | |
display: inline-block; | ||
white-space: pre; | ||
color: $euiTextColor; | ||
font-size: 75%; // 1 | ||
font-size: 90%; // 1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like that it's still slightly smaller, but this is a much better scale. |
||
padding: 0 $euiSizeS; | ||
background: $euiColorLightestShade; | ||
|
||
.euiCodeBlock__pre { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,6 +99,7 @@ button { | |
color: inherit; | ||
font-size: inherit; | ||
border-radius: 0; | ||
text-align: left; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this have any ill cascading effects? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't in EUI, but it might in the nest of Kibana. I'm gonna move it over to |
||
|
||
&:hover { | ||
cursor: pointer; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you remove
vertical-align: middle
from.euiCodeBlock--inline
it will align it to the baseline.vs.