@posiwise/core-styles 1.0.0 → 1.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.
Files changed (33) hide show
  1. package/app.scss +45 -0
  2. package/css/google-fonts.css +4 -1
  3. package/css/hopscotch.css +1 -1
  4. package/package.json +3 -3
  5. package/scss/_dashboard.scss +1 -1
  6. package/scss/_dynamic-styles.scss +873 -7
  7. package/scss/common/landing-page-a/landing-page-style-1.scss +7 -7
  8. package/scss/common/landing-page-b/banner.scss +8 -8
  9. package/scss/common/landing-page-b/contact-us.scss +4 -4
  10. package/scss/common/landing-page-b/explainer.scss +6 -6
  11. package/scss/common/landing-page-b/explainer2.scss +1 -1
  12. package/scss/common/landing-page-b/landing-page-style-2.scss +4 -3
  13. package/scss/custom-bootstrap/_badge.scss +35 -25
  14. package/scss/custom-bootstrap/_type.scss +7 -1
  15. package/scss/dashboard/_bootstrap-social.scss +25 -25
  16. package/scss/dashboard/_coming-soon.scss +1 -1
  17. package/scss/dashboard/_components.scss +1 -1
  18. package/scss/dashboard/_email.scss +7 -7
  19. package/scss/dashboard/_helper.scss +17 -7
  20. package/scss/dashboard/_icons.scss +7 -0
  21. package/scss/dashboard/_misc.scss +1 -1
  22. package/scss/dashboard/_palette.scss +284 -125
  23. package/scss/dashboard/_profile.scss +1 -1
  24. package/scss/dashboard/_tabs.scss +18 -0
  25. package/scss/dashboard/mixins/_utilities.scss +1 -1
  26. package/scss/dashboard/mixins/_vendor-prefixes.scss +2 -2
  27. package/scss/plugins/perfect-scrollbar/_variables.scss +1 -1
  28. package/scss/public-pages/_layout.scss +8 -1
  29. package/scss/shared/_prime-ng.scss +278 -180
  30. package/scss/variables/_app-colors-variables.scss +7 -1
  31. package/scss/variables/_branding-variables.scss +9 -7
  32. package/scss/variables/_generic-variables.scss +5 -5
  33. package/scss/variables/_primeng-variables.scss +38 -38
@@ -1,4 +1,4 @@
1
- @import 'variables';
1
+ @import '../../variables';
2
2
 
