From baf7534870460015c194281ad98e1fef99911ef1 Mon Sep 17 00:00:00 2001 From: amzrk2 Date: Tue, 14 Apr 2020 20:58:19 +0800 Subject: Remove redundant Primer CSS --- assets/sass/@primer/css/forms/radio-group.scss | 43 -------------------------- 1 file changed, 43 deletions(-) delete mode 100644 assets/sass/@primer/css/forms/radio-group.scss (limited to 'assets/sass/@primer/css/forms/radio-group.scss') diff --git a/assets/sass/@primer/css/forms/radio-group.scss b/assets/sass/@primer/css/forms/radio-group.scss deleted file mode 100644 index fb6c0cd..0000000 --- a/assets/sass/@primer/css/forms/radio-group.scss +++ /dev/null @@ -1,43 +0,0 @@ -// Tab like radio group - -.radio-group { - @include clearfix; -} - -.radio-label { - float: left; - // stylelint-disable-next-line primer/spacing - padding: 6px $spacer-3 6px ($spacer-3 + 12px + $spacer-2); // 12px is the size of the radio-input - // stylelint-disable-next-line primer/spacing - margin-left: -1px; - font-size: $body-font-size; - // stylelint-disable-next-line primer/typography - line-height: 20px; // Specifically not inherit our `` default - color: $text-gray-dark; - cursor: pointer; - border: $border-width $border-style $border-gray-dark; - - :checked + & { - position: relative; - z-index: 1; - border-color: $border-blue; - } - - &:first-of-type { - margin-left: 0; - border-top-left-radius: $border-radius; - border-bottom-left-radius: $border-radius; - } - - &:last-of-type { - border-top-right-radius: $border-radius; - border-bottom-right-radius: $border-radius; - } -} - -.radio-input { - z-index: 3; - float: left; - // stylelint-disable-next-line primer/spacing - margin: 10px (-$spacer-5) 0 $spacer-3; -} -- cgit v1.2.3