cronapp-framework-mobile-js 4.0.0 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/app_2.9.css +1 -2
- package/dist/css/app_2.9.css +1 -1
- package/package.json +3 -26
- package/postupdate.json +189 -111
- package/css/custom-ionic.css +0 -236
- package/dist/css/custom-ionic.css +0 -1
- package/lib/ionic/css/ionic.css +0 -9802
- package/lib/ionic/css/ionic.min.css +0 -23
- package/lib/ionic/fonts/ionicons.eot +0 -0
- package/lib/ionic/fonts/ionicons.svg +0 -2230
- package/lib/ionic/fonts/ionicons.ttf +0 -0
- package/lib/ionic/fonts/ionicons.woff +0 -0
- package/lib/ionic/js/angular/angular-animate.js +0 -4115
- package/lib/ionic/js/angular/angular-animate.min.js +0 -56
- package/lib/ionic/js/angular/angular-resource.js +0 -768
- package/lib/ionic/js/angular/angular-resource.min.js +0 -15
- package/lib/ionic/js/angular/angular-sanitize.js +0 -717
- package/lib/ionic/js/angular/angular-sanitize.min.js +0 -15
- package/lib/ionic/js/angular/angular.js +0 -30714
- package/lib/ionic/js/angular/angular.min.js +0 -311
- package/lib/ionic/js/angular-ui/angular-ui-router.js +0 -4232
- package/lib/ionic/js/angular-ui/angular-ui-router.min.js +0 -7
- package/lib/ionic/js/ionic-angular.js +0 -14391
- package/lib/ionic/js/ionic-angular.min.js +0 -18
- package/lib/ionic/js/ionic.bundle.js +0 -67623
- package/lib/ionic/js/ionic.bundle.min.js +0 -472
- package/lib/ionic/js/ionic.js +0 -13356
- package/lib/ionic/js/ionic.min.js +0 -20
- package/lib/ionic/scss/_action-sheet.scss +0 -170
- package/lib/ionic/scss/_animations.scss +0 -48
- package/lib/ionic/scss/_backdrop.scss +0 -24
- package/lib/ionic/scss/_badge.scss +0 -62
- package/lib/ionic/scss/_bar.scss +0 -417
- package/lib/ionic/scss/_button-bar.scss +0 -92
- package/lib/ionic/scss/_button.scss +0 -252
- package/lib/ionic/scss/_checkbox.scss +0 -180
- package/lib/ionic/scss/_form.scss +0 -327
- package/lib/ionic/scss/_grid.scss +0 -159
- package/lib/ionic/scss/_items.scss +0 -825
- package/lib/ionic/scss/_list.scss +0 -125
- package/lib/ionic/scss/_loading.scss +0 -51
- package/lib/ionic/scss/_menu.scss +0 -70
- package/lib/ionic/scss/_mixins.scss +0 -642
- package/lib/ionic/scss/_modal.scss +0 -102
- package/lib/ionic/scss/_platform.scss +0 -77
- package/lib/ionic/scss/_popover.scss +0 -168
- package/lib/ionic/scss/_popup.scss +0 -110
- package/lib/ionic/scss/_progress.scss +0 -11
- package/lib/ionic/scss/_radio.scss +0 -47
- package/lib/ionic/scss/_range.scss +0 -160
- package/lib/ionic/scss/_refresher.scss +0 -113
- package/lib/ionic/scss/_reset.scss +0 -365
- package/lib/ionic/scss/_scaffolding.scss +0 -291
- package/lib/ionic/scss/_select.scss +0 -142
- package/lib/ionic/scss/_slide-box.scss +0 -71
- package/lib/ionic/scss/_slides.scss +0 -529
- package/lib/ionic/scss/_spinner.scss +0 -100
- package/lib/ionic/scss/_tabs.scss +0 -542
- package/lib/ionic/scss/_toggle.scss +0 -198
- package/lib/ionic/scss/_transitions.scss +0 -188
- package/lib/ionic/scss/_type.scss +0 -166
- package/lib/ionic/scss/_util.scss +0 -296
- package/lib/ionic/scss/_variables.scss +0 -764
- package/lib/ionic/scss/ionic.scss +0 -54
- package/lib/ionic/scss/ionicons/_ionicons-font.scss +0 -28
- package/lib/ionic/scss/ionicons/_ionicons-icons.scss +0 -1473
- package/lib/ionic/scss/ionicons/_ionicons-variables.scss +0 -741
- package/lib/ionic/scss/ionicons/ionicons.scss +0 -16
- package/lib/ionic/version.json +0 -6
|
@@ -1,291 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Scaffolding
|
|
4
|
-
* --------------------------------------------------
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
*,
|
|
8
|
-
*:before,
|
|
9
|
-
*:after {
|
|
10
|
-
@include box-sizing(border-box);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
html {
|
|
14
|
-
overflow: hidden;
|
|
15
|
-
-ms-touch-action: pan-y;
|
|
16
|
-
touch-action: pan-y;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
body,
|
|
20
|
-
.ionic-body {
|
|
21
|
-
@include touch-callout(none);
|
|
22
|
-
@include font-smoothing(antialiased);
|
|
23
|
-
@include text-size-adjust(none);
|
|
24
|
-
@include tap-highlight-transparent();
|
|
25
|
-
@include user-select(none);
|
|
26
|
-
|
|
27
|
-
top: 0;
|
|
28
|
-
right: 0;
|
|
29
|
-
bottom: 0;
|
|
30
|
-
left: 0;
|
|
31
|
-
overflow: hidden;
|
|
32
|
-
|
|
33
|
-
margin: 0;
|
|
34
|
-
padding: 0;
|
|
35
|
-
|
|
36
|
-
color: $base-color;
|
|
37
|
-
word-wrap: break-word;
|
|
38
|
-
font-size: $font-size-base;
|
|
39
|
-
font-family: -apple-system;
|
|
40
|
-
font-family: $font-family-base;
|
|
41
|
-
line-height: $line-height-computed;
|
|
42
|
-
text-rendering: optimizeLegibility;
|
|
43
|
-
-webkit-backface-visibility: hidden;
|
|
44
|
-
-webkit-user-drag: none;
|
|
45
|
-
-ms-content-zooming: none;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
body.grade-b,
|
|
49
|
-
body.grade-c {
|
|
50
|
-
// disable optimizeLegibility for low end devices
|
|
51
|
-
text-rendering: auto;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.content {
|
|
55
|
-
// used for content areas not using the content directive
|
|
56
|
-
position: relative;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.scroll-content {
|
|
60
|
-
position: absolute;
|
|
61
|
-
top: 0;
|
|
62
|
-
right: 0;
|
|
63
|
-
bottom: 0;
|
|
64
|
-
left: 0;
|
|
65
|
-
overflow: hidden;
|
|
66
|
-
|
|
67
|
-
// Hide the top border if any
|
|
68
|
-
margin-top: -1px;
|
|
69
|
-
|
|
70
|
-
// Prevents any distortion of lines
|
|
71
|
-
padding-top: 1px;
|
|
72
|
-
margin-bottom: -1px;
|
|
73
|
-
|
|
74
|
-
width: auto;
|
|
75
|
-
height: auto;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.menu .scroll-content.scroll-content-false{
|
|
79
|
-
z-index: $z-index-scroll-content-false;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.scroll-view {
|
|
83
|
-
position: relative;
|
|
84
|
-
display: block;
|
|
85
|
-
overflow: hidden;
|
|
86
|
-
|
|
87
|
-
&.overflow-scroll {
|
|
88
|
-
position: relative;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
&.scroll-x { overflow-x: scroll; overflow-y: hidden; }
|
|
92
|
-
&.scroll-y { overflow-x: hidden; overflow-y: scroll; }
|
|
93
|
-
&.scroll-xy { overflow-x: scroll; overflow-y: scroll; }
|
|
94
|
-
|
|
95
|
-
// Hide the top border if any
|
|
96
|
-
margin-top: -1px;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
/**
|
|
100
|
-
* Scroll is the scroll view component available for complex and custom
|
|
101
|
-
* scroll view functionality.
|
|
102
|
-
*/
|
|
103
|
-
.scroll {
|
|
104
|
-
@include user-select(none);
|
|
105
|
-
@include touch-callout(none);
|
|
106
|
-
@include text-size-adjust(none);
|
|
107
|
-
@include transform-origin(left, top);
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* Set ms-viewport to prevent MS "page squish" and allow fluid scrolling
|
|
111
|
-
* https://msdn.microsoft.com/en-us/library/ie/hh869615(v=vs.85).aspx
|
|
112
|
-
*/
|
|
113
|
-
@-ms-viewport { width: device-width; }
|
|
114
|
-
|
|
115
|
-
// Scroll bar styles
|
|
116
|
-
.scroll-bar {
|
|
117
|
-
position: absolute;
|
|
118
|
-
z-index: $z-index-scroll-bar;
|
|
119
|
-
}
|
|
120
|
-
// hide the scroll-bar during animations
|
|
121
|
-
.ng-animate .scroll-bar {
|
|
122
|
-
visibility: hidden;
|
|
123
|
-
}
|
|
124
|
-
.scroll-bar-h {
|
|
125
|
-
right: 2px;
|
|
126
|
-
bottom: 3px;
|
|
127
|
-
left: 2px;
|
|
128
|
-
height: 3px;
|
|
129
|
-
|
|
130
|
-
.scroll-bar-indicator {
|
|
131
|
-
height: 100%;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.scroll-bar-v {
|
|
136
|
-
top: 2px;
|
|
137
|
-
right: 3px;
|
|
138
|
-
bottom: 2px;
|
|
139
|
-
width: 3px;
|
|
140
|
-
|
|
141
|
-
.scroll-bar-indicator {
|
|
142
|
-
width: 100%;
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
.scroll-bar-indicator {
|
|
146
|
-
position: absolute;
|
|
147
|
-
border-radius: 4px;
|
|
148
|
-
background: rgba(0,0,0,0.3);
|
|
149
|
-
opacity: 1;
|
|
150
|
-
@include transition(opacity .3s linear);
|
|
151
|
-
|
|
152
|
-
&.scroll-bar-fade-out {
|
|
153
|
-
opacity: 0;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
.platform-android .scroll-bar-indicator {
|
|
157
|
-
// android doesn't have rounded ends on scrollbar
|
|
158
|
-
border-radius: 0;
|
|
159
|
-
}
|
|
160
|
-
.grade-b .scroll-bar-indicator,
|
|
161
|
-
.grade-c .scroll-bar-indicator {
|
|
162
|
-
// disable rgba background and border radius for low end devices
|
|
163
|
-
background: #aaa;
|
|
164
|
-
|
|
165
|
-
&.scroll-bar-fade-out {
|
|
166
|
-
@include transition(none);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
ion-infinite-scroll {
|
|
171
|
-
height: 60px;
|
|
172
|
-
width: 100%;
|
|
173
|
-
display: block;
|
|
174
|
-
|
|
175
|
-
@include display-flex();
|
|
176
|
-
@include flex-direction(row);
|
|
177
|
-
@include justify-content(center);
|
|
178
|
-
@include align-items(center);
|
|
179
|
-
|
|
180
|
-
.icon {
|
|
181
|
-
color: #666666;
|
|
182
|
-
font-size: 30px;
|
|
183
|
-
color: $scroll-refresh-icon-color;
|
|
184
|
-
}
|
|
185
|
-
&:not(.active){
|
|
186
|
-
.spinner,
|
|
187
|
-
.icon:before{
|
|
188
|
-
display:none;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.overflow-scroll {
|
|
194
|
-
overflow-x: hidden;
|
|
195
|
-
overflow-y: scroll;
|
|
196
|
-
-webkit-overflow-scrolling: touch;
|
|
197
|
-
|
|
198
|
-
// Make sure the scrollbar doesn't take up layout space on edge
|
|
199
|
-
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
200
|
-
|
|
201
|
-
top: 0;
|
|
202
|
-
right: 0;
|
|
203
|
-
bottom: 0;
|
|
204
|
-
left: 0;
|
|
205
|
-
position: absolute;
|
|
206
|
-
|
|
207
|
-
&.pane {
|
|
208
|
-
overflow-x: hidden;
|
|
209
|
-
overflow-y: scroll;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.scroll {
|
|
213
|
-
position: static;
|
|
214
|
-
height: 100%;
|
|
215
|
-
-webkit-transform: translate3d(0, 0, 0); // fix iOS bug where relative children of scroller disapear while scrolling. see: http://stackoverflow.com/questions/9807620/ipad-safari-scrolling-causes-html-elements-to-disappear-and-reappear-with-a-dela
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
// Pad top/bottom of content so it doesn't hide behind .bar-title and .bar-tab.
|
|
221
|
-
// Note: For these to work, content must come after both bars in the markup
|
|
222
|
-
/* If you change these, change platform.scss as well */
|
|
223
|
-
.has-header {
|
|
224
|
-
top: $bar-height;
|
|
225
|
-
}
|
|
226
|
-
// Force no header
|
|
227
|
-
.no-header {
|
|
228
|
-
top: 0;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.has-subheader {
|
|
232
|
-
top: $bar-height + $bar-subheader-height;
|
|
233
|
-
}
|
|
234
|
-
.has-tabs-top {
|
|
235
|
-
top: $bar-height + $tabs-height;
|
|
236
|
-
}
|
|
237
|
-
.has-header.has-subheader.has-tabs-top {
|
|
238
|
-
top: $bar-height + $bar-subheader-height + $tabs-height;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
.has-footer {
|
|
242
|
-
bottom: $bar-footer-height;
|
|
243
|
-
}
|
|
244
|
-
.has-subfooter {
|
|
245
|
-
bottom: $bar-footer-height + $bar-subfooter-height;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.has-tabs,
|
|
249
|
-
.bar-footer.has-tabs {
|
|
250
|
-
bottom: $tabs-height;
|
|
251
|
-
&.pane{
|
|
252
|
-
bottom: $tabs-height;
|
|
253
|
-
height:auto;
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.bar-subfooter.has-tabs {
|
|
258
|
-
bottom: $tabs-height + $bar-footer-height;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.has-footer.has-tabs {
|
|
262
|
-
bottom: $tabs-height + $bar-footer-height;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
// A full screen section with a solid background
|
|
266
|
-
.pane {
|
|
267
|
-
@include translate3d(0,0,0);
|
|
268
|
-
@include transition-duration(0);
|
|
269
|
-
z-index: $z-index-pane;
|
|
270
|
-
}
|
|
271
|
-
.view {
|
|
272
|
-
z-index: $z-index-view;
|
|
273
|
-
}
|
|
274
|
-
.pane,
|
|
275
|
-
.view {
|
|
276
|
-
position: absolute;
|
|
277
|
-
top: 0;
|
|
278
|
-
right: 0;
|
|
279
|
-
bottom: 0;
|
|
280
|
-
left: 0;
|
|
281
|
-
width: 100%;
|
|
282
|
-
height: 100%;
|
|
283
|
-
background-color: $base-background-color;
|
|
284
|
-
overflow: hidden;
|
|
285
|
-
}
|
|
286
|
-
.view-container {
|
|
287
|
-
position: absolute;
|
|
288
|
-
display: block;
|
|
289
|
-
width: 100%;
|
|
290
|
-
height: 100%;
|
|
291
|
-
}
|
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Select
|
|
4
|
-
* --------------------------------------------------
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.item-select {
|
|
8
|
-
position: relative;
|
|
9
|
-
|
|
10
|
-
select {
|
|
11
|
-
@include appearance(none);
|
|
12
|
-
position: absolute;
|
|
13
|
-
top: 0;
|
|
14
|
-
bottom: 0;
|
|
15
|
-
right: 0;
|
|
16
|
-
padding: 0 ($item-padding * 3) 0 $item-padding;
|
|
17
|
-
max-width: 65%;
|
|
18
|
-
|
|
19
|
-
border: none;
|
|
20
|
-
background: $item-default-bg;
|
|
21
|
-
color: #333;
|
|
22
|
-
|
|
23
|
-
// hack to hide default dropdown arrow in FF
|
|
24
|
-
text-indent: .01px;
|
|
25
|
-
text-overflow: '';
|
|
26
|
-
|
|
27
|
-
white-space: nowrap;
|
|
28
|
-
font-size: $font-size-base;
|
|
29
|
-
|
|
30
|
-
cursor: pointer;
|
|
31
|
-
direction: rtl; // right align the select text
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
select::-ms-expand {
|
|
35
|
-
// hide default dropdown arrow in IE
|
|
36
|
-
display: none;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
option {
|
|
40
|
-
direction: ltr;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
&:after {
|
|
44
|
-
position: absolute;
|
|
45
|
-
top: 50%;
|
|
46
|
-
right: $item-padding;
|
|
47
|
-
margin-top: -3px;
|
|
48
|
-
width: 0;
|
|
49
|
-
height: 0;
|
|
50
|
-
border-top: 5px solid;
|
|
51
|
-
border-right: 5px solid rgba(0, 0, 0, 0);
|
|
52
|
-
border-left: 5px solid rgba(0, 0, 0, 0);
|
|
53
|
-
color: #999;
|
|
54
|
-
content: "";
|
|
55
|
-
pointer-events: none;
|
|
56
|
-
}
|
|
57
|
-
&.item-light {
|
|
58
|
-
select{
|
|
59
|
-
background:$item-light-bg;
|
|
60
|
-
color:$item-light-text;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
&.item-stable {
|
|
64
|
-
select{
|
|
65
|
-
background:$item-stable-bg;
|
|
66
|
-
color:$item-stable-text;
|
|
67
|
-
}
|
|
68
|
-
&:after, .input-label{
|
|
69
|
-
color:darken($item-stable-border,30%);
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
&.item-positive {
|
|
73
|
-
select{
|
|
74
|
-
background:$item-positive-bg;
|
|
75
|
-
color:$item-positive-text;
|
|
76
|
-
}
|
|
77
|
-
&:after, .input-label{
|
|
78
|
-
color:$item-positive-text;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
&.item-calm {
|
|
82
|
-
select{
|
|
83
|
-
background:$item-calm-bg;
|
|
84
|
-
color:$item-calm-text;
|
|
85
|
-
}
|
|
86
|
-
&:after, .input-label{
|
|
87
|
-
color:$item-calm-text;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
&.item-assertive {
|
|
91
|
-
select{
|
|
92
|
-
background:$item-assertive-bg;
|
|
93
|
-
color:$item-assertive-text;
|
|
94
|
-
}
|
|
95
|
-
&:after, .input-label{
|
|
96
|
-
color:$item-assertive-text;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
&.item-balanced {
|
|
100
|
-
select{
|
|
101
|
-
background:$item-balanced-bg;
|
|
102
|
-
color:$item-balanced-text;
|
|
103
|
-
}
|
|
104
|
-
&:after, .input-label{
|
|
105
|
-
color:$item-balanced-text;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
&.item-energized {
|
|
109
|
-
select{
|
|
110
|
-
background:$item-energized-bg;
|
|
111
|
-
color:$item-energized-text;
|
|
112
|
-
}
|
|
113
|
-
&:after, .input-label{
|
|
114
|
-
color:$item-energized-text;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
&.item-royal {
|
|
118
|
-
select{
|
|
119
|
-
background:$item-royal-bg;
|
|
120
|
-
color:$item-royal-text;
|
|
121
|
-
}
|
|
122
|
-
&:after, .input-label{
|
|
123
|
-
color:$item-royal-text;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
&.item-dark {
|
|
127
|
-
select{
|
|
128
|
-
background:$item-dark-bg;
|
|
129
|
-
color:$item-dark-text;
|
|
130
|
-
}
|
|
131
|
-
&:after, .input-label{
|
|
132
|
-
color:$item-dark-text;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
select {
|
|
138
|
-
&[multiple],
|
|
139
|
-
&[size] {
|
|
140
|
-
height: auto;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Slide Box
|
|
4
|
-
* --------------------------------------------------
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.slider {
|
|
8
|
-
position: relative;
|
|
9
|
-
visibility: hidden;
|
|
10
|
-
// Make sure items don't scroll over ever
|
|
11
|
-
overflow: hidden;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.slider-slides {
|
|
15
|
-
position: relative;
|
|
16
|
-
height: 100%;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.slider-slide {
|
|
20
|
-
position: relative;
|
|
21
|
-
display: block;
|
|
22
|
-
float: left;
|
|
23
|
-
width: 100%;
|
|
24
|
-
height: 100%;
|
|
25
|
-
vertical-align: top;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.slider-slide-image {
|
|
29
|
-
> img {
|
|
30
|
-
width: 100%;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.slider-pager {
|
|
35
|
-
position: absolute;
|
|
36
|
-
bottom: 20px;
|
|
37
|
-
z-index: $z-index-slider-pager;
|
|
38
|
-
width: 100%;
|
|
39
|
-
height: 15px;
|
|
40
|
-
text-align: center;
|
|
41
|
-
|
|
42
|
-
.slider-pager-page {
|
|
43
|
-
display: inline-block;
|
|
44
|
-
margin: 0px 3px;
|
|
45
|
-
width: 15px;
|
|
46
|
-
color: #000;
|
|
47
|
-
text-decoration: none;
|
|
48
|
-
|
|
49
|
-
opacity: 0.3;
|
|
50
|
-
|
|
51
|
-
&.active {
|
|
52
|
-
@include transition(opacity 0.4s ease-in);
|
|
53
|
-
opacity: 1;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
//Disable animate service animations
|
|
59
|
-
.slider-slide,
|
|
60
|
-
.slider-pager-page {
|
|
61
|
-
&.ng-enter,
|
|
62
|
-
&.ng-leave,
|
|
63
|
-
&.ng-animate {
|
|
64
|
-
-webkit-transition: none !important;
|
|
65
|
-
transition: none !important;
|
|
66
|
-
}
|
|
67
|
-
&.ng-animate {
|
|
68
|
-
-webkit-animation: none 0s;
|
|
69
|
-
animation: none 0s;
|
|
70
|
-
}
|
|
71
|
-
}
|