diff --git a/x-pack/legacy/plugins/upgrade_assistant/public/np_ready/application/components/tabs/checkup/deprecations/_deprecations.scss b/x-pack/legacy/plugins/upgrade_assistant/public/np_ready/application/components/tabs/checkup/deprecations/_deprecations.scss new file mode 100644 index 00000000000000..445ef6269afb93 --- /dev/null +++ b/x-pack/legacy/plugins/upgrade_assistant/public/np_ready/application/components/tabs/checkup/deprecations/_deprecations.scss @@ -0,0 +1,18 @@ +.upgDeprecations { + // Pull the container through the padding of EuiPageContent + margin-left: -$euiSizeL; + margin-right: -$euiSizeL; +} + +.upgDeprecations__item { + padding: $euiSize $euiSizeL; + border-top: $euiBorderThin; + + &:last-of-type { + margin-bottom: -$euiSizeL; + } +} + +.upgDeprecations__itemName { + font-weight: $euiFontWeightMedium; +} diff --git a/x-pack/legacy/plugins/upgrade_assistant/public/np_ready/application/components/tabs/checkup/deprecations/_index.scss b/x-pack/legacy/plugins/upgrade_assistant/public/np_ready/application/components/tabs/checkup/deprecations/_index.scss index b8dfc93ee09c99..55aff6b379db54 100644 --- a/x-pack/legacy/plugins/upgrade_assistant/public/np_ready/application/components/tabs/checkup/deprecations/_index.scss +++ b/x-pack/legacy/plugins/upgrade_assistant/public/np_ready/application/components/tabs/checkup/deprecations/_index.scss @@ -1,21 +1,3 @@ @import 'cell'; +@import 'deprecations'; @import 'reindex/index'; - -.upgDeprecations { - // Pull the container through the padding of EuiPageContent - margin-left: -$euiSizeL; - margin-right: -$euiSizeL; -} - -.upgDeprecations__item { - padding: $euiSize $euiSizeL; - border-top: $euiBorderThin; - - &:last-of-type { - margin-bottom: -$euiSizeL; - } -} - -.upgDeprecations__itemName { - font-weight: $euiFontWeightMedium; -}