diff --git a/dist/css/ionic.css b/dist/css/ionic.css index 6ff9c316c9..740e0c6019 100644 --- a/dist/css/ionic.css +++ b/dist/css/ionic.css @@ -4956,36 +4956,6 @@ a.button { .fill-icon.ion-gray-lighter:before { background: #eeeeee; } -.ion-loading { - font-family: 'Ionicons'; - speak: none; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-animation: spin .75s linear infinite; - -moz-animation: spin .75s linear infinite; - animation: spin .75s linear infinite; } - .ion-loading:before { - content: "\e144"; } - -.ion-refreshing { - font-family: 'Ionicons'; - speak: none; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-animation: spin .75s linear infinite; - -moz-animation: spin .75s linear infinite; - animation: spin .75s linear infinite; } - .ion-refreshing:before { - content: "\e144"; } - /** * Util * -------------------------------------------------- diff --git a/scss/_icons.scss b/scss/_icons.scss index 1cfac4f4e3..2a8f591ce9 100644 --- a/scss/_icons.scss +++ b/scss/_icons.scss @@ -108,41 +108,3 @@ } } - -.ion-loading { - font-family: 'Ionicons'; - speak: none; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - - -webkit-animation:spin .75s linear infinite; - -moz-animation:spin .75s linear infinite; - animation:spin .75s linear infinite; - - &:before { - content: "\e144"; - } -} - -.ion-refreshing { - font-family: 'Ionicons'; - speak: none; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - - -webkit-animation:spin .75s linear infinite; - -moz-animation:spin .75s linear infinite; - animation:spin .75s linear infinite; - - &:before { - content: "\e144"; - } -}