viniBaxter-desk_front 33.0.0 → 38.0.0

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.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/lib/viniBaxter/desk_front/version.rb +1 -1
  3. data/lib/viniBaxter/sass/desk_front-boostrap.scss +2 -0
  4. data/lib/viniBaxter/sass/desk_front-template.scss +2 -0
  5. data/lib/viniBaxter/sass/desk_front-v2lrf-dashboard.scss +6 -0
  6. data/lib/viniBaxter/sass/desk_front.scss +3 -10
  7. data/lib/viniBaxter/sass/desk_front/bootstrap/_card.scss +17 -19
  8. data/lib/viniBaxter/sass/desk_front/dashkit/_dashkit.scss +0 -3
  9. data/lib/viniBaxter/sass/desk_front/dashkit/_header.scss +2 -2
  10. data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss +9 -6
  11. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/_mixins.scss +10 -10
  12. data/lib/viniBaxter/sass/desk_front/{dashkit → v2lrf-dashboard/custom-components}/_avatar.scss +24 -8
  13. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/custom-components/_custom-dashboard-ui.scss +12 -7
  14. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/custom-components/_form.scss +275 -0
  15. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/custom-components/_index.scss +2 -0
  16. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/custom-components/cards/_card-blured.scss +3 -0
  17. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/custom-components/cards/_index.scss +2 -1
  18. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/mixins/_blur.scss +4 -0
  19. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/mixins/_nav-setup-normal.scss +21 -21
  20. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/mixins/_nav-setup-ntf.scss +0 -7
  21. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/mixins/_nav-setup.scss +10 -5
  22. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/mixins/{opacity.scss → _opacity.scss} +4 -0
  23. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/mixins/_transparency.scss +3 -0
  24. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/mixins/_vendor-prefixes.scss +284 -123
  25. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/new_nav/_dropdown.scss +12 -12
  26. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/new_nav/_navbar.scss +12 -1
  27. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/new_nav/_sidebar-and-main-panel.scss +148 -57
  28. data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/new_nav/_white-content.scss +4 -4
  29. metadata +11 -9
  30. data/app/assets/images/desk_front/sidebar-cover.jpg +0 -0
  31. data/lib/viniBaxter/sass/desk_front/dashkit/_forms.scss +0 -279
  32. data/lib/viniBaxter/sass/desk_front/dashkit/_navbar.scss +0 -692
  33. data/lib/viniBaxter/sass/desk_front/dashkit/_variables.scss +0 -0
  34. data/lib/viniBaxter/sass/desk_front/theme.scss +0 -14
@@ -7,6 +7,8 @@
7
7
  @import 'modal-setup';
8
8
  @import 'modal';
9
9
  @import 'custom-dashboard-ui';
10
+ @import 'avatar';
11
+ @import 'form';
10
12
 
11
13
  // Custom Vendor / Plugins
12
14
  @import 'vendor/index';
@@ -0,0 +1,3 @@
1
+ .card.blured {
2
+ @include blur-it;
3
+ }
@@ -14,4 +14,5 @@
14
14
  @import 'card-stats';
15
15
  @import 'card-subcategories';
16
16
  @import 'card-testimonials';
