-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into cross_cluster_search
- Loading branch information
Showing
48 changed files
with
1,088 additions
and
328 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
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
2 changes: 2 additions & 0 deletions
2
...ipelines/public/application/components/pipeline_processors_editor/components/_shared.scss
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,2 @@ | ||
$dropZoneZIndex: 1; /* Prevent the next item down from obscuring the button */ | ||
$cancelButtonZIndex: 2; |
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
50 changes: 45 additions & 5 deletions
50
...rs_editor/components/pipeline_processors_editor_item/pipeline_processors_editor_item.scss
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,17 +1,57 @@ | ||
@import '../shared'; | ||
|
||
.pipelineProcessorsEditor__item { | ||
transition: border-color 1s; | ||
min-height: 50px; | ||
&--selected { | ||
border: 1px solid $euiColorPrimary; | ||
} | ||
|
||
&--displayNone { | ||
display: none; | ||
} | ||
|
||
&--dimmed { | ||
box-shadow: none; | ||
} | ||
|
||
// Remove the box-shadow on all nested items | ||
.pipelineProcessorsEditor__item { | ||
box-shadow: none !important; | ||
} | ||
|
||
&__processorTypeLabel { | ||
line-height: $euiButtonHeightSmall; | ||
} | ||
|
||
&__textContainer { | ||
padding: 4px; | ||
border-radius: 2px; | ||
|
||
transition: border-color .3s; | ||
border: 2px solid #FFF; | ||
transition: border-color 0.3s; | ||
border: 2px solid transparent; | ||
|
||
&:hover { | ||
border: 2px solid $euiColorLightShade; | ||
&--notEditing { | ||
&:hover { | ||
border: 2px solid $euiColorLightShade; | ||
} | ||
} | ||
} | ||
|
||
&__description { | ||
overflow-x: hidden; | ||
white-space: nowrap; | ||
text-overflow: ellipsis; | ||
max-width: 600px; | ||
} | ||
|
||
&__textInput { | ||
height: 21px; | ||
min-width: 100px; | ||
min-width: 150px; | ||
} | ||
|
||
&__cancelMoveButton { | ||
// Ensure that the cancel button is above the drop zones | ||
z-index: $cancelButtonZIndex; | ||
} | ||
} |
Oops, something went wrong.