From 530abb4ac8465d7fe94f14de06600f131b7ccd2f Mon Sep 17 00:00:00 2001 From: Ryan Mathis Date: Fri, 6 Sep 2019 10:59:46 -0700 Subject: [PATCH] SHIBUI-1407 comparison highlights --- .../metadata-configuration.component.scss | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ui/src/app/metadata/configuration/component/metadata-configuration.component.scss diff --git a/ui/src/app/metadata/configuration/component/metadata-configuration.component.scss b/ui/src/app/metadata/configuration/component/metadata-configuration.component.scss new file mode 100644 index 000000000..24b159af0 --- /dev/null +++ b/ui/src/app/metadata/configuration/component/metadata-configuration.component.scss @@ -0,0 +1,19 @@ +@import '../../../../theme/_palette'; + +:host /deep/ { + .bg-diff { + background: #FEE8E9; + position: relative; + &::before { + $size: 24px; + content: "\f06a"; + font-family: 'FontAwesome'; + text-align: center; + width: $size; + height: $size; + position: absolute; + left: -$size; + top: 0.5rem; + } + } +}