17
- @import 'card-wizard';
17
+ @import 'card-wizard';
18
+ @import 'card-blured'
@@ -0,0 +1,4 @@
1
+ @mixin blur-it {
2
+ backdrop-filter: saturate(101.8%) blur(7px) !important;
3
+ background-color: rgba(255, 255, 255, 0.1) !important;
4
+ }
@@ -1,6 +1,5 @@
1
- @mixin nav-setup-normal($color) {
1
+ @mixin nav-setup-normal($color, $nav-style, $yiq-text-color) {
2
2
  .nav {
3
- // margin-top: 20px;
4
3
  display: block;
5
4
 
6
5
  .caret {
@@ -20,34 +19,27 @@
20
19
  }
21
20
 
22
21
  >a {
23
- // change 🤍
24
- // border-radius: $btn-round-radius;
25
- // color: $color;
26
- // display: block;
27
- // text-decoration: none;
28
- // position: relative;
29
- // text-transform: uppercase;
30
- // cursor: pointer;
31
- // font-size: $font-size-sm !important;
32
- // padding: 3px 8px;
33
- // line-height: $line-height-lg;
34
-
35
22
  margin: 10px 15px 0;
36
23
  border-radius: $btn-round-radius;
37
- color: $color;
24
+
25
+ @if($nav-style=='normal') {
26
+ color: $color !important;
27
+ }
28
+
29
+ @if($nav-style=='grey') {
30
+ color: $yiq-text-color !important;
31
+ }
32
+
38
33
  display: block;
39
34
  text-decoration: none;
40
35
  position: relative;
41
36
  text-transform: uppercase;
42
37
  cursor: pointer;
43
38
  font-size: $font-size-sm !important;
44
- padding: 2px 8px;
45
39
  line-height: $line-height-lg;
46
-
47
-
40
+ padding: 2px 8px;
48
41
  }
49
42
 
50
- // change 🤍
51
43
  &:first-child>a {
52
44
  margin: 0 15px;
53
45
  }
@@ -75,7 +67,7 @@
75
67
 
76
68
  i,
77
69
  p {
78
- color: white;
70
+ color: $yiq-text-color;
79
71
  }
80
72
 
81
73
  // change 🤍
@@ -153,7 +145,15 @@
153
145
  line-height: 30px;
154
146
  width: 34px;
155
147
  text-align: center;
156
- color: $opacity-8;
148
+
149
+ @if($nav-style=='normal') {
150
+ color: $opacity-8;
151
+ }
152
+
153
+ @if($nav-style=='grey') {
154
+ @include text-opacity($yiq-text-color, 0.8)
155
+ }
156
+
157
157
  position: relative;
158
158
  }
159
159
  }
@@ -1,11 +1,6 @@
1
1
  @mixin nav-setup-ntf($color) {
2
2
  .nav {
3
- // margin-top: 20px;
4
3
  display: block;
5
- // display: flex !important;
6
- // flex-direction: column;
7
- // height: 60%;
8
- // justify-content: space-around;
9
4
 
10
5
  .caret {
11
6
  top: 14px;
@@ -24,7 +19,6 @@
24
19
  }
25
20
 
26
21
  >a {
27
- // change 🤍
28
22
  margin: 0px 5px;
29
23
  padding: 7px 5px 7px 12px;
30
24
  border-radius: $btn-round-radius;
@@ -38,7 +32,6 @@
38
32
  line-height: $line-height-lg;
39
33
  }
40
34
 
41
- // change 🤍
42
35
  &:first-child>a {
43
36
  margin: 0px 5px;
44
37
  padding: 7px 5px 7px 12px;
@@ -1,8 +1,13 @@
1
- @mixin nav-setup($color, $nav-style) {
2
- @if ($nav-style == 'normal') {
3
- @include nav-setup-normal($color);
1
+ @mixin nav-setup($color, $nav-style, $yiq-text-color) {
2
+ @if ($nav-style=='normal') {
3
+ @include nav-setup-normal($color, $nav-style, $yiq-text-color);
4
4
  }
5
- @if ($nav-style == 'ntf') {
5
+
6
+ @if ($nav-style=='grey') {
7
+ @include nav-setup-normal($color, $nav-style, $yiq-text-color);
8
+ }
9
+
10
+ @if ($nav-style=='ntf') {
6
11
  @include nav-setup-ntf($color);
7
12
  }
8
- }
13
+ }
@@ -6,3 +6,7 @@
6
6
  $opacity-ie: ($opacity * 100);
7
7
  filter: #{alpha(opacity=$opacity-ie)};
8
8
  }
9
+
10
+ @mixin text-opacity($color, $opacity) {
11
+ color: rgba($color, $opacity);
12
+ }
@@ -0,0 +1,3 @@
1
+ @mixin transparency-color($color, $transparency) {
2
+ color: rgba($color, $transparency);
3
+ }
@@ -1,29 +1,28 @@
1
-
2
- @mixin transform-translate-x($value){
3
- -webkit-transform: translate3d($value, 0, 0);
4
- -moz-transform: translate3d($value, 0, 0);
5
- -o-transform: translate3d($value, 0, 0);
6
- -ms-transform: translate3d($value, 0, 0);
7
- transform: translate3d($value, 0, 0);
1
+ @mixin transform-translate-x($value) {
2
+ -webkit-transform: translate3d($value, 0, 0);
3
+ -moz-transform: translate3d($value, 0, 0);
4
+ -o-transform: translate3d($value, 0, 0);
5
+ -ms-transform: translate3d($value, 0, 0);
6
+ transform: translate3d($value, 0, 0);
8
7
  }
9
8
 
10
- @mixin transform-translate-y($value){
11
- -webkit-transform: translate3d(0,$value,0);
12
- -moz-transform: translate3d(0,$value,0);
13
- -o-transform: translate3d(0,$value,0);
14
- -ms-transform: translate3d(0,$value,0);
15
- transform: translate3d(0,$value,0);
9
+ @mixin transform-translate-y($value) {
10
+ -webkit-transform: translate3d(0, $value, 0);
11
+ -moz-transform: translate3d(0, $value, 0);
12
+ -o-transform: translate3d(0, $value, 0);
13
+ -ms-transform: translate3d(0, $value, 0);
14
+ transform: translate3d(0, $value, 0);
16
15
  }
17
16
 
18
- @mixin transitions($time, $type){
19
- -webkit-transition: all $time $type;
20
- -moz-transition: all $time $type;
21
- -o-transition: all $time $type;
22
- -ms-transition: all $time $type;
23
- transition: all $time $type;
17
+ @mixin transitions($time, $type) {
18
+ -webkit-transition: all $time $type;
19
+ -moz-transition: all $time $type;
20
+ -o-transition: all $time $type;
21
+ -ms-transition: all $time $type;
22
+ transition: all $time $type;
24
23
  }
25
24
 
26
- @mixin diagonal-gradient($start-color, $end-color){
25
+ @mixin diagonal-gradient($start-color, $end-color) {
27
26
  background: $start-color;
28
27
  background-image: -webkit-linear-gradient(to bottom left, $start-color, $end-color, $start-color);
29
28
  background-image: -o-linear-gradient(to bottom left, $start-color, $end-color, $start-color);
@@ -33,153 +32,315 @@
33
32
  background-position: top right;
34
33
  }
35
34
 
36
- @mixin bar-animation($type){
37
- -webkit-animation: $type 500ms linear 0s;
38
- -moz-animation: $type 500ms linear 0s;
39
- animation: $type 500ms 0s;
40
- -webkit-animation-fill-mode: forwards;
41
- -moz-animation-fill-mode: forwards;
42
- animation-fill-mode: forwards;
35
+ @mixin bar-animation($type) {
36
+ -webkit-animation: $type 500ms linear 0s;
37
+ -moz-animation: $type 500ms linear 0s;
38
+ animation: $type 500ms 0s;
39
+ -webkit-animation-fill-mode: forwards;
40
+ -moz-animation-fill-mode: forwards;
41
+ animation-fill-mode: forwards;
43
42
  }
44
43
 
45
- @mixin rotate-180(){
46
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
47
- -webkit-transform: rotate(180deg);
48
- -ms-transform: rotate(180deg);
49
- transform: rotate(180deg);
44
+ @mixin rotate-180() {
45
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
46
+ -webkit-transform: rotate(180deg);
47
+ -ms-transform: rotate(180deg);
48
+ transform: rotate(180deg);
50
49
  }
51
50
 
52
51
  @mixin transform-translate-y-dropdown($value) {
53
- -webkit-transform: translate3d(0,$value,0) !important;
54
- -moz-transform: translate3d(0,$value,0) !important;
55
- -o-transform: translate3d(0,$value,0) !important;
56
- -ms-transform: translate3d(0,$value,0) !important;
57
- transform: translate3d(0,$value,0) !important;
52
+ -webkit-transform: translate3d(0, $value, 0) !important;
53
+ -moz-transform: translate3d(0, $value, 0) !important;
54
+ -o-transform: translate3d(0, $value, 0) !important;
55
+ -ms-transform: translate3d(0, $value, 0) !important;
56
+ transform: translate3d(0, $value, 0) !important;
58
57
  }
59
58
 
60
- @mixin linear-gradient($color, $states-color){
61
- background: $color;
62
- background: -webkit-linear-gradient(0deg, $color 0%, $states-color 100%);
63
- background: -o-linear-gradient(0deg, $color 0%, $states-color 100%);
64
- background: -moz-linear-gradient(0deg, $color 0%, $states-color 100%);
65
- background: linear-gradient(0deg, $color 0%, $states-color 100%);
59
+ @mixin linear-gradient($color, $states-color) {
60
+ background: $color;
61
+ background: -webkit-linear-gradient(0deg, $color 0%, $states-color 100%);
62
+ background: -o-linear-gradient(0deg, $color 0%, $states-color 100%);
63
+ background: -moz-linear-gradient(0deg, $color 0%, $states-color 100%);
64
+ background: linear-gradient(0deg, $color 0%, $states-color 100%);
66
65
  }
67
66
 
68
- @mixin linear-gradient-right($color, $states-color){
69
- background: $color;
70
- background: -webkit-linear-gradient(to right, $color 0%, $states-color 100%);
71
- background: -o-linear-gradient(to right, $color 0%, $states-color 100%);
72
- background: -moz-linear-gradient(to right, $color 0%, $states-color 100%);
73
- background: linear-gradient(to right, $color 0%, $states-color 100%);
67
+ @mixin linear-gradient-right($color, $states-color) {
68
+ background: $color;
69
+ background: -webkit-linear-gradient(to right, $color 0%, $states-color 100%);
70
+ background: -o-linear-gradient(to right, $color 0%, $states-color 100%);
71
+ background: -moz-linear-gradient(to right, $color 0%, $states-color 100%);
72
+ background: linear-gradient(to right, $color 0%, $states-color 100%);
74
73
  }
75
74
 
76
- @mixin sidebar-color($color){
77
- &:after{
75
+ @mixin sidebar-color($color) {
76
+ &:after {
78
77
  background: $color;
79
78
  }
80
79
 
81
- .nav li.active > a{
80
+ .nav li.active>a {
82
81
  color: $color;
83
82
 
84
- i{
83
+ i {
85
84
  color: $color;
86
85
  }
87
86
  }
88
87
  }
89
88
 
90
89
  @mixin transition-input-focus-color() {
91
- -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
92
- -moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
93
- -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
94
- -ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
95
- transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
90
+ -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
91
+ -moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
92
+ -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
93
+ -ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
94
+ transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
96
95
  }
97
96
 
98
- @mixin topbar-x-rotation(){
99
- @keyframes topbar-x {
100
- 0% {top: 0px; transform: rotate(0deg); }
101
- 45% {top: 6px; transform: rotate(145deg); }
102
- 75% {transform: rotate(130deg); }
103
- 100% {transform: rotate(135deg); }
97
+ @mixin topbar-x-rotation() {
98
+ @keyframes topbar-x {
99
+ 0% {
100
+ top: 0px;
101
+ transform: rotate(0deg);
102
+ }
103
+
104
+ 45% {
105
+ top: 6px;
106
+ transform: rotate(145deg);
107
+ }
108
+
109
+ 75% {
110
+ transform: rotate(130deg);
111
+ }
112
+
113
+ 100% {
114
+ transform: rotate(135deg);
115
+ }
116
+ }
117
+
118
+ @-webkit-keyframes topbar-x {
119
+ 0% {
120
+ top: 0px;
121
+ -webkit-transform: rotate(0deg);
104
122
  }
105
- @-webkit-keyframes topbar-x {
106
- 0% {top: 0px; -webkit-transform: rotate(0deg); }
107
- 45% {top: 6px; -webkit-transform: rotate(145deg); }
108
- 75% {-webkit-transform: rotate(130deg); }
109
- 100% { -webkit-transform: rotate(135deg); }
123
+
124
+ 45% {
125
+ top: 6px;
126
+ -webkit-transform: rotate(145deg);
127
+ }
128
+
129
+ 75% {
130
+ -webkit-transform: rotate(130deg);
131
+ }
132
+
133
+ 100% {
134
+ -webkit-transform: rotate(135deg);
135
+ }
136
+ }
137
+
138
+ @-moz-keyframes topbar-x {
139
+ 0% {
140
+ top: 0px;
141
+ -moz-transform: rotate(0deg);
142
+ }
143
+
144
+ 45% {
145
+ top: 6px;
146
+ -moz-transform: rotate(145deg);
110
147
  }
111
- @-moz-keyframes topbar-x {
112
- 0% {top: 0px; -moz-transform: rotate(0deg); }
113
- 45% {top: 6px; -moz-transform: rotate(145deg); }
114
- 75% {-moz-transform: rotate(130deg); }
115
- 100% { -moz-transform: rotate(135deg); }
148
+
149
+ 75% {
150
+ -moz-transform: rotate(130deg);
116
151
  }
152
+
153
+ 100% {
154
+ -moz-transform: rotate(135deg);
155
+ }
156
+ }
117
157
  }
118
158
 
119
- @mixin topbar-back-rotation(){
120
- @keyframes topbar-back {
121
- 0% { top: 6px; transform: rotate(135deg); }
122
- 45% { transform: rotate(-10deg); }
123
- 75% { transform: rotate(5deg); }
124
- 100% { top: 0px; transform: rotate(0); }
159
+ @mixin topbar-back-rotation() {
160
+ @keyframes topbar-back {
161
+ 0% {
162
+ top: 6px;
163
+ transform: rotate(135deg);
164
+ }
165
+
166
+ 45% {
167
+ transform: rotate(-10deg);
168
+ }
169
+
170
+ 75% {
171
+ transform: rotate(5deg);
125
172
  }
126
173
 
127
- @-webkit-keyframes topbar-back {
128
- 0% { top: 6px; -webkit-transform: rotate(135deg); }
129
- 45% { -webkit-transform: rotate(-10deg); }
130
- 75% { -webkit-transform: rotate(5deg); }
131
- 100% { top: 0px; -webkit-transform: rotate(0); }
174
+ 100% {
175
+ top: 0px;
176
+ transform: rotate(0);
177
+ }
178
+ }
179
+
180
+ @-webkit-keyframes topbar-back {
181
+ 0% {
182
+ top: 6px;
183
+ -webkit-transform: rotate(135deg);
132
184
  }
133
185
 
134
- @-moz-keyframes topbar-back {
135
- 0% { top: 6px; -moz-transform: rotate(135deg); }
136
- 45% { -moz-transform: rotate(-10deg); }
137
- 75% { -moz-transform: rotate(5deg); }
138
- 100% { top: 0px; -moz-transform: rotate(0); }
186
+ 45% {
187
+ -webkit-transform: rotate(-10deg);
139
188
  }
189
+
190
+ 75% {
191
+ -webkit-transform: rotate(5deg);
192
+ }
193
+
194
+ 100% {
195
+ top: 0px;
196
+ -webkit-transform: rotate(0);
197
+ }
198
+ }
199
+
200
+ @-moz-keyframes topbar-back {
201
+ 0% {
202
+ top: 6px;
203
+ -moz-transform: rotate(135deg);
204
+ }
205
+
206
+ 45% {
207
+ -moz-transform: rotate(-10deg);
208
+ }
209
+
210
+ 75% {
211
+ -moz-transform: rotate(5deg);
212
+ }
213
+
214
+ 100% {
215
+ top: 0px;
216
+ -moz-transform: rotate(0);
217
+ }
218
+ }
140
219
  }
141
220
 
142
- @mixin bottombar-x-rotation(){
143
- @keyframes bottombar-x {
144
- 0% {bottom: 0px; transform: rotate(0deg);}
145
- 45% {bottom: 6px; transform: rotate(-145deg);}
146
- 75% {transform: rotate(-130deg);}
147
- 100% {transform: rotate(-135deg);}
221
+ @mixin bottombar-x-rotation() {
222
+ @keyframes bottombar-x {
223
+ 0% {
224
+ bottom: 0px;
225
+ transform: rotate(0deg);
148
226
  }
149
- @-webkit-keyframes bottombar-x {
150
- 0% {bottom: 0px; -webkit-transform: rotate(0deg);}
151
- 45% {bottom: 6px; -webkit-transform: rotate(-145deg);}
152
- 75% {-webkit-transform: rotate(-130deg);}
153
- 100% {-webkit-transform: rotate(-135deg);}
227
+
228
+ 45% {
229
+ bottom: 6px;
230
+ transform: rotate(-145deg);
231
+ }
232
+
233
+ 75% {
234
+ transform: rotate(-130deg);
235
+ }
236
+
237
+ 100% {
238
+ transform: rotate(-135deg);
239
+ }
240
+ }
241
+
242
+ @-webkit-keyframes bottombar-x {
243
+ 0% {
244
+ bottom: 0px;
245
+ -webkit-transform: rotate(0deg);
246
+ }
247
+
248
+ 45% {
249
+ bottom: 6px;
250
+ -webkit-transform: rotate(-145deg);
251
+ }
252
+
253
+ 75% {
254
+ -webkit-transform: rotate(-130deg);
154
255
  }
155
- @-moz-keyframes bottombar-x {
156
- 0% {bottom: 0px; -moz-transform: rotate(0deg);}
157
- 45% {bottom: 6px; -moz-transform: rotate(-145deg);}
158
- 75% {-moz-transform: rotate(-130deg);}
159
- 100% {-moz-transform: rotate(-135deg);}
256
+
257
+ 100% {
258
+ -webkit-transform: rotate(-135deg);
259
+ }
260
+ }
261
+
262
+ @-moz-keyframes bottombar-x {
263
+ 0% {
264
+ bottom: 0px;
265
+ -moz-transform: rotate(0deg);
266
+ }
267
+
268
+ 45% {
269
+ bottom: 6px;
270
+ -moz-transform: rotate(-145deg);
160
271
  }
272
+
273
+ 75% {
274
+ -moz-transform: rotate(-130deg);
275
+ }
276
+
277
+ 100% {
278
+ -moz-transform: rotate(-135deg);
279
+ }
280
+ }
161
281
  }
162
282
 
163
- @mixin bottombar-back-rotation{
164
- @keyframes bottombar-back {
165
- 0% { bottom: 6px;transform: rotate(-135deg);}
166
- 45% { transform: rotate(10deg);}
167
- 75% { transform: rotate(-5deg);}
168
- 100% { bottom: 0px;transform: rotate(0);}
283
+ @mixin bottombar-back-rotation {
284
+ @keyframes bottombar-back {
285
+ 0% {
286
+ bottom: 6px;
287
+ transform: rotate(-135deg);
169
288
  }
170
- @-webkit-keyframes bottombar-back {
171
- 0% {bottom: 6px;-webkit-transform: rotate(-135deg);}
172
- 45% {-webkit-transform: rotate(10deg);}
173
- 75% {-webkit-transform: rotate(-5deg);}
174
- 100% {bottom: 0px;-webkit-transform: rotate(0);}
289
+
290
+ 45% {
291
+ transform: rotate(10deg);
175
292
  }
176
- @-moz-keyframes bottombar-back {
177
- 0% {bottom: 6px;-moz-transform: rotate(-135deg);}
178
- 45% {-moz-transform: rotate(10deg);}
179
- 75% {-moz-transform: rotate(-5deg);}
180
- 100% {bottom: 0px;-moz-transform: rotate(0);}
293
+
294
+ 75% {
295
+ transform: rotate(-5deg);
296
+ }
297
+
298
+ 100% {
299
+ bottom: 0px;
300
+ transform: rotate(0);
301
+ }
302
+ }
303
+
304
+ @-webkit-keyframes bottombar-back {
305
+ 0% {
306
+ bottom: 6px;
307
+ -webkit-transform: rotate(-135deg);
181
308
  }
182
309
 
310
+ 45% {
311
+ -webkit-transform: rotate(10deg);
312
+ }
313
+
314
+ 75% {
315
+ -webkit-transform: rotate(-5deg);
316
+ }
317
+
318
+ 100% {
319
+ bottom: 0px;
320
+ -webkit-transform: rotate(0);
321
+ }
322
+ }
323
+
324
+ @-moz-keyframes bottombar-back {
325
+ 0% {
326
+ bottom: 6px;
327
+ -moz-transform: rotate(-135deg);
328
+ }
329
+
330
+ 45% {
331
+ -moz-transform: rotate(10deg);
332
+ }
333
+
334
+ 75% {
335
+ -moz-transform: rotate(-5deg);
336
+ }
337
+
338
+ 100% {
339
+ bottom: 0px;
340
+ -moz-transform: rotate(0);
341
+ }
342
+ }
343
+
183
344
  }
184
345
 
185
346
 
@@ -199,4 +360,4 @@
199
360
  -ms-transform: scale($horiz, $vert);
200
361
  -o-transform: scale($horiz, $vert);
201
362
  transform: scale($horiz, $vert);
202
- }
363
+ }