From 210e8feae2fb4842bfb2de38666e6c41671fef3c Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Wed, 27 Sep 2017 12:42:48 -0400 Subject: removed lib --- www/lib/ionic/scss/_select.scss | 142 ---------------------------------------- 1 file changed, 142 deletions(-) delete mode 100644 www/lib/ionic/scss/_select.scss (limited to 'www/lib/ionic/scss/_select.scss') diff --git a/www/lib/ionic/scss/_select.scss b/www/lib/ionic/scss/_select.scss deleted file mode 100644 index 02efaff6..00000000 --- a/www/lib/ionic/scss/_select.scss +++ /dev/null @@ -1,142 +0,0 @@ - -/** - * Select - * -------------------------------------------------- - */ - -.item-select { - position: relative; - - select { - @include appearance(none); - position: absolute; - top: 0; - bottom: 0; - right: 0; - padding: 0 ($item-padding * 3) 0 $item-padding; - max-width: 65%; - - border: none; - background: $item-default-bg; - color: #333; - - // hack to hide default dropdown arrow in FF - text-indent: .01px; - text-overflow: ''; - - white-space: nowrap; - font-size: $font-size-base; - - cursor: pointer; - direction: rtl; // right align the select text - } - - select::-ms-expand { - // hide default dropdown arrow in IE - display: none; - } - - option { - direction: ltr; - } - - &:after { - position: absolute; - top: 50%; - right: $item-padding; - margin-top: -3px; - width: 0; - height: 0; - border-top: 5px solid; - border-right: 5px solid rgba(0, 0, 0, 0); - border-left: 5px solid rgba(0, 0, 0, 0); - color: #999; - content: ""; - pointer-events: none; - } - &.item-light { - select{ - background:$item-light-bg; - color:$item-light-text; - } - } - &.item-stable { - select{ - background:$item-stable-bg; - color:$item-stable-text; - } - &:after, .input-label{ - color:darken($item-stable-border,30%); - } - } - &.item-positive { - select{ - background:$item-positive-bg; - color:$item-positive-text; - } - &:after, .input-label{ - color:$item-positive-text; - } - } - &.item-calm { - select{ - background:$item-calm-bg; - color:$item-calm-text; - } - &:after, .input-label{ - color:$item-calm-text; - } - } - &.item-assertive { - select{ - background:$item-assertive-bg; - color:$item-assertive-text; - } - &:after, .input-label{ - color:$item-assertive-text; - } - } - &.item-balanced { - select{ - background:$item-balanced-bg; - color:$item-balanced-text; - } - &:after, .input-label{ - color:$item-balanced-text; - } - } - &.item-energized { - select{ - background:$item-energized-bg; - color:$item-energized-text; - } - &:after, .input-label{ - color:$item-energized-text; - } - } - &.item-royal { - select{ - background:$item-royal-bg; - color:$item-royal-text; - } - &:after, .input-label{ - color:$item-royal-text; - } - } - &.item-dark { - select{ - background:$item-dark-bg; - color:$item-dark-text; - } - &:after, .input-label{ - color:$item-dark-text; - } - } -} - -select { - &[multiple], - &[size] { - height: auto; - } -} -- cgit v1.2.3