viniBaxter-desk_front 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85caf181aa5112e4e0c8f1c7712b415b2ccb48b29ef7c48d98c1eeca9112ce06
4
- data.tar.gz: c9da50c0b8bef85659905075729bea1c5c5fbeb74f067c0a0a331c1eac226efa
3
+ metadata.gz: 7d355253bf957fbfc83bff2f3042571dfff51c2a03ae9d802410cd7f72c2f0bd
4
+ data.tar.gz: e3daa939c7c38d3942c29206f88bfbb1c8904953f18c11a97674cfd4130d55e4
5
5
  SHA512:
6
- metadata.gz: 982478aa6e608979b28a307aee8b9c4044f818385bbafd0f7e7c8a02ca5704e45ad90fcc0b96f8d7bfd44217914c7daeb8098f517d202ae61fc746f459b1ec51
7
- data.tar.gz: f99c3a70e95bdc40a0fbe4bec9d87d42d2326064279bdd241e37fd486a782842a976ec1f371dd68a065e4cc6fd551d4b7a7fd5d569d09ff4ca1278cc00661941
6
+ metadata.gz: 67bbad3366ab53a1d6fa64a4370d3e4496e884a4b17b61cf03befd5ab5cd6a4816afbde0f49366d8b7da5a1ba4328c2ae64c42d8d008093acd3c9a5e9093f72c
7
+ data.tar.gz: 1eddbf6a2d13e32d56bc57fc917e394b4334414f54e9c0c9e31edbf3dce6ba6248f6cdda47d760f5d48b1b230fa000f6d0e7d5ad23ce1cced763cad20a8a46a0
@@ -1,5 +1,5 @@
1
1
  module ViniBaxter
2
2
  module DeskFront
3
- VERSION = "0.3.0"
3
+ VERSION = "0.3.1"
4
4
  end
5
5
  end
@@ -1,5 +1,9 @@
1
- // Dashkit core
2
- @import './desk_front/dashkit/dashkit';
1
+
2
+ // becky tacher
3
+ @import "becky_thatcher";
3
4
 
4
5
  // administrate
5
6
  @import "./desk_front/administrate/index";
7
+
8
+ // Dashkit core
9
+ @import './desk_front/dashkit/dashkit';
@@ -2,7 +2,7 @@
2
2
 
3
3
  // the add the Administrate to overwritte some stuff
4
4
  // Adminitrate base FRONT
5
- @charset "utf-8";
5
+ // @charset "utf-8";
6
6
 
7
7
  @import "reset/normalize";
8
8
 
@@ -17,7 +17,7 @@
17
17
  @import "base/layout";
18
18
  @import "base/lists";
19
19
  @import "base/tables";
20
- @import "base/typography";
20
+ // @import "base/typography";
21
21
 
22
22
  @import "components/app-container";
23
23
  @import "components/attributes";
@@ -31,4 +31,4 @@
31
31
  @import "components/pagination";
32
32
  @import "components/search";
33
33
 
34
- @import "utilities/text-color";
34
+ @import "utilities/text-color";
@@ -19,10 +19,10 @@
19
19
  position: absolute;
20
20
  width: 0;
21
21
  height: 0;
