mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
26 lines
643 B
SCSS
26 lines
643 B
SCSS
/**
|
|
* 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;
|
|
}
|