mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
Removed some uncessary stuff
This commit is contained in:
4
dist/ionic-ios7.css
vendored
4
dist/ionic-ios7.css
vendored
@ -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
14
dist/ionic.css
vendored
@ -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
2
dist/ionic.js
vendored
@ -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
14
dist/ionicIcons.css
vendored
@ -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; }
|
||||
|
||||
@ -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]);
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
.platform-ios7 {
|
||||
.bar {
|
||||
height: 64px;
|
||||
height: 64px;
|
||||
|
||||
.title {
|
||||
line-height: 84px;
|
||||
> * {
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -8,7 +8,6 @@
|
||||
// Base
|
||||
"reset",
|
||||
"scaffolding",
|
||||
"platform",
|
||||
"util",
|
||||
"grid",
|
||||
"type",
|
||||
@ -37,4 +36,6 @@
|
||||
"card",
|
||||
|
||||
// Animations
|
||||
"animations";
|
||||
"animations",
|
||||
|
||||
"platform";
|
||||
|
||||
Reference in New Issue
Block a user