mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 15:07:13 +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 {
|
.platform-ios7 .bar {
|
||||||
height: 64px; }
|
height: 64px; }
|
||||||
.platform-ios7 .bar .title {
|
.platform-ios7 .bar > * {
|
||||||
line-height: 84px; }
|
margin-top: 20px; }
|
||||||
.platform-ios7 .has-header {
|
.platform-ios7 .has-header {
|
||||||
top: 64px; }
|
top: 64px; }
|
||||||
|
|
||||||
|
|||||||
14
dist/ionic.css
vendored
14
dist/ionic.css
vendored
@ -370,13 +370,6 @@ body {
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
-webkit-overflow-scrolling: touch; }
|
-webkit-overflow-scrolling: touch; }
|
||||||
|
|
||||||
.platform-ios7 .bar {
|
|
||||||
height: 64px; }
|
|
||||||
.platform-ios7 .bar .title {
|
|
||||||
line-height: 84px; }
|
|
||||||
.platform-ios7 .has-header {
|
|
||||||
top: 64px; }
|
|
||||||
|
|
||||||
.padded {
|
.padded {
|
||||||
padding: 10px; }
|
padding: 10px; }
|
||||||
|
|
||||||
@ -2244,3 +2237,10 @@ a.button {
|
|||||||
.slide-in-up.leave-active {
|
.slide-in-up.leave-active {
|
||||||
-webkit-transform: translate3d(0, 100%, 0);
|
-webkit-transform: translate3d(0, 100%, 0);
|
||||||
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() {
|
detect: function() {
|
||||||
var platforms = [];
|
var platforms = [];
|
||||||
|
|
||||||
var platform = this._checkPlatforms(platforms);
|
this._checkPlatforms(platforms);
|
||||||
|
|
||||||
for(var i = 0; i < platforms.length; i++) {
|
for(var i = 0; i < platforms.length; i++) {
|
||||||
document.body.classList.add('platform-' + platforms[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;
|
background-color: #fff;
|
||||||
-webkit-overflow-scrolling: touch; }
|
-webkit-overflow-scrolling: touch; }
|
||||||
|
|
||||||
.platform-ios7 .bar {
|
|
||||||
height: 64px; }
|
|
||||||
.platform-ios7 .bar .title {
|
|
||||||
line-height: 84px; }
|
|
||||||
.platform-ios7 .has-header {
|
|
||||||
top: 64px; }
|
|
||||||
|
|
||||||
.padded {
|
.padded {
|
||||||
padding: 10px; }
|
padding: 10px; }
|
||||||
|
|
||||||
@ -2314,3 +2307,10 @@ a.button {
|
|||||||
.slide-in-up.leave-active {
|
.slide-in-up.leave-active {
|
||||||
-webkit-transform: translate3d(0, 100%, 0);
|
-webkit-transform: translate3d(0, 100%, 0);
|
||||||
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() {
|
detect: function() {
|
||||||
var platforms = [];
|
var platforms = [];
|
||||||
|
|
||||||
var platform = this._checkPlatforms(platforms);
|
this._checkPlatforms(platforms);
|
||||||
|
|
||||||
for(var i = 0; i < platforms.length; i++) {
|
for(var i = 0; i < platforms.length; i++) {
|
||||||
document.body.classList.add('platform-' + platforms[i]);
|
document.body.classList.add('platform-' + platforms[i]);
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
.platform-ios7 {
|
.platform-ios7 {
|
||||||
.bar {
|
.bar {
|
||||||
height: 64px;
|
height: 64px;
|
||||||
|
|
||||||
.title {
|
> * {
|
||||||
line-height: 84px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,6 @@
|
|||||||
// Base
|
// Base
|
||||||
"reset",
|
"reset",
|
||||||
"scaffolding",
|
"scaffolding",
|
||||||
"platform",
|
|
||||||
"util",
|
"util",
|
||||||
"grid",
|
"grid",
|
||||||
"type",
|
"type",
|
||||||
@ -37,4 +36,6 @@
|
|||||||
"card",
|
"card",
|
||||||
|
|
||||||
// Animations
|
// Animations
|
||||||
"animations";
|
"animations",
|
||||||
|
|
||||||
|
"platform";
|
||||||
|
|||||||
Reference in New Issue
Block a user