From 2c6bc062fd9b7e0492fca53f7cd02ff4c6a8d1b9 Mon Sep 17 00:00:00 2001 From: piensaenpixel Date: Mon, 20 Jun 2016 10:44:17 +0200 Subject: [PATCH 1/2] add disabled state --- src/scss/cdb-components/typography.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/scss/cdb-components/typography.scss b/src/scss/cdb-components/typography.scss index fd41fcb..5967433 100644 --- a/src/scss/cdb-components/typography.scss +++ b/src/scss/cdb-components/typography.scss @@ -65,3 +65,8 @@ .CDB-FontSize-medium { font-size: $sFontSize-medium; } + +.CDB-IconFont.is-disabled { + @include opacity(0.24); +} + From 9ad88d0127d03d51728d864d61578e6f363028e4 Mon Sep 17 00:00:00 2001 From: piensaenpixel Date: Mon, 20 Jun 2016 10:51:31 +0200 Subject: [PATCH 2/2] fix opacity --- src/scss/cdb-components/typography.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scss/cdb-components/typography.scss b/src/scss/cdb-components/typography.scss index 5967433..da42f33 100644 --- a/src/scss/cdb-components/typography.scss +++ b/src/scss/cdb-components/typography.scss @@ -67,6 +67,6 @@ } .CDB-IconFont.is-disabled { - @include opacity(0.24); + opacity: 0.24; }