-
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 suggestions popover charts instead of pushing the down. - Align controls to top of expression input if the textarea is resized to be tall.- Tweak interval styles to look nice.
- Loading branch information
Showing
12 changed files
with
64 additions
and
32 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
1 change: 1 addition & 0 deletions
1
...on/public/directives/timelion_expression_suggestions/timelion_expression_suggestions.html
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
12 changes: 5 additions & 7 deletions
12
src/core_plugins/timelion/public/directives/timelion_interval/timelion_interval.html
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 |
---|---|---|
@@ -1,14 +1,12 @@ | ||
<input | ||
input-focus | ||
class="kuiTextInput" | ||
class="kuiTextInput timelion-interval-custom" | ||
ng-show="interval === 'other'" | ||
ng-class="{'timelion-interval-custom ': inHeader}" | ||
ng-class="{ 'timelion-interval-custom-compact': interval === 'other' }" | ||
ng-model="otherInterval" | ||
> | ||
|
||
<select | ||
class="timelion-interval-presets kuiSelect" | ||
><select | ||
class="kuiSelect timelion-interval-presets" | ||
ng-options="intervalOption for intervalOption in intervalOptions" | ||
ng-class="{'timelion-interval-presets-compact': interval === 'other'}" | ||
ng-class="{ 'timelion-interval-presets-compact': interval === 'other' }" | ||
ng-model="interval" | ||
></select> |
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 |
---|---|---|
|
@@ -34,4 +34,9 @@ | |
margin-bottom: 0px; | ||
} | ||
} | ||
|
||
&.suggestions-isPopover { | ||
position: absolute; | ||
top: 100%; | ||
} | ||
} |
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
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