mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 15:07:13 +08:00
Merge branch 'master' of https://github.com/driftyco/ionic
Conflicts: dist/css/ionic.css
This commit is contained in:
51
dist/css/ionic.css
vendored
51
dist/css/ionic.css
vendored
@ -2217,6 +2217,32 @@ body, .ionic-body {
|
|||||||
left: 0;
|
left: 0;
|
||||||
overflow: hidden; }
|
overflow: hidden; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Scroll is the scroll view component available for complex and custom
|
||||||
|
* scroll view functionality.
|
||||||
|
*/
|
||||||
|
.scroll {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
-webkit-transform: translateZ(0);
|
||||||
|
-moz-transform: translateZ(0);
|
||||||
|
-ms-transform: translateZ(0);
|
||||||
|
-o-transform: translateZ(0);
|
||||||
|
transform: translateZ(0);
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
-moz-text-size-adjust: none;
|
||||||
|
-ms-text-size-adjust: none;
|
||||||
|
-o-text-size-adjust: none;
|
||||||
|
text-size-adjust: none; }
|
||||||
|
|
||||||
.overflow-scroll {
|
.overflow-scroll {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
-webkit-overflow-scrolling: touch; }
|
-webkit-overflow-scrolling: touch; }
|
||||||
@ -4434,31 +4460,6 @@ a.button {
|
|||||||
border-right-width: 1px;
|
border-right-width: 1px;
|
||||||
border-radius: 0px 2px 2px 0px; }
|
border-radius: 0px 2px 2px 0px; }
|
||||||
|
|
||||||
/**
|
|
||||||
* Scroll is the scroll view component available for complex and custom
|
|
||||||
* scroll view functionality.
|
|
||||||
*/
|
|
||||||
.scroll {
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
||||||
width: 100%;
|
|
||||||
-webkit-transform: translateZ(0);
|
|
||||||
-moz-transform: translateZ(0);
|
|
||||||
-ms-transform: translateZ(0);
|
|
||||||
-o-transform: translateZ(0);
|
|
||||||
transform: translateZ(0);
|
|
||||||
-webkit-touch-callout: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
user-select: none;
|
|
||||||
-webkit-text-size-adjust: none;
|
|
||||||
-moz-text-size-adjust: none;
|
|
||||||
-ms-text-size-adjust: none;
|
|
||||||
-o-text-size-adjust: none;
|
|
||||||
text-size-adjust: none; }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Animations
|
* Animations
|
||||||
* --------------------------------------------------
|
* --------------------------------------------------
|
||||||
|
|||||||
@ -13,11 +13,13 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script src="/vendor/angular/angular-1.2.0rc2.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.3/angular.min.js"></script>
|
||||||
<script src="/vendor/angular/angular-touch.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.3/angular-touch.js"></script>
|
||||||
<script src="/vendor/angular/angular-animate.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.3/angular-animate.js"></script>
|
||||||
|
|
||||||
<script src="/dist/js/ionic.js"></script>
|
<script src="/dist/js/ionic.js"></script>
|
||||||
<script src="/dist/js/ionic-angular.js"></script>
|
<script src="/dist/js/ionic-angular.js"></script>
|
||||||
|
|
||||||
<script type="text/javascript"
|
<script type="text/javascript"
|
||||||
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB16sGmIekuGIvYOfNoW9T44377IU2d2Es&sensor=true"></script>
|
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB16sGmIekuGIvYOfNoW9T44377IU2d2Es&sensor=true"></script>
|
||||||
|
|
||||||
|
|||||||
@ -79,6 +79,33 @@ body, .ionic-body {
|
|||||||
left: 0;
|
left: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Scroll is the scroll view component available for complex and custom
|
||||||
|
* scroll view functionality.
|
||||||
|
*/
|
||||||
|
.scroll {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
-webkit-transform: translateZ(0);
|
||||||
|
-moz-transform: translateZ(0);
|
||||||
|
-ms-transform: translateZ(0);
|
||||||
|
-o-transform: translateZ(0);
|
||||||
|
transform: translateZ(0);
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
-moz-text-size-adjust: none;
|
||||||
|
-ms-text-size-adjust: none;
|
||||||
|
-o-text-size-adjust: none;
|
||||||
|
text-size-adjust: none;
|
||||||
|
}
|
||||||
// Pad top/bottom of content so it doesn't hide behind .bar-title and .bar-tab.
|
// Pad top/bottom of content so it doesn't hide behind .bar-title and .bar-tab.
|
||||||
// Note: For these to work, content must come after both bars in the markup
|
// Note: For these to work, content must come after both bars in the markup
|
||||||
|
|
||||||
|
|||||||
@ -1,25 +0,0 @@
|
|||||||
/**
|
|
||||||
* Scroll is the scroll view component available for complex and custom
|
|
||||||
* scroll view functionality.
|
|
||||||
*/
|
|
||||||
.scroll {
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
||||||
width: 100%;
|
|
||||||
-webkit-transform: translateZ(0);
|
|
||||||
-moz-transform: translateZ(0);
|
|
||||||
-ms-transform: translateZ(0);
|
|
||||||
-o-transform: translateZ(0);
|
|
||||||
transform: translateZ(0);
|
|
||||||
-webkit-touch-callout: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
user-select: none;
|
|
||||||
-webkit-text-size-adjust: none;
|
|
||||||
-moz-text-size-adjust: none;
|
|
||||||
-ms-text-size-adjust: none;
|
|
||||||
-o-text-size-adjust: none;
|
|
||||||
text-size-adjust: none;
|
|
||||||
}
|
|
||||||
@ -42,7 +42,6 @@
|
|||||||
"button-bar",
|
"button-bar",
|
||||||
|
|
||||||
// Util
|
// Util
|
||||||
"scroll",
|
|
||||||
"animations",
|
"animations",
|
||||||
"icons",
|
"icons",
|
||||||
"util",
|
"util",
|
||||||
|
|||||||
Reference in New Issue
Block a user