Removed some uncessary stuff

This commit is contained in:
Max Lynch
2013-09-27 16:24:15 -05:00
parent 6ae07b1556
commit fe7bef2e81
7 changed files with 24 additions and 23 deletions

4
dist/ionic-ios7.css vendored
View File

@ -372,8 +372,8 @@ body {
.platform-ios7 .bar {
height: 64px; }
.platform-ios7 .bar .title {
line-height: 84px; }
.platform-ios7 .bar > * {
margin-top: 20px; }
.platform-ios7 .has-header {
top: 64px; }

14
dist/ionic.css vendored
View File

@ -370,13 +370,6 @@ body {
background-color: #fff;
-webkit-overflow-scrolling: touch; }
.platform-ios7 .bar {
height: 64px; }
.platform-ios7 .bar .title {
line-height: 84px; }
.platform-ios7 .has-header {
top: 64px; }
.padded {
padding: 10px; }
@ -2244,3 +2237,10 @@ a.button {
.slide-in-up.leave-active {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0); }
.platform-ios7 .bar {
height: 64px; }
.platform-ios7 .bar > * {
margin-top: 20px; }
.platform-ios7 .has-header {
top: 64px; }

2
dist/ionic.js vendored
View File

@ -10,7 +10,7 @@ window.ionic = {
detect: function() {
var platforms = [];
var platform = this._checkPlatforms(platforms);
this._checkPlatforms(platforms);
for(var i = 0; i < platforms.length; i++) {
document.body.classList.add('platform-' + platforms[i]);

14
dist/ionicIcons.css vendored
View File

@ -440,13 +440,6 @@ body {
background-color: #fff;
-webkit-overflow-scrolling: touch; }
.platform-ios7 .bar {
height: 64px; }
.platform-ios7 .bar .title {
line-height: 84px; }
.platform-ios7 .has-header {
top: 64px; }
.padded {
padding: 10px; }
@ -2314,3 +2307,10 @@ a.button {
.slide-in-up.leave-active {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0); }
.platform-ios7 .bar {
height: 64px; }
.platform-ios7 .bar > * {
margin-top: 20px; }
.platform-ios7 .has-header {
top: 64px; }

View File

@ -4,7 +4,7 @@
detect: function() {
var platforms = [];
var platform = this._checkPlatforms(platforms);
this._checkPlatforms(platforms);
for(var i = 0; i < platforms.length; i++) {
document.body.classList.add('platform-' + platforms[i]);

View File

@ -1,9 +1,9 @@
.platform-ios7 {
.bar {
height: 64px;
height: 64px;
.title {
line-height: 84px;
> * {
margin-top: 20px;
}
}

View File

@ -8,7 +8,6 @@
// Base
"reset",
"scaffolding",
"platform",
"util",
"grid",
"type",
@ -37,4 +36,6 @@
"card",
// Animations
"animations";
"animations",
"platform";