-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the context size display editable
- Loading branch information
1 parent
b2db703
commit c3d7459
Showing
3 changed files
with
39 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
@import "~ui/styles/variables.less"; | ||
|
||
// This should be moved to the kibana ui framework code as soon as it has been | ||
// integrated into the kibana repo. See elastic/kibana#8867 for the status. | ||
.localMenuItem__input--inPlace { | ||
appearance: textfield; | ||
background: transparent; | ||
border: 0; | ||
border-bottom: 1px dashed; | ||
display: block; | ||
margin-right: 5px; | ||
outline: none; | ||
padding-left: 0; | ||
padding-right: 0; | ||
text-align: center; | ||
width: 2em; | ||
|
||
&::-webkit-outer-spin-button, | ||
&::-webkit-inner-spin-button { | ||
appearance: none; | ||
margin: 0; | ||
} | ||
|
||
&:focus { | ||
background-color: @kibanaGray6; | ||
} | ||
} |