Skip to content

Commit

Permalink
.ion-loading-a step(8, start) timing function
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Bradley committed Nov 25, 2013
1 parent 591f013 commit 98339df
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"test",
"tests"
],
"version": "1.3.5",
"version": "1.3.6",
"name": "Ionicons",
"license": "MIT",
"authors": [
Expand Down
4 changes: 2 additions & 2 deletions builder/build_data.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"build_hash": "6720df1d45ed6c6639c66a398bfbea55",
"build_hash": "86bb51843570cc8986fd6bd675c10071",
"prefix": "ion-",
"version": "1.3.5",
"version": "1.3.6",
"name": "Ionicons",
"icons": [
{
Expand Down
4 changes: 2 additions & 2 deletions builder/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"build_hash": "12febfa8c61b7232a63eed40ea673d0d",
"build_hash": "8db8ae6fbd314cd1b43058781ec5848f",
"prefix": "ion-",
"version": "1.3.5",
"version": "1.3.6",
"name": "Ionicons",
"icons": [
{
Expand Down
4 changes: 2 additions & 2 deletions cheatsheet.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Ionicons v1.3.5 Cheatsheet</title>
<title>Ionicons v1.3.6 Cheatsheet</title>
<style>
* {
-moz-box-sizing: border-box;
Expand Down Expand Up @@ -142,7 +142,7 @@
<body>
<div class="container">
<header>
<h1>Ionicons v1.3.5 Cheatsheet, 446 icons:</h1>
<h1>Ionicons v1.3.6 Cheatsheet, 446 icons:</h1>
<p><a href="http://ionicons.com/">Ionicons Homepage</a></p>
</header>
<div class="content">
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"repo": "driftyco/ionicons",
"development": {},
"version": "1.3.5",
"version": "1.3.6",
"styles": [
"css/ionicons.css"
],
Expand Down
11 changes: 8 additions & 3 deletions css/ionicons.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
Ionicons, v1.3.5
Ionicons, v1.3.6
Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
https://twitter.com/helloimben https://twitter.com/ionicframework
MIT License: https://github.com/driftyco/ionicons
*/
@font-face {
font-family: "Ionicons";
src: url("../fonts/ionicons.eot?v=1.3.5");
src: url("../fonts/ionicons.eot?v=1.3.5#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=1.3.5") format("truetype"), url("../fonts/ionicons.woff?v=1.3.5") format("woff"), url("../fonts/ionicons.svg?v=1.3.5#Ionicons") format("svg");
src: url("../fonts/ionicons.eot?v=1.3.6");
src: url("../fonts/ionicons.eot?v=1.3.6#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=1.3.6") format("truetype"), url("../fonts/ionicons.woff?v=1.3.6") format("woff"), url("../fonts/ionicons.svg?v=1.3.6#Ionicons") format("svg");
font-weight: normal;
font-style: normal; }

Expand Down Expand Up @@ -523,6 +523,11 @@
100% {
transform: rotate(359deg); } }

.ion-loading-a {
-webkit-animation-timing-function: steps(8, start);
-moz-animation-timing-function: steps(8, start);
animation-timing-function: steps(8, start); }

.ion-alert:before {
content: "\f101"; }

Expand Down
4 changes: 2 additions & 2 deletions css/ionicons.min.css

Large diffs are not rendered by default.

Binary file modified fonts/ionicons.eot
Binary file not shown.
4 changes: 2 additions & 2 deletions fonts/ionicons.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fonts/ionicons.ttf
Binary file not shown.
Binary file modified fonts/ionicons.woff
Binary file not shown.
6 changes: 6 additions & 0 deletions scss/_ionicons-animation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@
@extend .#{$ionicons-prefix}spin;
}

.#{$ionicons-prefix}loading-a {
-webkit-animation-timing-function: steps(8, start);
-moz-animation-timing-function: steps(8, start);
animation-timing-function: steps(8, start);
}

.#{$ionicons-prefix}loading-a:before {
@extend .#{$ionicons-prefix}load-a:before;
}
Expand Down
2 changes: 1 addition & 1 deletion scss/_ionicons-variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

$ionicons-font-path: "../fonts" !default;
$ionicons-font-family: "Ionicons" !default;
$ionicons-version: "1.3.5" !default;
$ionicons-version: "1.3.6" !default;
$ionicons-prefix: ion- !default;

$ionicon-var-alert: "\f101";
Expand Down

0 comments on commit 98339df

Please sign in to comment.