summaryrefslogtreecommitdiff
path: root/www/lib/ionic/scss/_radio.scss
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
committerPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
commit210e8feae2fb4842bfb2de38666e6c41671fef3c (patch)
treecbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/ionic/scss/_radio.scss
parente7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff)
removed lib
Diffstat (limited to 'www/lib/ionic/scss/_radio.scss')
-rw-r--r--www/lib/ionic/scss/_radio.scss47
1 files changed, 0 insertions, 47 deletions
diff --git a/www/lib/ionic/scss/_radio.scss b/www/lib/ionic/scss/_radio.scss
deleted file mode 100644
index fa401c06..00000000
--- a/www/lib/ionic/scss/_radio.scss
+++ /dev/null
@@ -1,47 +0,0 @@
-
-/**
- * Radio Button Inputs
- * --------------------------------------------------
- */
-
-.item-radio {
- padding: 0;
-
- &:hover {
- cursor: pointer;
- }
-}
-
-.item-radio .item-content {
- /* give some room to the right for the checkmark icon */
- padding-right: $item-padding * 4;
-}
-
-.item-radio .radio-icon {
- /* checkmark icon will be hidden by default */
- position: absolute;
- top: 0;
- right: 0;
- z-index: $z-index-item-radio;
- visibility: hidden;
- padding: $item-padding - 2;
- height: 100%;
- font-size: 24px;
-}
-
-.item-radio input {
- /* hide any radio button inputs elements (the ugly circles) */
- position: absolute;
- left: -9999px;
-
- &:checked + .radio-content .item-content {
- /* style the item content when its checked */
- background: #f7f7f7;
- }
-
- &:checked + .radio-content .radio-icon {
- /* show the checkmark icon when its checked */
- visibility: visible;
- }
-}
-