-
Notifications
You must be signed in to change notification settings - Fork 894
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Update content and styling of use case getting started cards (#8614
) * fix: Update content and styling of use case getting started cards Signed-off-by: Viraj Sanghvi <[email protected]> * Changeset file for PR #8614 created/updated * update tests Signed-off-by: Viraj Sanghvi <[email protected]> --------- Signed-off-by: Viraj Sanghvi <[email protected]> Co-authored-by: opensearch-changeset-bot[bot] <154024398+opensearch-changeset-bot[bot]@users.noreply.github.com> (cherry picked from commit 95b0a58) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
e4133db
commit 9f955ec
Showing
9 changed files
with
154 additions
and
146 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
fix: | ||
- Update content and styling of use case getting started cards ([#8614](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/8614)) |
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
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
25 changes: 23 additions & 2 deletions
25
src/plugins/workspace/public/components/use_case_overview/setup_overview.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,3 +1,24 @@ | ||
.analyticsGettingStartedWorkspaceCardsIcon { | ||
color: $euiColorMediumShade; | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
.usecaseOverviewGettingStartedCard { | ||
// Hide titles as they take up space even when empty | ||
// stylelint-disable-next-line @osd/stylelint/no_modifying_global_selectors | ||
.euiCard__title { | ||
display: none; | ||
} | ||
|
||
// Remove margins from description as titles are hidden and icons as they're at the top | ||
// stylelint-disable-next-line @osd/stylelint/no_modifying_global_selectors | ||
.euiCard__description, | ||
.euiCard__icon { | ||
margin-top: 0; | ||
} | ||
|
||
// stylelint-disable-next-line @osd/stylelint/no_modifying_global_selectors | ||
.euiCard__footer { | ||
margin-top: $euiSizeS; | ||
} | ||
} |
Oops, something went wrong.