From 06286a63bf3bbd5c4ad7af7ace2c294f9042efe8 Mon Sep 17 00:00:00 2001 From: Victor Korzunin Date: Sat, 18 Feb 2017 23:56:27 +0500 Subject: [PATCH 1/2] Fix incorrect .radio-inner width/height calculation --- src/components/radio/radio.md.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/radio/radio.md.scss b/src/components/radio/radio.md.scss index fcbcb093c38..fb850ad7300 100644 --- a/src/components/radio/radio.md.scss +++ b/src/components/radio/radio.md.scss @@ -75,8 +75,8 @@ $radio-md-item-right-margin: $item-md-padding-media-top 10px $item-md-paddi top: $radio-md-icon-border-width; left: $radio-md-icon-border-width; - width: $radio-md-icon-width / 2; - height: $radio-md-icon-height / 2; + width: $radio-md-icon-width - 8; + height: $radio-md-icon-height - 8; border-radius: 50%; background-color: $radio-md-color-on; From a4d0984f8a735828944586ddd0697b39434c0e20 Mon Sep 17 00:00:00 2001 From: Victor Korzunin Date: Sun, 19 Feb 2017 00:26:48 +0500 Subject: [PATCH 2/2] Add additional fix to the .radio-inner width/height calculation of the android radio button icon --- src/components/radio/radio.md.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/radio/radio.md.scss b/src/components/radio/radio.md.scss index fb850ad7300..91f231fd844 100644 --- a/src/components/radio/radio.md.scss +++ b/src/components/radio/radio.md.scss @@ -75,8 +75,8 @@ $radio-md-item-right-margin: $item-md-padding-media-top 10px $item-md-paddi top: $radio-md-icon-border-width; left: $radio-md-icon-border-width; - width: $radio-md-icon-width - 8; - height: $radio-md-icon-height - 8; + width: $radio-md-icon-width - $radio-md-icon-border-width * 4; + height: $radio-md-icon-height - $radio-md-icon-border-width * 4; border-radius: 50%; background-color: $radio-md-color-on;