22
- background-image: url(#{$path-to-img}/masks/avatar-status.svg),
23
- url(#{$path-to-img}/masks/avatar-group.svg),
24
- url(#{$path-to-img}/masks/avatar-group-hover.svg),
25
- url(#{$path-to-img}/masks/avatar-group-hover-last.svg);
22
+ background-image: url(image-path("desk_front/avatar-status.svg")),
23
+ url(image-path("desk_front/avatar-group.svg")),
24
+ url(image-path("desk_front/avatar-group-hover.svg")),
25
+ url(image-path("desk_front/avatar-group-hover-last.svg"));
26
26
  }
27
27
  }
28
28
 
@@ -36,3 +36,6 @@
36
36
  @import 'kanban';
37
37
  @import 'main-content';
38
38
  @import 'vendors';
39
+
40
+ // icon font is inside the app name => Feather
41
+ @import "feather";
@@ -0,0 +1,813 @@
1
+ .fe {
2
+ /* use !important to prevent issues with browser extensions that change fonts */
3
+ font-family: 'Feather' !important;
4
+ speak: none;
5
+ font-style: normal;
6
+ font-weight: normal;
7
+ font-variant: normal;
8
+ text-transform: none;
9
+ line-height: 1;
10
+
11
+ /* Better Font Rendering =========== */
12
+ -webkit-font-smoothing: antialiased;
13
+ -moz-osx-font-smoothing: grayscale;
14
+ }
15
+
16
+ .fe-activity:before {
17
+ content: "\e900";
18
+ }
19
+ .fe-airplay:before {
20
+ content: "\e901";
21
+ }
22
+ .fe-alert-circle:before {
23
+ content: "\e902";
24
+ }
25
+ .fe-alert-octagon:before {
26
+ content: "\e903";
27
+ }
28
+ .fe-alert-triangle:before {
29
+ content: "\e904";
30
+ }
31
+ .fe-align-center:before {
32
+ content: "\e905";
33
+ }
34
+ .fe-align-justify:before {
35
+ content: "\e906";
36
+ }
37
+ .fe-align-left:before {
38
+ content: "\e907";
39
+ }
40
+ .fe-align-right:before {
41
+ content: "\e908";
42
+ }
43
+ .fe-anchor:before {
44
+ content: "\e909";
45
+ }
46
+ .fe-aperture:before {
47
+ content: "\e90a";
48
+ }
49
+ .fe-archive:before {
50
+ content: "\e90b";
51
+ }
52
+ .fe-arrow-down:before {
53
+ content: "\e90c";
54
+ }
55
+ .fe-arrow-down-circle:before {
56
+ content: "\e90d";
57
+ }
58
+ .fe-arrow-down-left:before {
59
+ content: "\e90e";
60
+ }
61
+ .fe-arrow-down-right:before {
62
+ content: "\e90f";
63
+ }
64
+ .fe-arrow-left:before {
65
+ content: "\e910";
66
+ }
67
+ .fe-arrow-left-circle:before {
68
+ content: "\e911";
69
+ }
70
+ .fe-arrow-right:before {
71
+ content: "\e912";
72
+ }
73
+ .fe-arrow-right-circle:before {
74
+ content: "\e913";
75
+ }
76
+ .fe-arrow-up:before {
77
+ content: "\e914";
78
+ }
79
+ .fe-arrow-up-circle:before {
80
+ content: "\e915";
81
+ }
82
+ .fe-arrow-up-left:before {
83
+ content: "\e916";
84
+ }
85
+ .fe-arrow-up-right:before {
86
+ content: "\e917";
87
+ }
88
+ .fe-at-sign:before {
89
+ content: "\e918";
90
+ }
91
+ .fe-award:before {
92
+ content: "\e919";
93
+ }
94
+ .fe-bar-chart:before {
95
+ content: "\e91a";
96
+ }
97
+ .fe-bar-chart-2:before {
98
+ content: "\e91b";
99
+ }
100
+ .fe-battery:before {
101
+ content: "\e91c";
102
+ }
103
+ .fe-battery-charging:before {
104
+ content: "\e91d";
105
+ }
106
+ .fe-bell:before {
107
+ content: "\e91e";
108
+ }
109
+ .fe-bell-off:before {
110
+ content: "\e91f";
111
+ }
112
+ .fe-bluetooth:before {
113
+ content: "\e920";
114
+ }
115
+ .fe-bold:before {
116
+ content: "\e921";
117
+ }
118
+ .fe-book:before {
119
+ content: "\e922";
120
+ }
121
+ .fe-book-open:before {
122
+ content: "\e923";
123
+ }
124
+ .fe-bookmark:before {
125
+ content: "\e924";
126
+ }
127
+ .fe-box:before {
128
+ content: "\e925";
129
+ }
130
+ .fe-briefcase:before {
131
+ content: "\e926";
132
+ }
133
+ .fe-calendar:before {
134
+ content: "\e927";
135
+ }
136
+ .fe-camera:before {
137
+ content: "\e928";
138
+ }
139
+ .fe-camera-off:before {
140
+ content: "\e929";
141
+ }
142
+ .fe-cast:before {
143
+ content: "\e92a";
144
+ }
145
+ .fe-check:before {
146
+ content: "\e92b";
147
+ }
148
+ .fe-check-circle:before {
149
+ content: "\e92c";
150
+ }
151
+ .fe-check-square:before {
152
+ content: "\e92d";
153
+ }
154
+ .fe-chevron-down:before {
155
+ content: "\e92e";
156
+ }
157
+ .fe-chevron-left:before {
158
+ content: "\e92f";
159
+ }
160
+ .fe-chevron-right:before {
161
+ content: "\e930";
162
+ }
163
+ .fe-chevron-up:before {
164
+ content: "\e931";
165
+ }
166
+ .fe-chevrons-down:before {
167
+ content: "\e932";
168
+ }
169
+ .fe-chevrons-left:before {
170
+ content: "\e933";
171
+ }
172
+ .fe-chevrons-right:before {
173
+ content: "\e934";
174
+ }
175
+ .fe-chevrons-up:before {
176
+ content: "\e935";
177
+ }
178
+ .fe-chrome:before {
179
+ content: "\e936";
180
+ }
181
+ .fe-circle:before {
182
+ content: "\e937";
183
+ }
184
+ .fe-clipboard:before {
185
+ content: "\e938";
186
+ }
187
+ .fe-clock:before {
188
+ content: "\e939";
189
+ }
190
+ .fe-cloud:before {
191
+ content: "\e93a";
192
+ }
193
+ .fe-cloud-drizzle:before {
194
+ content: "\e93b";
195
+ }
196
+ .fe-cloud-lightning:before {
197
+ content: "\e93c";
198
+ }
199
+ .fe-cloud-off:before {
200
+ content: "\e93d";
201
+ }
202
+ .fe-cloud-rain:before {
203
+ content: "\e93e";
204
+ }
205
+ .fe-cloud-snow:before {
206
+ content: "\e93f";
207
+ }
208
+ .fe-code:before {
209
+ content: "\e940";
210
+ }
211
+ .fe-codepen:before {
212
+ content: "\e941";
213
+ }
214
+ .fe-command:before {
215
+ content: "\e942";
216
+ }
217
+ .fe-compass:before {
218
+ content: "\e943";
219
+ }
220
+ .fe-copy:before {
221
+ content: "\e944";
222
+ }
223
+ .fe-corner-down-left:before {
224
+ content: "\e945";
225
+ }
226
+ .fe-corner-down-right:before {
227
+ content: "\e946";
228
+ }
229
+ .fe-corner-left-down:before {
230
+ content: "\e947";
231
+ }
232
+ .fe-corner-left-up:before {
233
+ content: "\e948";
234
+ }
235
+ .fe-corner-right-down:before {
236
+ content: "\e949";
237
+ }
238
+ .fe-corner-right-up:before {
239
+ content: "\e94a";
240
+ }
241
+ .fe-corner-up-left:before {
242
+ content: "\e94b";
243
+ }
244
+ .fe-corner-up-right:before {
245
+ content: "\e94c";
246
+ }
247
+ .fe-cpu:before {
248
+ content: "\e94d";
249
+ }
250
+ .fe-credit-card:before {
251
+ content: "\e94e";
252
+ }
253
+ .fe-crop:before {
254
+ content: "\e94f";
255
+ }
256
+ .fe-crosshair:before {
257
+ content: "\e950";
258
+ }
259
+ .fe-database:before {
260
+ content: "\e951";
261
+ }
262
+ .fe-delete:before {
263
+ content: "\e952";
264
+ }
265
+ .fe-disc:before {
266
+ content: "\e953";
267
+ }
268
+ .fe-dollar-sign:before {
269
+ content: "\e954";
270
+ }
271
+ .fe-download:before {
272
+ content: "\e955";
273
+ }
274
+ .fe-download-cloud:before {
275
+ content: "\e956";
276
+ }
277
+ .fe-droplet:before {
278
+ content: "\e957";
279
+ }
280
+ .fe-edit:before {
281
+ content: "\e958";
282
+ }
283
+ .fe-edit-2:before {
284
+ content: "\e959";
285
+ }
286
+ .fe-edit-3:before {
287
+ content: "\e95a";
288
+ }
289
+ .fe-external-link:before {
290
+ content: "\e95b";
291
+ }
292
+ .fe-eye:before {
293
+ content: "\e95c";
294
+ }
295
+ .fe-eye-off:before {
296
+ content: "\e95d";
297
+ }
298
+ .fe-facebook:before {
299
+ content: "\e95e";
300
+ }
301
+ .fe-fast-forward:before {
302
+ content: "\e95f";
303
+ }
304
+ .fe-feather:before {
305
+ content: "\e960";
306
+ }
307
+ .fe-file:before {
308
+ content: "\e961";
309
+ }
310
+ .fe-file-minus:before {
311
+ content: "\e962";
312
+ }
313
+ .fe-file-plus:before {
314
+ content: "\e963";
315
+ }
316
+ .fe-file-text:before {
317
+ content: "\e964";
318
+ }
319
+ .fe-film:before {
320
+ content: "\e965";
321
+ }
322
+ .fe-filter:before {
323
+ content: "\e966";
324
+ }
325
+ .fe-flag:before {
326
+ content: "\e967";
327
+ }
328
+ .fe-folder:before {
329
+ content: "\e968";
330
+ }
331
+ .fe-folder-minus:before {
332
+ content: "\e969";
333
+ }
334
+ .fe-folder-plus:before {
335
+ content: "\e96a";
336
+ }
337
+ .fe-gift:before {
338
+ content: "\e96b";
339
+ }
340
+ .fe-git-branch:before {
341
+ content: "\e96c";
342
+ }
343
+ .fe-git-commit:before {
344
+ content: "\e96d";
345
+ }
346
+ .fe-git-merge:before {
347
+ content: "\e96e";
348
+ }
349
+ .fe-git-pull-request:before {
350
+ content: "\e96f";
351
+ }
352
+ .fe-github:before {
353
+ content: "\e970";
354
+ }
355
+ .fe-gitlab:before {
356
+ content: "\e971";
357
+ }
358
+ .fe-globe:before {
359
+ content: "\e972";
360
+ }
361
+ .fe-grid:before {
362
+ content: "\e973";
363
+ }
364
+ .fe-hard-drive:before {
365
+ content: "\e974";
366
+ }
367
+ .fe-hash:before {
368
+ content: "\e975";
369
+ }
370
+ .fe-headphones:before {
371
+ content: "\e976";
372
+ }
373
+ .fe-heart:before {
374
+ content: "\e977";
375
+ }
376
+ .fe-help-circle:before {
377
+ content: "\e978";
378
+ }
379
+ .fe-home:before {
380
+ content: "\e979";
381
+ }
382
+ .fe-image:before {
383
+ content: "\e97a";
384
+ }
385
+ .fe-inbox:before {
386
+ content: "\e97b";
387
+ }
388
+ .fe-info:before {
389
+ content: "\e97c";
390
+ }
391
+ .fe-instagram:before {
392
+ content: "\e97d";
393
+ }
394
+ .fe-italic:before {
395
+ content: "\e97e";
396
+ }
397
+ .fe-layers:before {
398
+ content: "\e97f";
399
+ }
400
+ .fe-layout:before {
401
+ content: "\e980";
402
+ }
403
+ .fe-life-buoy:before {
404
+ content: "\e981";
405
+ }
406
+ .fe-link:before {
407
+ content: "\e982";
408
+ }
409
+ .fe-link-2:before {
410
+ content: "\e983";
411
+ }
412
+ .fe-linkedin:before {
413
+ content: "\e984";
414
+ }
415
+ .fe-list:before {
416
+ content: "\e985";
417
+ }
418
+ .fe-loader:before {
419
+ content: "\e986";
420
+ }
421
+ .fe-lock:before {
422
+ content: "\e987";
423
+ }
424
+ .fe-log-in:before {
425
+ content: "\e988";
426
+ }
427
+ .fe-log-out:before {
428
+ content: "\e989";
429
+ }
430
+ .fe-mail:before {
431
+ content: "\e98a";
432
+ }
433
+ .fe-map:before {
434
+ content: "\e98b";
435
+ }
436
+ .fe-map-pin:before {
437
+ content: "\e98c";
438
+ }
439
+ .fe-maximize:before {
440
+ content: "\e98d";
441
+ }
442
+ .fe-maximize-2:before {
443
+ content: "\e98e";
444
+ }
445
+ .fe-menu:before {
446
+ content: "\e98f";
447
+ }
448
+ .fe-message-circle:before {
449
+ content: "\e990";
450
+ }
451
+ .fe-message-square:before {
452
+ content: "\e991";
453
+ }
454
+ .fe-mic:before {
455
+ content: "\e992";
456
+ }
457
+ .fe-mic-off:before {
458
+ content: "\e993";
459
+ }
460
+ .fe-minimize:before {
461
+ content: "\e994";
462
+ }
463
+ .fe-minimize-2:before {
464
+ content: "\e995";
465
+ }
466
+ .fe-minus:before {
467
+ content: "\e996";
468
+ }
469
+ .fe-minus-circle:before {
470
+ content: "\e997";
471
+ }
472
+ .fe-minus-square:before {
473
+ content: "\e998";
474
+ }
475
+ .fe-monitor:before {
476
+ content: "\e999";
477
+ }
478
+ .fe-moon:before {
479
+ content: "\e99a";
480
+ }
481
+ .fe-more-horizontal:before {
482
+ content: "\e99b";
483
+ }
484
+ .fe-more-vertical:before {
485
+ content: "\e99c";
486
+ }
487
+ .fe-move:before {
488
+ content: "\e99d";
489
+ }
490
+ .fe-music:before {
491
+ content: "\e99e";
492
+ }
493
+ .fe-navigation:before {
494
+ content: "\e99f";
495
+ }
496
+ .fe-navigation-2:before {
497
+ content: "\e9a0";
498
+ }
499
+ .fe-octagon:before {
500
+ content: "\e9a1";
501
+ }
502
+ .fe-package:before {
503
+ content: "\e9a2";
504
+ }
505
+ .fe-paperclip:before {
506
+ content: "\e9a3";
507
+ }
508
+ .fe-pause:before {
509
+ content: "\e9a4";
510
+ }
511
+ .fe-pause-circle:before {
512
+ content: "\e9a5";
513
+ }
514
+ .fe-percent:before {
515
+ content: "\e9a6";
516
+ }
517
+ .fe-phone:before {
518
+ content: "\e9a7";
519
+ }
520
+ .fe-phone-call:before {
521
+ content: "\e9a8";
522
+ }
523
+ .fe-phone-forwarded:before {
524
+ content: "\e9a9";
525
+ }
526
+ .fe-phone-incoming:before {
527
+ content: "\e9aa";
528
+ }
529
+ .fe-phone-missed:before {
530
+ content: "\e9ab";
531
+ }
532
+ .fe-phone-off:before {
533
+ content: "\e9ac";
534
+ }
535
+ .fe-phone-outgoing:before {
536
+ content: "\e9ad";
537
+ }
538
+ .fe-pie-chart:before {
539
+ content: "\e9ae";
540
+ }
541
+ .fe-play:before {
542
+ content: "\e9af";
543
+ }
544
+ .fe-play-circle:before {
545
+ content: "\e9b0";
546
+ }
547
+ .fe-plus:before {
548
+ content: "\e9b1";
549
+ }
550
+ .fe-plus-circle:before {
551
+ content: "\e9b2";
552
+ }
553
+ .fe-plus-square:before {
554
+ content: "\e9b3";
555
+ }
556
+ .fe-pocket:before {
557
+ content: "\e9b4";
558
+ }
559
+ .fe-power:before {
560
+ content: "\e9b5";
561
+ }
562
+ .fe-printer:before {
563
+ content: "\e9b6";
564
+ }
565
+ .fe-radio:before {
566
+ content: "\e9b7";
567
+ }
568
+ .fe-refresh-ccw:before {
569
+ content: "\e9b8";
570
+ }
571
+ .fe-refresh-cw:before {
572
+ content: "\e9b9";
573
+ }
574
+ .fe-repeat:before {
575
+ content: "\e9ba";
576
+ }
577
+ .fe-rewind:before {
578
+ content: "\e9bb";
579
+ }
580
+ .fe-rotate-ccw:before {
581
+ content: "\e9bc";
582
+ }
583
+ .fe-rotate-cw:before {
584
+ content: "\e9bd";
585
+ }
586
+ .fe-rss:before {
587
+ content: "\e9be";
588
+ }
589
+ .fe-save:before {
590
+ content: "\e9bf";
591
+ }
592
+ .fe-scissors:before {
593
+ content: "\e9c0";
594
+ }
595
+ .fe-search:before {
596
+ content: "\e9c1";
597
+ }
598
+ .fe-send:before {
599
+ content: "\e9c2";
600
+ }
601
+ .fe-server:before {
602
+ content: "\e9c3";
603
+ }
604
+ .fe-settings:before {
605
+ content: "\e9c4";
606
+ }
607
+ .fe-share:before {
608
+ content: "\e9c5";
609
+ }
610
+ .fe-share-2:before {
611
+ content: "\e9c6";
612
+ }
613
+ .fe-shield:before {
614
+ content: "\e9c7";
615
+ }
616
+ .fe-shield-off:before {
617
+ content: "\e9c8";
618
+ }
619
+ .fe-shopping-bag:before {
620
+ content: "\e9c9";
621
+ }
622
+ .fe-shopping-cart:before {
623
+ content: "\e9ca";
624
+ }
625
+ .fe-shuffle:before {
626
+ content: "\e9cb";
627
+ }
628
+ .fe-sidebar:before {
629
+ content: "\e9cc";
630
+ }
631
+ .fe-skip-back:before {
632
+ content: "\e9cd";
633
+ }
634
+ .fe-skip-forward:before {
635
+ content: "\e9ce";
636
+ }
637
+ .fe-slack:before {
638
+ content: "\e9cf";
639
+ }
640
+ .fe-slash:before {
641
+ content: "\e9d0";
642
+ }
643
+ .fe-sliders:before {
644
+ content: "\e9d1";
645
+ }
646
+ .fe-smartphone:before {
647
+ content: "\e9d2";
648
+ }
649
+ .fe-speaker:before {
650
+ content: "\e9d3";
651
+ }
652
+ .fe-square:before {
653
+ content: "\e9d4";
654
+ }
655
+ .fe-star:before {
656
+ content: "\e9d5";
657
+ }
658
+ .fe-stop-circle:before {
659
+ content: "\e9d6";
660
+ }
661
+ .fe-sun:before {
662
+ content: "\e9d7";
663
+ }
664
+ .fe-sunrise:before {
665
+ content: "\e9d8";
666
+ }
667
+ .fe-sunset:before {
668
+ content: "\e9d9";
669
+ }
670
+ .fe-tablet:before {
671
+ content: "\e9da";
672
+ }
673
+ .fe-tag:before {
674
+ content: "\e9db";
675
+ }
676
+ .fe-target:before {
677
+ content: "\e9dc";
678
+ }
679
+ .fe-terminal:before {
680
+ content: "\e9dd";
681
+ }
682
+ .fe-thermometer:before {
683
+ content: "\e9de";
684
+ }
685
+ .fe-thumbs-down:before {
686
+ content: "\e9df";
687
+ }
688
+ .fe-thumbs-up:before {
689
+ content: "\e9e0";
690
+ }
691
+ .fe-toggle-left:before {
692
+ content: "\e9e1";
693
+ }
694
+ .fe-toggle-right:before {
695
+ content: "\e9e2";
696
+ }
697
+ .fe-trash:before {
698
+ content: "\e9e3";
699
+ }
700
+ .fe-trash-2:before {
701
+ content: "\e9e4";
702
+ }
703
+ .fe-trending-down:before {
704
+ content: "\e9e5";
705
+ }
706
+ .fe-trending-up:before {
707
+ content: "\e9e6";
708
+ }
709
+ .fe-triangle:before {
710
+ content: "\e9e7";
711
+ }
712
+ .fe-truck:before {
713
+ content: "\e9e8";
714
+ }
715
+ .fe-tv:before {
716
+ content: "\e9e9";
717
+ }
718
+ .fe-twitter:before {
719
+ content: "\e9ea";
720
+ }
721
+ .fe-type:before {
722
+ content: "\e9eb";
723
+ }
724
+ .fe-umbrella:before {
725
+ content: "\e9ec";
726
+ }
727
+ .fe-underline:before {
728
+ content: "\e9ed";
729
+ }
730
+ .fe-unlock:before {
731
+ content: "\e9ee";
732
+ }
733
+ .fe-upload:before {
734
+ content: "\e9ef";
735
+ }
736
+ .fe-upload-cloud:before {
737
+ content: "\e9f0";
738
+ }
739
+ .fe-user:before {
740
+ content: "\e9f1";
741
+ }
742
+ .fe-user-check:before {
743
+ content: "\e9f2";
744
+ }
745
+ .fe-user-minus:before {
746
+ content: "\e9f3";
747
+ }
748
+ .fe-user-plus:before {
749
+ content: "\e9f4";
750
+ }
751
+ .fe-user-x:before {
752
+ content: "\e9f5";
753
+ }
754
+ .fe-users:before {
755
+ content: "\e9f6";
756
+ }
757
+ .fe-video:before {
758
+ content: "\e9f7";
759
+ }
760
+ .fe-video-off:before {
761
+ content: "\e9f8";
762
+ }
763
+ .fe-voicemail:before {
764
+ content: "\e9f9";
765
+ }
766
+ .fe-volume:before {
767
+ content: "\e9fa";
768
+ }
769
+ .fe-volume-1:before {
770
+ content: "\e9fb";
771
+ }
772
+ .fe-volume-2:before {
773
+ content: "\e9fc";
774
+ }
775
+ .fe-volume-x:before {
776
+ content: "\e9fd";
777
+ }
778
+ .fe-watch:before {
779
+ content: "\e9fe";
780
+ }
781
+ .fe-wifi:before {
782
+ content: "\e9ff";
783
+ }
784
+ .fe-wifi-off:before {
785
+ content: "\ea00";
786
+ }
787
+ .fe-wind:before {
788
+ content: "\ea01";
789
+ }
790
+ .fe-x:before {
791
+ content: "\ea02";
792
+ }
793
+ .fe-x-circle:before {
794
+ content: "\ea03";
795
+ }
796
+ .fe-x-square:before {
797
+ content: "\ea04";
798
+ }
799
+ .fe-youtube:before {
800
+ content: "\ea05";
801
+ }
802
+ .fe-zap:before {
803
+ content: "\ea06";
804
+ }
805
+ .fe-zap-off:before {
806
+ content: "\ea07";
807
+ }
808
+ .fe-zoom-in:before {
809
+ content: "\ea08";
810
+ }
811
+ .fe-zoom-out:before {
812
+ content: "\ea09";
813
+ }
@@ -1,9 +1,9 @@
1
- //
1
+ //
2
2
  // tables.scss
3
3
  // Extended from Bootstrap
4
4
  //
5
5
 
6
- //
6
+ //
7
7
  // Bootstrap Overrides =====================================
8
8
  //
9
9
 
@@ -1,9 +1,9 @@
1
- //
1
+ //
2
2
  // type.scss
3
3
  // Extended from Bootstrap
4
4
  //
5
5
 
6
- //
6
+ //
7
7
  // Bootstrap Overrides =====================================
8
8
  //
9
9
 
@@ -82,34 +82,3 @@ a, button {
82
82
  outline: none !important;
83
83
  }
84
84
  }
85
-
86
-
87
- //
88
- // Dashkit =====================================
89
- //
90
-
91
- // Include Cerebri Sans
92
-
93
- @font-face {
94
- font-family: 'Cerebri Sans';
95
- src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-regular.eot');
96
- src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-regular.eot?#iefix') format('embedded-opentype'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-regular.woff') format('woff'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-regular.ttf') format('truetype');
97
- font-weight: 400;
98
- font-style: normal;
99
- }
100
-
101
- @font-face {
102
- font-family: 'Cerebri Sans';
103
- src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-medium.eot');
104
- src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-medium.eot?#iefix') format('embedded-opentype'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-medium.woff') format('woff'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-medium.ttf') format('truetype');
105
- font-weight: 500;
106
- font-style: normal;
107
- }
108
-
109
- @font-face {
110
- font-family: 'Cerebri Sans';
111
- src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-semibold.eot');
112
- src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-semibold.eot?#iefix') format('embedded-opentype'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-semibold.woff') format('woff'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-semibold.ttf') format('truetype');
113
- font-weight: 600;
114
- font-style: normal;
115
- }
@@ -27,6 +27,8 @@ Gem::Specification.new do |spec|
27
27
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
28
  spec.require_paths = ["lib"]
29
29
 
30
+ spec.add_dependency 'vbax-becky_thatcher', '~> 0.9.0'
31
+
30
32
  spec.add_development_dependency "bundler", "~> 2.0"
31
33
  spec.add_development_dependency "rake", "~> 10.0"
32
34
  spec.add_development_dependency "rspec", "~> 3.0"
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: viniBaxter-desk_front
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - viny baxter
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-08 00:00:00.000000000 Z
11
+ date: 2020-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: vbax-becky_thatcher
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.9.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.9.0
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: bundler
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -121,6 +135,7 @@ files:
121
135
  - lib/viniBaxter/sass/desk_front/dashkit/_custom-forms.scss
122
136
  - lib/viniBaxter/sass/desk_front/dashkit/_dashkit.scss
123
137
  - lib/viniBaxter/sass/desk_front/dashkit/_dropdowns.scss
138
+ - lib/viniBaxter/sass/desk_front/dashkit/_feather.scss
124
139
  - lib/viniBaxter/sass/desk_front/dashkit/_forms.scss
125
140
  - lib/viniBaxter/sass/desk_front/dashkit/_header.scss
126
141
  - lib/viniBaxter/sass/desk_front/dashkit/_icon.scss