3
3
  .register {
4
4
  background: rgb(255 255 255) url('/assets/img/landing-page/testimonial-bg.png') fixed center top;
@@ -274,7 +274,7 @@ label {
274
274
  text-decoration: underline;
275
275
  }
276
276
 
277
- .msp-container {
277
+ .resource-container {
278
278
  padding: 0 !important;
279
279
 
280
280
  .register-container {
@@ -380,7 +380,7 @@ label {
380
380
  }
381
381
 
382
382
  .form-container {
383
- background-image: url('/assets/img/products/cloud-olive/login-form-background-img.png');
383
+ background-image: url('/assets/img/products/trial/login-form-background-img.png');
384
384
  }
385
385
  }
386
386
 
@@ -505,7 +505,7 @@ app-social-login {
505
505
 
506
506
  @media screen and (max-width: 768px) {
507
507
  .vendor-container {
508
- background-image: url('/assets/img/products/cloud-olive/login-form-background-img.png');
508
+ background-image: url('/assets/img/products/c/login-form-background-img.png');
509
509
  background-position: right;
510
510
  background-repeat: no-repeat;
511
511
  background-size: 60vw 100%;
@@ -557,7 +557,7 @@ app-social-login {
557
557
  }
558
558
  }
559
559
 
560
- pw-cloudolive-signup-tabs-a {
560
+ pw-signup-tabs-a {
561
561
  width: 100%;
562
562
  }
563
563
 
@@ -611,11 +611,11 @@ pw-cloudolive-signup-tabs-a {
611
611
 
612
612
  .register-outer {
613
613
  margin: 0 auto !important;
614
- padding: 0 20px !important;
614
+ padding: 0 3rem !important;
615
615
  }
616
616
  }
617
617
 
618
- .cloudolive-header,
618
+ .primary-header,
619
619
  .blinking-text-wrapper {
620
620
  h1 {
621
621
  color: map-get($secondary, base);
@@ -77,12 +77,12 @@
77
77
  }
78
78
  }
79
79
 
80
- @media (max-width:768px){
80
+ @media (max-width: 768px) {
81
81
  .banner {
82
82
  .banner-logo {
83
- img{
84
- max-width: 200px !important;
85
- }
83
+ img {
84
+ max-width: 200px !important;
85
+ }
86
86
  }
87
87
 
88
88
  .banner-sub-heading,
@@ -114,8 +114,8 @@
114
114
  }
115
115
 
116
116
  section.banner::after {
117
- background: url('/assets/img/products/cloud-olive/cloudolive-new/white-stripes-right1.png')
118
- right bottom no-repeat;
117
+ background: url('/assets/img/products/trial/white-stripes-right1.png') right bottom
118
+ no-repeat;
119
119
  bottom: 0;
120
120
  clip-path: circle(55% at 80% 80%);
121
121
  content: '';
@@ -127,8 +127,8 @@
127
127
 
128
128
  .banner {
129
129
  .stripes-img::before {
130
- background: url('/assets/img/products/cloud-olive/cloudolive-new/white-stripes-left.png')
131
- left bottom no-repeat;
130
+ background: url('/assets/img/products/trial/white-stripes-left.png') left bottom
131
+ no-repeat;
132
132
  bottom: 0;
133
133
  clip-path: circle(50.9% at 1% 44%);
134
134
  content: '';
@@ -1,8 +1,8 @@
1
1
  @import 'variables/landing-page-new-variables';
2
2
  @import 'common/landing-page-b/landing-page-style-2';
3
3
 
4
- .cloudolive-contact-us {
5
- background: url('/assets/img/products/cloud-olive/cloudolive-new/contact-us-bg.jpg') center;
4
+ .contact-us-section {
5
+ background: url('/assets/img/products/trial/contact-us-bg.jpg') center;
6
6
  background-size: cover;
7
7
  padding: 40px 0;
8
8
 
@@ -125,7 +125,7 @@
125
125
  }
126
126
 
127
127
  @media (max-width: 991px) {
128
- .cloudolive-contact-us {
128
+ .contact-us-section {
129
129
  .left-section-outer {
130
130
  order: 2;
131
131
  }
@@ -145,7 +145,7 @@
145
145
  }
146
146
 
147
147
  @media (min-width: 992px) {
148
- .cloudolive-contact-us {
148
+ .contact-us-section {
149
149
  padding: 0;
150
150
 
151
151
  .left-section {
@@ -2,7 +2,7 @@
2
2
  @import 'common/landing-page-b/landing-page-style-2';
3
3
  @import 'public-pages/mixins/buttons';
4
4
 
5
- .cloudolive-contract-for-msps {
5
+ .product-explainer-section {
6
6
  background-color: $bg-color-black-grey;
7
7
  padding: 40px 0;
8
8
  position: relative;
@@ -35,8 +35,8 @@
35
35
  }
36
36
 
37
37
  @media (max-width: 768px) {
38
- .cloudolive-contract-for-msps {
39
- .cloudolive-video {
38
+ .product-explainer-section {
39
+ .product-video {
40
40
  margin-top: 50px;
41
41
  }
42
42
 
@@ -48,7 +48,7 @@
48
48
  }
49
49
 
50
50
  @media (min-width: 991px) {
51
- .cloudolive-contract-for-msps {
51
+ .product-explainer-section {
52
52
  .stripes::after {
53
53
  background: rgb(145 196 216 / 80%) right bottom no-repeat;
54
54
  bottom: 0;
@@ -61,8 +61,8 @@
61
61
  }
62
62
 
63
63
  .stripes::before {
64
- background: url('/assets/img/products/cloud-olive/cloudolive-new/white-stripes-right1.png')
65
- right top no-repeat;
64
+ background: url('/assets/img/products/trial/white-stripes-right1.png') right top
65
+ no-repeat;
66
66
  clip-path: circle(45% at 67% 61%);
67
67
  content: '';
68
68
  height: 350px;
@@ -2,7 +2,7 @@
2
2
  @import 'common/landing-page-b/landing-page-style-2';
3
3
  @import 'public-pages/mixins/buttons';
4
4
 
5
- .cloudolive-contract-for-msps {
5
+ .product-explainer-section {
6
6
  background: $bg-color-blue;
7
7
  padding: 40px 0;
8
8
  position: relative;
@@ -1,8 +1,9 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
2
1
  @import 'variables/branding-variables';
3
2
 
3
+ // ⚡ PERFORMANCE FIX: Use Roboto (already loaded) instead of Montserrat from Google CDN
4
+ // This eliminates 1.7 second delay on CS2, CS3, CS4 pages
4
5
  * {
5
- font-family: $familyMontserrat;
6
+ font-family: $mainFontFamily;
6
7
  }
7
8
 
8
9
  h2 {
@@ -15,6 +16,6 @@ h2 {
15
16
 
16
17
  @media (max-width: 1200px) {
17
18
  .container-wrapper {
18
- padding: 0 20px !important;
19
+ padding: 0 3rem !important;
19
20
  }
20
21
  }
@@ -142,7 +142,7 @@
142
142
  }
143
143
 
144
144
  .bg-default-3 {
145
- background-color: map-get($default, lighten-3);
145
+ background-color: map-get($default, darken-3);
146
146
  }
147
147
 
148
148
  .bg-default-4 {
@@ -161,7 +161,7 @@
161
161
  }
162
162
 
163
163
  .bg-default-7 {
164
- background-color: map-get($default, accent-1);
164
+ background-color: map-get($default, darken-1);
165
165
  color: rgb(255 255 255);
166
166
  }
167
167
 
@@ -176,7 +176,7 @@
176
176
  }
177
177
 
178
178
  .bg-default-10 {
179
- background-color: map-get($pink, lighten-4);
179
+ background-color: map-get($pink, darken-3);
180
180
  color: rgb(255 255 255);
181
181
  }
182
182
 
@@ -214,7 +214,7 @@
214
214
  }
215
215
 
216
216
  .bg-default-18 {
217
- background-color: map-get($warning, lighten-4);
217
+ background-color: map-get($warning, darken-2);
218
218
  }
219
219
 
220
220
  .bg-default-19 {
@@ -238,7 +238,7 @@
238
238
  }
239
239
 
240
240
  .bg-default-24 {
241
- background-color: map-get($warning, accent-4);
241
+ background-color: map-get($warning, darken-1);
242
242
  }
243
243
 
244
244
  // blue-grey badges
@@ -258,7 +258,7 @@
258
258
  }
259
259
 
260
260
  .bg-blue-grey-3 {
261
- background-color: map-get($blue-grey, lighten-4);
261
+ background-color: map-get($blue-grey, darken-3);
262
262
  }
263
263
 
264
264
  .bg-blue-grey-4 {
@@ -282,82 +282,82 @@
282
282
  }
283
283
 
284
284
  .bg-blue-grey-8 {
285
- background-color: map-get($warning, lighten-1);
285
+ background-color: map-get($blue-grey, accent-4);
286
286
  }
287
287
 
288
288
  .bg-blue-grey-9 {
289
- background-color: map-get($warning, darken-1);
289
+ background-color: map-get($blue-grey, darken-1);
290
290
  }
291
291
 
292
292
  .bg-blue-grey-10 {
293
- background-color: map-get($warning, lighten-4);
293
+ background-color: map-get($blue-grey, darken-2);
294
294
  }
295
295
 
296
296
  .bg-blue-grey-11 {
297
- background-color: map-get($warning, darken-4);
297
+ background-color: map-get($blue-grey, darken-4);
298
298
  }
299
299
 
300
300
  .bg-blue-grey-12 {
301
- background-color: map-get($warning, lighten-3);
301
+ background-color: map-get($blue-grey, lighten-3);
302
302
  }
303
303
 
304
304
  .bg-blue-grey-13 {
305
- background-color: map-get($warning, darken-3);
305
+ background-color: map-get($blue-grey, darken-3);
306
306
  }
307
307
 
308
308
  .bg-blue-grey-14 {
309
- background-color: map-get($warning, lighten-2);
309
+ background-color: map-get($blue-grey, lighten-2);
310
310
  }
311
311
 
312
312
  .bg-blue-grey-15 {
313
- background-color: map-get($warning, darken-2);
313
+ background-color: map-get($blue-grey, darken-2);
314
314
  }
315
315
 
316
316
  .bg-blue-grey-16 {
317
- background-color: map-get($warning, accent-4);
317
+ background-color: map-get($blue-grey, accent-4);
318
318
  }
319
319
 
320
320
  .bg-blue-grey-17 {
321
- background-color: map-get($pink, lighten-1);
321
+ background-color: map-get($blue-grey, lighten-1);
322
322
  color: rgb(255 255 255);
323
323
  }
324
324
 
325
325
  .bg-blue-grey-18 {
326
- background-color: map-get($pink, darken-1);
326
+ background-color: map-get($blue-grey, darken-1);
327
327
  color: rgb(255 255 255);
328
328
  }
329
329
 
330
330
  .bg-blue-grey-19 {
331
- background-color: map-get($pink, lighten-4);
331
+ background-color: map-get($blue-grey, lighten-4);
332
332
  color: rgb(255 255 255);
333
333
  }
334
334
 
335
335
  .bg-blue-grey-20 {
336
- background-color: map-get($pink, accent-1);
336
+ background-color: map-get($blue-grey, accent-1);
337
337
  color: rgb(255 255 255);
338
338
  }
339
339
 
340
340
  .bg-blue-grey-21 {
341
- background-color: map-get($pink, accent-4);
341
+ background-color: map-get($blue-grey, accent-4);
342
342
  color: rgb(255 255 255);
343
343
  }
344
344
 
345
345
  .bg-blue-grey-22 {
346
- background-color: map-get($pink, lighten-2);
346
+ background-color: map-get($blue-grey, lighten-2);
347
347
  color: rgb(255 255 255);
348
348
  }
349
349
 
350
350
  .bg-blue-grey-23 {
351
- background-color: map-get($pink, darken-3);
351
+ background-color: map-get($blue-grey, darken-3);
352
352
  color: rgb(255 255 255);
353
353
  }
354
354
 
355
355
  .bg-blue-grey-24 {
356
- background-color: map-get($pink, darken-4);
356
+ background-color: map-get($blue-grey, darken-4);
357
357
  color: rgb(255 255 255);
358
358
  }
359
359
 
360
- // pink bages
360
+ // pink badges
361
361
 
362
362
  .bg-pink {
363
363
  color: rgb(255 255 255);
@@ -454,7 +454,7 @@
454
454
  }
455
455
 
456
456
  .bg-cyan-8 {
457
- background-color: map-get($cyan, lighten-4);
457
+ background-color: map-get($cyan, lighten-2);
458
458
  }
459
459
 
460
460
  .bg-cyan-9 {
@@ -466,3 +466,13 @@
466
466
  background-color: map-get($cyan, lighten-3);
467
467
  color: rgb(255 255 255);
468
468
  }
469
+
470
+ .bg-cyan-default {
471
+ background-color: map-get($cyan, lighten-3);
472
+ color: rgb(255 255 255);
473
+ }
474
+
475
+ .bg-cyan-default-change {
476
+ background-color: map-get($cyan, darken-1);
477
+ color: rgb(255 255 255);
478
+ }
@@ -80,7 +80,7 @@ blockquote.float-end {
80
80
  .description,
81
81
  .card-description,
82
82
  .footer-big p {
83
- color: color('gray');
83
+ color: $gray-600;
84
84
  }
85
85
 
86
86
  .text-warning {
@@ -107,6 +107,12 @@ blockquote.float-end {
107
107
  color: map-get($info, base) !important;
108
108
  }
109
109
 
110
+ .required-icon {
111
+ color: #ff586b;
112
+ padding-left: 2px;
113
+ font-size: 15px;
114
+ }
115
+
110
116
  // small
111
117
  .font-small-1 {
112
118
  font-size: 0.7rem !important;
@@ -153,7 +153,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
153
153
  }
154
154
 
155
155
  .btn-foursquare {
156
- @include btn-social($fourSquare);
156
+ @include btn-social($four-square);
157
157
  }
158
158
 
159
159
  .btn-github {
@@ -165,7 +165,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
165
165
  }
166
166
 
167
167
  .btn-instagram {
168
- @include btn-social($instaGram);
168
+ @include btn-social($instagram);
169
169
  }
170
170
 
171
171
  .btn-linkedin {
@@ -173,7 +173,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
173
173
  }
174
174
 
175
175
  .btn-microsoft {
176
- @include btn-social($micrSoft);
176
+ @include btn-social($microsoft);
177
177
  }
178
178
 
179
179
  .btn-odnoklassniki {
@@ -181,7 +181,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
181
181
  }
182
182
 
183
183
  .btn-openid {
184
- @include btn-social($openId);
184
+ @include btn-social($open-id);
185
185
  }
186
186
 
187
187
  .btn-pinterest {
@@ -193,7 +193,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
193
193
  }
194
194
 
195
195
  .btn-soundcloud {
196
- @include btn-social($soundColoud);
196
+ @include btn-social($soundCloud);
197
197
  }
198
198
 
199
199
  .btn-tumblr {
@@ -238,7 +238,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
238
238
  }
239
239
 
240
240
  .btn-outline-foursquare {
241
- @include btn-social-outline($fourSquare);
241
+ @include btn-social-outline($four-square);
242
242
  }
243
243
 
244
244
  .btn-outline-github {
@@ -250,7 +250,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
250
250
  }
251
251
 
252
252
  .btn-outline-instagram {
253
- @include btn-social-outline($instaGram);
253
+ @include btn-social-outline($instagram);
254
254
  }
255
255
 
256
256
  .btn-outline-linkedin {
@@ -258,7 +258,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
258
258
  }
259
259
 
260
260
  .btn-outline-microsoft {
261
- @include btn-social-outline($micrSoft);
261
+ @include btn-social-outline($microsoft);
262
262
  }
263
263
 
264
264
  .btn-outline-odnoklassniki {
@@ -266,7 +266,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
266
266
  }
267
267
 
268
268
  .btn-outline-openid {
269
- @include btn-social-outline($openId);
269
+ @include btn-social-outline($open-id);
270
270
  }
271
271
 
272
272
  .btn-outline-pinterest {
@@ -278,7 +278,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
278
278
  }
279
279
 
280
280
  .btn-outline-soundcloud {
281
- @include btn-social-outline($soundColoud);
281
+ @include btn-social-outline($soundCloud);
282
282
  }
283
283
 
284
284
  .btn-outline-tumblr {
@@ -323,7 +323,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
323
323
  }
324
324
 
325
325
  .btn-outline-foursquare:hover {
326
- @include btn-hover-outline($fourSquare);
326
+ @include btn-hover-outline($four-square);
327
327
  }
328
328
 
329
329
  .btn-outline-github:hover {
@@ -335,7 +335,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
335
335
  }
336
336
 
337
337
  .btn-outline-instagram:hover {
338
- @include btn-hover-outline($instaGram);
338
+ @include btn-hover-outline($instagram);
339
339
  }
340
340
 
341
341
  .btn-outline-linkedin:hover {
@@ -343,7 +343,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
343
343
  }
344
344
 
345
345
  .btn-outline-microsoft:hover {
346
- @include btn-hover-outline($micrSoft);
346
+ @include btn-hover-outline($microsoft);
347
347
  }
348
348
 
349
349
  .btn-outline-odnoklassniki:hover {
@@ -351,7 +351,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
351
351
  }
352
352
 
353
353
  .btn-outline-openid:hover {
354
- @include btn-hover-outline($openId);
354
+ @include btn-hover-outline($open-id);
355
355
  }
356
356
 
357
357
  .btn-outline-pinterest:hover {
@@ -363,7 +363,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
363
363
  }
364
364
 
365
365
  .btn-outline-soundcloud:hover {
366
- @include btn-hover-outline($soundColoud);
366
+ @include btn-hover-outline($soundCloud);
367
367
  }
368
368
 
369
369
  .btn-outline-tumblr:hover {
@@ -408,7 +408,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
408
408
  }
409
409
 
410
410
  .btn-foursquare-flat {
411
- @include btn-social-flat($fourSquare);
411
+ @include btn-social-flat($four-square);
412
412
  }
413
413
 
414
414
  .btn-github-flat {
@@ -420,7 +420,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
420
420
  }
421
421
 
422
422
  .btn-instagram-flat {
423
- @include btn-social-flat($instaGram);
423
+ @include btn-social-flat($instagram);
424
424
  }
425
425
 
426
426
  .btn-linkedin-flat {
@@ -428,7 +428,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
428
428
  }
429
429
 
430
430
  .btn-microsoft-flat {
431
- @include btn-social-flat($micrSoft);
431
+ @include btn-social-flat($microsoft);
432
432
  }
433
433
 
434
434
  .btn-odnoklassniki-flat {
@@ -436,7 +436,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
436
436
  }
437
437
 
438
438
  .btn-openid-flat {
439
- @include btn-social-flat($openId);
439
+ @include btn-social-flat($open-id);
440
440
  }
441
441
 
442
442
  .btn-pinterest-flat {
@@ -448,7 +448,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
448
448
  }
449
449
 
450
450
  .btn-soundcloud-flat {
451
- @include btn-social-flat($soundColoud);
451
+ @include btn-social-flat($soundCloud);
452
452
  }
453
453
 
454
454
  .btn-tumblr-flat {
@@ -517,7 +517,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
517
517
  .btn-foursquare-flat:focus,
518
518
  .btn-foursquare-flat:active:focus,
519
519
  .btn-foursquare-flat:active:hover {
520
- @include btn-social-flat-active($fourSquare);
520
+ @include btn-social-flat-active($four-square);
521
521
  }
522
522
 
523
523
  .btn-github-flat.active,
@@ -541,7 +541,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
541
541
  .btn-instagram-flat:focus,
542
542
  .btn-instagram-flat:active:focus,
543
543
  .btn-instagram-flat:active:hover {
544
- @include btn-social-flat-active($instaGram);
544
+ @include btn-social-flat-active($instagram);
545
545
  }
546
546
 
547
547
  .btn-linkedin-flat.active,
@@ -557,7 +557,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
557
557
  .btn-microsoft-flat:focus,
558
558
  .btn-microsoft-flat:active:focus,
559
559
  .btn-microsoft-flat:active:hover {
560
- @include btn-social-flat-active($micrSoft);
560
+ @include btn-social-flat-active($microsoft);
561
561
  }
562
562
 
563
563
  .btn-odnoklassniki-flat.active,
@@ -573,7 +573,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
573
573
  .btn-openid-flat:focus,
574
574
  .btn-openid-flat:active:focus,
575
575
  .btn-openid-flat:active:hover {
576
- @include btn-social-flat-active($openId);
576
+ @include btn-social-flat-active($open-id);
577
577
  }
578
578
 
579
579
  .btn-pinterest-flat.active,
@@ -597,7 +597,7 @@ $bs-height-xs: (floor($font-size-sm * 1.2) + $padding-small-vertical + 1) !defau
597
597
  .btn-soundcloud-flat:focus,
598
598
  .btn-soundcloud-flat:active:focus,
599
599
  .btn-soundcloud-flat:active:hover {
600
- @include btn-social-flat-active($soundColoud);
600
+ @include btn-social-flat-active($soundCloud);
601
601
  }
602
602
 
603
603
  .btn-tumblr-flat.active,
@@ -4,7 +4,7 @@
4
4
  // ================================================================================================
5
5
 
6
6
  /* ========== Coming Soon Background Image ========= */
7
- .comingsoonVideo .app-content .coming-soon-content {
7
+ .coming-soon-video .app-content .coming-soon-content {
8
8
  z-index: 99;
9
9
  }
10
10
 
@@ -74,7 +74,7 @@
74
74
  color: map-get($default, base) !important;
75
75
  }
76
76
 
77
- // Toastrs
77
+ // Toast
78
78
 
79
79
  .toast-success {
80
80
  background-color: map-get($success, base) !important;
@@ -1,11 +1,11 @@
1
1
  // Variables
2
- $sideber-border: rgb(228 231 237);
3
- $sideber-width: 500px;
2
+ $sidebar-border: rgb(228 231 237);
3
+ $sidebar-width: 500px;
4
4
 
5
5
  .email-application {
6
6
  .email-app-sidebar {
7
7
  background: rgb(255 255 255);
8
- border-right: 1px solid $sideber-border;
8
+ border-right: 1px solid $sidebar-border;
9
9
  height: calc(100vh - 150px);
10
10
  position: fixed;
11
11
  width: 250px;
@@ -57,11 +57,11 @@ $sideber-width: 500px;
57
57
 
58
58
  .email-app-menu {
59
59
  .mb-3-compose {
60
- border-bottom: 1px solid $sideber-border;
60
+ border-bottom: 1px solid $sidebar-border;
61
61
  }
62
62
 
63
63
  .list-group-messages {
64
- border-bottom: 1px solid $sideber-border;
64
+ border-bottom: 1px solid $sidebar-border;
65
65
 
66
66
  a {
67
67
  font-size: 1.1rem;
@@ -118,7 +118,7 @@ $sideber-width: 500px;
118
118
 
119
119
  .email-app-options,
120
120
  .email-app-title {
121
- border-bottom: 1px solid $sideber-border;
121
+ border-bottom: 1px solid $sidebar-border;
122
122
  }
123
123
  }
124
124
 
@@ -128,7 +128,7 @@ $sideber-width: 500px;
128
128
  z-index: 999;
129
129
 
130
130
  fieldset {
131
- border-bottom: 1px solid $sideber-border;
131
+ border-bottom: 1px solid $sidebar-border;
132
132
  }
133
133
  }
134
134
  }