scratch – Blame information for rev 117
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
117 | office | 1 | .swiper-container { |
2 | margin-left: auto; |
||
3 | margin-right: auto; |
||
4 | position:relative; |
||
5 | overflow:hidden; |
||
6 | /* Fix of Webkit flickering */ |
||
7 | z-index:1; |
||
8 | } |
||
9 | .swiper-container-no-flexbox { |
||
10 | .swiper-slide { |
||
11 | float: left; |
||
12 | } |
||
13 | } |
||
14 | .swiper-container-vertical > .swiper-wrapper{ |
||
15 | -webkit-box-orient: vertical; |
||
16 | -moz-box-orient: vertical; |
||
17 | -ms-flex-direction: column; |
||
18 | -webkit-flex-direction: column; |
||
19 | flex-direction: column; |
||
20 | } |
||
21 | .swiper-wrapper { |
||
22 | position:relative; |
||
23 | width: 100%; |
||
24 | height: 100%; |
||
25 | z-index: 1; |
||
26 | display: -webkit-box; |
||
27 | display: -moz-box; |
||
28 | display: -ms-flexbox; |
||
29 | display: -webkit-flex; |
||
30 | display: flex; |
||
31 | |||
32 | -webkit-transition-property:-webkit-transform; |
||
33 | -moz-transition-property:-moz-transform; |
||
34 | -o-transition-property:-o-transform; |
||
35 | -ms-transition-property:-ms-transform; |
||
36 | transition-property:transform; |
||
37 | |||
38 | -webkit-box-sizing: content-box; |
||
39 | -moz-box-sizing: content-box; |
||
40 | box-sizing: content-box; |
||
41 | } |
||
42 | .swiper-container-android .swiper-slide, .swiper-wrapper { |
||
43 | -webkit-transform:translate3d(0px,0,0); |
||
44 | -moz-transform:translate3d(0px,0,0); |
||
45 | -o-transform:translate(0px,0px); |
||
46 | -ms-transform:translate3d(0px,0,0); |
||
47 | transform:translate3d(0px,0,0); |
||
48 | } |
||
49 | .swiper-container-multirow > .swiper-wrapper { |
||
50 | -webkit-box-lines: multiple; |
||
51 | -moz-box-lines: multiple; |
||
52 | -ms-flex-wrap: wrap; |
||
53 | -webkit-flex-wrap: wrap; |
||
54 | flex-wrap: wrap; |
||
55 | } |
||
56 | .swiper-container-free-mode > .swiper-wrapper { |
||
57 | -webkit-transition-timing-function: ease-out; |
||
58 | -moz-transition-timing-function: ease-out; |
||
59 | -ms-transition-timing-function: ease-out; |
||
60 | -o-transition-timing-function: ease-out; |
||
61 | transition-timing-function: ease-out; |
||
62 | margin: 0 auto; |
||
63 | } |
||
64 | .swiper-slide { |
||
65 | -webkit-flex-shrink: 0; |
||
66 | -ms-flex: 0 0 auto; |
||
67 | flex-shrink: 0; |
||
68 | width: 100%; |
||
69 | height: 100%; |
||
70 | position: relative; |
||
71 | } |
||
72 | /* Auto Height */ |
||
73 | .swiper-container-autoheight, .swiper-container-autoheight .swiper-slide { |
||
74 | height: auto; |
||
75 | } |
||
76 | .swiper-container-autoheight .swiper-wrapper { |
||
77 | -webkit-box-align: start; |
||
78 | -ms-flex-align: start; |
||
79 | -webkit-align-items: flex-start; |
||
80 | align-items: flex-start; |
||
81 | -webkit-transition-property: -webkit-transform, height; |
||
82 | -moz-transition-property: -moz-transform; |
||
83 | -o-transition-property: -o-transform; |
||
84 | -ms-transition-property: -ms-transform; |
||
85 | transition-property: transform, height; |
||
86 | } |
||
87 | /* a11y */ |
||
88 | .swiper-container .swiper-notification { |
||
89 | position: absolute; |
||
90 | left: 0; |
||
91 | top: 0; |
||
92 | pointer-events: none; |
||
93 | opacity: 0; |
||
94 | z-index: -1000; |
||
95 | } |
||
96 | |||
97 | /* IE10 Windows Phone 8 Fixes */ |
||
98 | .swiper-wp8-horizontal { |
||
99 | -ms-touch-action: pan-y; |
||
100 | touch-action: pan-y; |
||
101 | } |
||
102 | .swiper-wp8-vertical { |
||
103 | -ms-touch-action: pan-x; |
||
104 | touch-action: pan-x; |
||
105 | } |