mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
316 lines
5.3 KiB
SCSS
316 lines
5.3 KiB
SCSS
|
|
/**
|
|
* Scaffolding
|
|
* --------------------------------------------------
|
|
*/
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
@include box-sizing(border-box);
|
|
}
|
|
|
|
body, .ionic-body {
|
|
@include touch-callout(none);
|
|
@include font-smoothing(antialiased);
|
|
@include text-size-adjust(none);
|
|
@include tap-highlight-transparent();
|
|
@include user-select(none);
|
|
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
color: $base-color;
|
|
word-wrap: break-word;
|
|
font-size: $font-size-base;
|
|
font-family: $font-family-base;
|
|
line-height: $line-height-computed;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-backface-visibility: hidden;
|
|
-webkit-user-drag: none;
|
|
}
|
|
|
|
body.grade-b,
|
|
body.grade-c {
|
|
// disable optimizeLegibility for low end devices
|
|
text-rendering: auto;
|
|
}
|
|
|
|
.content {
|
|
// used for content areas not using the content directive
|
|
position: relative;
|
|
}
|
|
|
|
.scroll-content {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
|
|
// Hide the top border if any
|
|
margin-top: -1px;
|
|
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
|
|
.scroll-view {
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
// Hide the top border if any
|
|
margin-top: -1px;
|
|
height: 100%;
|
|
}
|
|
|
|
/**
|
|
* Scroll is the scroll view component available for complex and custom
|
|
* scroll view functionality.
|
|
*/
|
|
.scroll {
|
|
@include user-select(none);
|
|
@include touch-callout(none);
|
|
@include text-size-adjust(none);
|
|
@include transform-origin(left, top);
|
|
-webkit-backface-visibility: hidden;
|
|
}
|
|
|
|
// Scroll bar styles
|
|
.scroll-bar {
|
|
position: absolute;
|
|
z-index: $z-index-scroll-bar;
|
|
}
|
|
// hide the scroll-bar during animations
|
|
.ng-animate .scroll-bar {
|
|
visibility: hidden;
|
|
}
|
|
.scroll-bar-h {
|
|
right: 2px;
|
|
bottom: 3px;
|
|
left: 2px;
|
|
height: 3px;
|
|
|
|
.scroll-bar-indicator {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.scroll-bar-v {
|
|
top: 2px;
|
|
right: 3px;
|
|
bottom: 2px;
|
|
width: 3px;
|
|
|
|
.scroll-bar-indicator {
|
|
width: 100%;
|
|
}
|
|
}
|
|
.scroll-bar-indicator {
|
|
position: absolute;
|
|
border-radius: 4px;
|
|
background: rgba(0,0,0,0.3);
|
|
opacity: 1;
|
|
|
|
|
|
&.scroll-bar-fade-out {
|
|
@include transition(opacity 0.3s linear);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
.grade-b .scroll-bar-indicator,
|
|
.grade-c .scroll-bar-indicator {
|
|
// disable rgba background and border radius for low end devices
|
|
border-radius: 0;
|
|
background: #aaa;
|
|
|
|
&.scroll-bar-fade-out {
|
|
@include transition(none);
|
|
}
|
|
}
|
|
|
|
|
|
// Scroll refresher (for pull to refresh)
|
|
.scroll-refresher {
|
|
position: absolute;
|
|
top: -60px;
|
|
right: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
margin: auto;
|
|
height: 60px;
|
|
|
|
.icon-refreshing {
|
|
@include animation-duration(1.5s);
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.scroll-refresher-content {
|
|
position: absolute;
|
|
bottom: 15px;
|
|
left: 0;
|
|
width: 100%;
|
|
color: $scroll-refresh-icon-color;
|
|
text-align: center;
|
|
|
|
font-size: 30px;
|
|
}
|
|
|
|
.ionic-refresher-content {
|
|
position: absolute;
|
|
bottom: 15px;
|
|
left: 0;
|
|
width: 100%;
|
|
color: $scroll-refresh-icon-color;
|
|
text-align: center;
|
|
|
|
font-size: 30px;
|
|
|
|
.icon-pulling {
|
|
@include animation-name(refresh-spin-back);
|
|
@include animation-duration(200ms);
|
|
@include animation-timing-function(linear);
|
|
@include animation-fill-mode(both);
|
|
}
|
|
}
|
|
|
|
@keyframes refresh-spin {
|
|
0% { transform: rotate(0); }
|
|
100% { transform: rotate(-180deg); }
|
|
}
|
|
|
|
@-webkit-keyframes refresh-spin {
|
|
0% {-webkit-transform: rotate(0); }
|
|
100% {-webkit-transform: rotate(-180deg); }
|
|
}
|
|
|
|
@keyframes refresh-spin-back {
|
|
0% { transform: rotate(-180deg); }
|
|
100% { transform: rotate(0); }
|
|
}
|
|
|
|
@-webkit-keyframes refresh-spin-back {
|
|
0% {-webkit-transform: rotate(-180deg); }
|
|
100% {-webkit-transform: rotate(0); }
|
|
}
|
|
|
|
.scroll-refresher.active {
|
|
|
|
.icon-pulling {
|
|
display: block;
|
|
}
|
|
.icon-refreshing {
|
|
display: none;
|
|
}
|
|
|
|
&.refreshing {
|
|
.icon-pulling {
|
|
display: none;
|
|
}
|
|
.icon-refreshing {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.ionic-refresher-content {
|
|
i.icon.icon-pulling {
|
|
@include animation-name(refresh-spin);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Infinite scroll
|
|
ion-infinite-scroll .scroll-infinite {
|
|
position: relative;
|
|
overflow: hidden;
|
|
margin-top: -70px;
|
|
height: 60px;
|
|
}
|
|
|
|
.scroll-infinite-content {
|
|
position: absolute;
|
|
bottom: 15px;
|
|
left: 0;
|
|
width: 100%;
|
|
color: #666666;
|
|
text-align: center;
|
|
font-size: 30px; }
|
|
|
|
ion-infinite-scroll.active .scroll-infinite {
|
|
margin-top: -30px;
|
|
}
|
|
|
|
.overflow-scroll {
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
.scroll {
|
|
position: static;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
.overflow-scroll {
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
.scroll {
|
|
position: static;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
// 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
|
|
.has-header {
|
|
top: $bar-height;
|
|
}
|
|
|
|
.has-subheader {
|
|
top: $bar-height * 2;
|
|
}
|
|
|
|
.has-footer {
|
|
bottom: $bar-height;
|
|
}
|
|
|
|
.has-tabs,
|
|
.bar-footer.has-tabs {
|
|
bottom: $tabs-height;
|
|
}
|
|
|
|
.has-footer.has-tabs {
|
|
bottom: $tabs-height + $bar-height;
|
|
}
|
|
|
|
// A full screen section with a solid background
|
|
.pane {
|
|
@include translate3d(0,0,0);
|
|
z-index: $z-index-pane;
|
|
}
|
|
.view {
|
|
z-index: $z-index-view;
|
|
}
|
|
.pane, .view {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #fff;
|
|
}
|