ellipsis-compass 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +8 -8
  2. data/stylesheets/ellipsis/animation/_transitions.scss +0 -318
  3. data/stylesheets/ellipsis/base/_breakpoints.scss +1 -1
  4. data/stylesheets/ellipsis/base/_document.scss +21 -1
  5. data/stylesheets/ellipsis/base/_global.scss +9 -8
  6. data/stylesheets/ellipsis/component/_element.scss +81 -0
  7. data/stylesheets/ellipsis/component/_ui.scss +94 -22
  8. data/stylesheets/ellipsis/font/_icons.scss +229 -8
  9. data/stylesheets/ellipsis/form/_form.scss +284 -184
  10. data/stylesheets/ellipsis/grid/_grid.scss +21 -1
  11. data/stylesheets/ellipsis/helpers/_component.scss +9 -1
  12. data/stylesheets/ellipsis/helpers/_mixins.scss +13 -194
  13. data/stylesheets/ellipsis/helpers/_visibility.scss +3 -3
  14. data/stylesheets/ellipsis/touch/ui/_topbar.scss +11 -0
  15. data/stylesheets/ellipsis/typography/_typography.scss +1 -1
  16. data/stylesheets/ellipsis/ui/_carousel.scss +275 -132
  17. data/stylesheets/ellipsis/ui/_collapse.scss +174 -0
  18. data/stylesheets/ellipsis/ui/_container.scss +317 -1
  19. data/stylesheets/ellipsis/ui/_drawer.scss +29 -5
  20. data/stylesheets/ellipsis/ui/_dropdown.scss +103 -52
  21. data/stylesheets/ellipsis/ui/_gallery.scss +85 -81
  22. data/stylesheets/ellipsis/ui/_menu.scss +130 -82
  23. data/stylesheets/ellipsis/ui/_navbar.scss +82 -30
  24. data/stylesheets/ellipsis/ui/_pagination.scss +12 -9
  25. data/stylesheets/ellipsis/ui/_screentab.scss +109 -0
  26. data/stylesheets/ellipsis/ui/_slidingpanel.scss +1 -1
  27. data/stylesheets/ellipsis/ui/_social.scss +51 -49
  28. data/stylesheets/ellipsis/ui/_stepprogress.scss +219 -0
  29. data/stylesheets/ellipsis/ui/_toggle.scss +5 -2
  30. data/stylesheets/ellipsis/ui/_tooltip.scss +5 -3
  31. data/stylesheets/ellipsis/ui/_topbar.scss +90 -16
  32. data/stylesheets/ellipsis/ui/_window.scss +13 -8
  33. metadata +6 -3
  34. data/stylesheets/ellipsis/ui/_collapsible.scss +0 -61
@@ -0,0 +1,81 @@
1
+
2
+ //mixin for generating element outer css wrapper class scope, given the 5 input params
3
+
4
+ @mixin element-tag($primary-tag:null,$tags:null,$template-tag:null,$component-class:null,$class:null){
5
+ $component-tags:null;
6
+ @if $primary-tag != null{
7
+ $component-tags: append($component-tags,$primary-tag,comma);
8
+ }
9
+ @if $tags != null {
10
+ $component-tags: append($component-tags,$tags, comma);
11
+ }
12
+
13
+ @if $component-class == null{
14
+ #{$component-tags}{
15
+ @if $class != null{
16
+ &.#{$class} {
17
+ @if $template-tag != null {
18
+ &>#{$template-tag}{
19
+ @content;
20
+ }
21
+ }@else{
22
+ @content;
23
+ }
24
+ }
25
+ }@else{
26
+ @if $template-tag != null {
27
+ &>#{$template-tag}{
28
+ @content;
29
+ }
30
+ }@else{
31
+ @content;
32
+ }
33
+ }
34
+ }
35
+ }@else if $component-tags == null{
36
+ #{$component-class}{
37
+ @if $class != null{
38
+ &.#{$class} {
39
+ @if $template-tag != null {
40
+ &>#{$template-tag}{
41
+ @content;
42
+ }
43
+ }@else{
44
+ @content;
45
+ }
46
+ }
47
+ }@else{
48
+ @if $template-tag != null {
49
+ &>#{$template-tag}{
50
+ @content;
51
+ }
52
+ }@else{
53
+ @content;
54
+ }
55
+ }
56
+ }
57
+ }@else{
58
+ #{$component-class},#{$component-tags}{
59
+ @if $class != null{
60
+ &.#{$class} {
61
+ @if $template-tag != null {
62
+ &>#{$template-tag}{
63
+ @content;
64
+ }
65
+ }@else{
66
+ @content;
67
+ }
68
+ }
69
+ }@else{
70
+ @if $template-tag != null {
71
+ &>#{$template-tag}{
72
+ @content;
73
+ }
74
+ }@else{
75
+ @content;
76
+ }
77
+ }
78
+ }
79
+ }
80
+
81
+ }
@@ -60,6 +60,13 @@
60
60
  $component-input-icon-text-shadow: $component-default-text-shadow !default;
61
61
  $component-input-placeholder-color:#d4d4d4 !default;
62
62
 
63
+ //input-number
64
+ $component-input-number-background:$white !default;
65
+ $component-input-number-font-color:$global-font-color !default;
66
+ $component-input-number-border:#d6d6d6 !default;
67
+ $component-input-number-text-shadow:none !default;
68
+ $component-input-number-box-shadow:#f4f4f4 0 0 0 4px !default;
69
+
63
70
  //checkbox
64
71
  $component-checkbox-background:$white !default;
65
72
  $component-checkbox-font-color:$off-black !default;
@@ -176,15 +183,17 @@
176
183
  $component-refine-button-font-color: #5f5f5f !default;
177
184
  $component-refine-button-border: none !default;
178
185
 
179
- //refine-row
180
- $component-refine-row-background: $white !default;
181
- $component-refine-row-border: 1px solid #ccc !default;
186
+ //refine-filters
187
+ $component-refine-filters-background: $white !default;
188
+ $component-refine-filters-border: 1px solid #ccc !default;
189
+
190
+ //refine-selection-filters
191
+ $component-selection-filters-background: $white !default;
192
+ $component-selection-filters-font-color: #9b9b98 !default;
193
+ $component-selection-filters-font-color-hover: .7 !default;
194
+ $component-selection-filters-border: 1px solid #dadada !default;
195
+
182
196
 
183
- //refine-row-option
184
- $component-refine-row-option-background: $white !default;
185
- $component-refine-row-option-font-color: #9b9b98 !default;
186
- $component-refine-row-option-font-color-hover: .7 !default;
187
- $component-refine-row-option-border: 1px solid #dadada !default;
188
197
 
189
198
  //refine-summary
190
199
  $component-refine-summary-background: #f7f7f7 !default;
@@ -298,7 +307,8 @@
298
307
  $component-touch-black-font-color: $white !default;
299
308
  $component-touch-black-text-shadow: 0 1px 1px #373737 !default;
300
309
  $component-touch-black-border: 0 !default;
301
- $component-touch-black-box-shadow: rgba(0, 0, 0, .5) 0px 1px 2px !default;
310
+ $component-touch-black-box-shadow: none !default;
311
+ $component-touch-black-icon-color:darken(#999,5%) !default;
302
312
 
303
313
  //toggle-black
304
314
  $component-toggle-black-background: transparent !default;
@@ -328,6 +338,7 @@
328
338
  $component-touch-white-text-shadow: none !default;
329
339
  $component-touch-white-border: 0 !default;
330
340
  $component-touch-white-box-shadow: none !default;
341
+ $component-touch-white-icon-color: #55acee !default;
331
342
 
332
343
  //toggle-white
333
344
  $component-toggle-white-background: transparent !default;
@@ -358,6 +369,7 @@
358
369
  $component-touch-text-shadow: 0 1px 1px #373737 !default;
359
370
  $component-touch-border: 0 !default;
360
371
  $component-touch-box-shadow: rgba(0, 0, 0, .5) 0px 1px 2px !default;
372
+ $component-touch-icon-color: $white !default;
361
373
 
362
374
  //toggle
363
375
  $component-toggle-background: transparent !default;
@@ -404,6 +416,26 @@
404
416
  $component-touch-input-border:0 !default;
405
417
  $component-touch-input-box-shadow:inset 0px 1px 6px #999999 !default;
406
418
 
419
+ //touch-search
420
+ $component-touch-search-background: $white !default;
421
+ $component-touch-search-font-color:#666 !default;
422
+ $component-touch-search-text-shadow:none !default;
423
+ $component-touch-search-border:0 !default;
424
+ $component-touch-search-box-shadow:none !default;
425
+ $component-touch-search-icon-color:#b3b8ba !default;
426
+ $component-touch-search-placeholder-color:#ddd !default;
427
+
428
+ //touch-white-search
429
+ $component-touch-white-search-background:#a3acb2 !default;
430
+ $component-touch-white-search-background-hover:#a3acb2 !default;
431
+ $component-touch-white-search-background-active:#66757f !default;
432
+ $component-touch-white-search-font-color:#f1f2f3 !default;
433
+ $component-touch-white-search-text-shadow:none !default;
434
+ $component-touch-white-search-border:0 !default;
435
+ $component-touch-white-search-box-shadow:none !default;
436
+ $component-touch-white-search-icon-color:$white !default;
437
+ $component-touch-white-search-placeholder-color:#e5e7e9 !default;
438
+
407
439
 
408
440
  /** instantiate components -----------------------------------------------------------------------------------------*/
409
441
 
@@ -492,6 +524,16 @@
492
524
  $box-shadow:#f4f4f4 0 0 0 4px
493
525
  );
494
526
 
527
+ //input number
528
+ @include component($component:css-input-number,
529
+ $background: $component-input-number-background,
530
+ $font-color:$component-input-number-font-color,
531
+ $border: $component-input-number-border,
532
+ $text-shadow:$component-input-number-text-shadow,
533
+ $box-shadow:$component-input-number-box-shadow
534
+ );
535
+
536
+
495
537
  //file input
496
538
  @include component($component:css-input-file,
497
539
  $background: $component-input-file-background,
@@ -627,20 +669,23 @@
627
669
  $border: $component-refine-button-border
628
670
  );
629
671
 
630
- //refine row
631
- @include component($component:css-refine-row,
632
- $background: $component-refine-row-background,
633
- $border: $component-refine-row-border
672
+ //refine filters
673
+ @include component($component:css-refine-filters,
674
+ $background: $component-refine-filters-background,
675
+ $border: $component-refine-filters-border
634
676
  );
635
677
 
636
- //refine row option
637
- @include component($component:css-refine-row-option,
638
- $background: $component-refine-row-option-background,
639
- $font-color: $component-refine-row-option-font-color,
640
- $font-color-hover: $component-refine-row-option-font-color-hover,
641
- $border: $component-refine-row-option-border
678
+ //refine selection-filters
679
+ @include component($component:css-selection-filters,
680
+ $background: $component-selection-filters-background,
681
+ $font-color: $component-selection-filters-font-color,
682
+ $font-color-hover: $component-selection-filters-font-color-hover,
683
+ $border: $component-selection-filters-border
642
684
  );
643
685
 
686
+ //refine selection-filters-header
687
+ @include extend-component($component:css-selection-filters-header,$extend-component:css-selection-filters);
688
+
644
689
  //refine summary
645
690
  @include component($component:css-refine-summary,
646
691
  $background: $component-refine-summary-background,
@@ -800,7 +845,8 @@
800
845
  $font-color: $component-touch-black-font-color,
801
846
  $border: $component-touch-black-border,
802
847
  $text-shadow: $component-touch-black-text-shadow,
803
- $box-shadow: $component-touch-black-box-shadow
848
+ $box-shadow: $component-touch-black-box-shadow,
849
+ $icon-color: $component-touch-black-icon-color
804
850
  );
805
851
 
806
852
  //toggle-black
@@ -836,7 +882,8 @@
836
882
  $font-color: $component-touch-white-font-color,
837
883
  $border: $component-touch-white-border,
838
884
  $text-shadow: $component-touch-white-text-shadow,
839
- $box-shadow: $component-touch-white-box-shadow
885
+ $box-shadow: $component-touch-white-box-shadow,
886
+ $icon-color: $component-touch-white-icon-color
840
887
  );
841
888
 
842
889
  //toggle-white
@@ -875,7 +922,8 @@
875
922
  $font-color: $component-touch-font-color,
876
923
  $border: $component-touch-border,
877
924
  $text-shadow: $component-touch-text-shadow,
878
- $box-shadow: $component-touch-box-shadow
925
+ $box-shadow: $component-touch-box-shadow,
926
+ $icon-color: $component-touch-icon-color
879
927
  );
880
928
 
881
929
 
@@ -937,6 +985,30 @@
937
985
  $box-shadow: $component-touch-input-box-shadow
938
986
  );
939
987
 
988
+ //touch-search
989
+ @include touch-component($component:css-touch-search,
990
+ $background: $component-touch-search-background,
991
+ $font-color: $component-touch-search-font-color,
992
+ $border: $component-touch-search-border,
993
+ $text-shadow: $component-touch-search-text-shadow,
994
+ $box-shadow: $component-touch-search-box-shadow,
995
+ $icon-color: $component-touch-search-icon-color,
996
+ $placeholder-color: $component-touch-search-placeholder-color
997
+ );
998
+
999
+ //touch-search
1000
+ @include touch-component($component:css-touch-white-search,
1001
+ $background: $component-touch-white-search-background,
1002
+ $font-color: $component-touch-white-search-font-color,
1003
+ $border: $component-touch-white-search-border,
1004
+ $text-shadow: $component-touch-white-search-text-shadow,
1005
+ $box-shadow: $component-touch-white-search-box-shadow,
1006
+ $icon-color: $component-touch-white-search-icon-color,
1007
+ $placeholder-color: $component-touch-white-search-placeholder-color
1008
+ );
1009
+
1010
+
1011
+
940
1012
  }
941
1013
 
942
1014
 
@@ -1,4 +1,4 @@
1
- @mixin font-icons() {
1
+ @mixin font-icons(){
2
2
  @font-face {
3
3
  font-family: 'ellipsis';
4
4
  src:url('fonts/ellipsis.eot');
@@ -29,7 +29,7 @@
29
29
  you can use the generic selector below, but it's slower:
30
30
  [class*="icon-"] {
31
31
  */
32
- .icon-ui-lamp, .icon-ui-stack-2, .icon-ui-calendar, .icon-ui-remove-2, .icon-ui-remove, .icon-ui-camera, .icon-ui-camera-2, .icon-ui-microphone, .icon-ui-location, .icon-ui-notify, .icon-ui-arrow-left-3, .icon-ui-arrow-right-3, .icon-ui-shopping-bag, .icon-ui-social-pinterest, .icon-ui-arrow-up-4, .icon-ui-arrow-down-4, .icon-ui-refresh, .icon-ui-grid, .icon-ui-list, .icon-ui-arrow-up-3, .icon-ui-arrow-down-3, .icon-ui-arrow-left-4, .icon-ui-arrow-right-4, .icon-ui-circle-3, .icon-ui-arrow-up-2, .icon-ui-arrow-left-2, .icon-ui-arrow-down-2, .icon-ui-arrow-right-2, .icon-ui-arrow-down, .icon-ui-arrow-up, .icon-ui-arrow-right, .icon-ui-arrow-left, .icon-ui-toggle, .icon-ui-arrow-down-large, .icon-ui-arrow-up-large, .icon-caret-right, .icon-caret-down, .icon-caret-up, .icon-ui-checkmark, .icon-ui-search, .icon-ui-circle, .icon-ui-circle-2, .icon-ui-cart, .icon-ui-stack, .icon-ui-calendar-2, .icon-ui-database, .icon-tag, .icon-home, .icon-home-2, .icon-home-3, .icon-pencil, .icon-pencil-2, .icon-pen, .icon-blog, .icon-droplet, .icon-camera, .icon-music, .icon-headphones, .icon-play, .icon-camera-2, .icon-connection, .icon-feed, .icon-file, .icon-profile, .icon-file-2, .icon-file-3, .icon-file-4, .icon-copy, .icon-copy-2, .icon-copy-3, .icon-paste, .icon-paste-2, .icon-stack, .icon-folder, .icon-folder-open, .icon-tag-2, .icon-tags, .icon-ticket, .icon-cart, .icon-cart-2, .icon-cart-3, .icon-coin, .icon-credit, .icon-calculate, .icon-phone, .icon-address-book, .icon-notebook, .icon-envelop, .icon-pushpin, .icon-location, .icon-location-2, .icon-compass, .icon-map, .icon-map-2, .icon-history, .icon-clock, .icon-clock-2, .icon-calendar, .icon-calendar-2, .icon-print, .icon-keyboard, .icon-screen, .icon-laptop, .icon-mobile, .icon-mobile-2, .icon-tablet, .icon-tv, .icon-drawer, .icon-cabinet, .icon-bubbles, .icon-bubble, .icon-reply, .icon-forward, .icon-undo, .icon-flip, .icon-redo, .icon-undo-2, .icon-storage, .icon-disk, .icon-flip-2, .icon-redo-2, .icon-upload, .icon-download, .icon-box-remove, .icon-box-add, .icon-drawer-2, .icon-drawer-3, .icon-bubbles-2, .icon-bubble-2, .icon-bubbles-3, .icon-bubbles-4, .icon-user, .icon-user-2, .icon-users, .icon-user-3, .icon-user-4, .icon-quotes-left, .icon-spinner, .icon-spinner-2, .icon-spinner-3, .icon-spinner-4, .icon-spinner-5, .icon-spinner-6, .icon-search, .icon-zoom-in, .icon-zoom-out, .icon-expand, .icon-contract, .icon-expand-2, .icon-contract-2, .icon-key, .icon-lock, .icon-lock-2, .icon-unlocked, .icon-wrench, .icon-settings, .icon-equalizer, .icon-cog, .icon-cog-2, .icon-bug, .icon-pie, .icon-stats, .icon-bars, .icon-bars-2, .icon-gift, .icon-meter, .icon-meter2, .icon-mug, .icon-glass, .icon-dashboard, .icon-hammer, .icon-remove, .icon-remove-2, .icon-shield, .icon-lightning, .icon-switch, .icon-power-cord, .icon-signup, .icon-truck, .icon-airplane, .icon-briefcase, .icon-aid, .icon-food, .icon-accessibility, .icon-road, .icon-target, .icon-list, .icon-list-2, .icon-numbered-list, .icon-menu, .icon-menu-2, .icon-cloud, .icon-cloud-download, .icon-tree, .icon-cloud-upload, .icon-download-2, .icon-upload-2, .icon-download-3, .icon-upload-3, .icon-globe, .icon-earth, .icon-link, .icon-flag, .icon-attachment, .icon-happy, .icon-happy-2, .icon-thumbs-up, .icon-heart, .icon-heart-2, .icon-star, .icon-star-2, .icon-star-3, .icon-contrast, .icon-brightness-contrast, .icon-brightness-medium, .icon-bookmarks, .icon-eye, .icon-eye-blocked, .icon-eye-2, .icon-smiley, .icon-smiley-2, .icon-shocked, .icon-shocked-2, .icon-neutral, .icon-neutral-2, .icon-point-up, .icon-point-right, .icon-point-down, .icon-point-left, .icon-warning, .icon-notification, .icon-question, .icon-info, .icon-info-2, .icon-blocked, .icon-cancel-circle, .icon-checkmark-circle, .icon-spam, .icon-close, .icon-checkmark, .icon-checkmark-2, .icon-spell-check, .icon-minus, .icon-plus, .icon-enter, .icon-exit, .icon-play-2, .icon-pause, .icon-stop, .icon-backward, .icon-forward-2, .icon-play-3, .icon-pause-2, .icon-stop-2, .icon-backward-2, .icon-forward-3, .icon-first, .icon-last, .icon-previous, .icon-next, .icon-eject, .icon-volume-high, .icon-volume-medium, .icon-volume-low, .icon-volume-mute, .icon-volume-mute-2, .icon-volume-increase, .icon-volume-decrease, .icon-loop, .icon-loop-2, .icon-loop-3, .icon-shuffle, .icon-arrow-up-left, .icon-arrow-up, .icon-arrow-up-right, .icon-arrow-right, .icon-arrow-down-right, .icon-arrow-down, .icon-arrow-down-left, .icon-arrow-left, .icon-arrow-up-left-2, .icon-arrow-up-2, .icon-arrow-up-right-2, .icon-arrow-right-2, .icon-arrow-down-right-2, .icon-arrow-down-2, .icon-arrow-down-left-2, .icon-arrow-left-2, .icon-arrow-up-3, .icon-arrow-down-3, .icon-arrow-left-3, .icon-arrow-right-3, .icon-tab, .icon-checkbox-checked, .icon-checkbox-unchecked, .icon-checkbox-partial, .icon-radio-checked, .icon-radio-unchecked, .icon-crop, .icon-scissors, .icon-filter, .icon-filter-2, .icon-font, .icon-text-height, .icon-text-width, .icon-paragraph-center, .icon-paragraph-left, .icon-paragraph-justify, .icon-paragraph-right, .icon-paragraph-center-2, .icon-paragraph-left-2, .icon-right-to-left, .icon-left-to-right, .icon-insert-template, .icon-table, .icon-table-2, .icon-sigma, .icon-omega, .icon-strikethrough, .icon-italic, .icon-underline, .icon-bold, .icon-pilcrow, .icon-paragraph-right-2, .icon-paragraph-justify-2, .icon-indent-increase, .icon-indent-decrease, .icon-new-tab, .icon-embed, .icon-code, .icon-share, .icon-console, .icon-mail, .icon-mail-2, .icon-mail-3, .icon-mail-4, .icon-google, .icon-google-plus, .icon-google-plus-2, .icon-google-plus-3, .icon-google-plus-4, .icon-google-drive, .icon-facebook, .icon-facebook-2, .icon-facebook-3, .icon-instagram, .icon-twitter, .icon-twitter-2, .icon-feed-2, .icon-feed-3, .icon-feed-4, .icon-youtube, .icon-youtube-2, .icon-vimeo, .icon-vimeo2, .icon-vimeo-2, .icon-lanyrd, .icon-flickr, .icon-github, .icon-github-2, .icon-github-3, .icon-github-4, .icon-steam, .icon-deviantart, .icon-steam-2, .icon-deviantart-2, .icon-forrst, .icon-forrst-2, .icon-dribbble, .icon-dribbble-2, .icon-dribbble-3, .icon-picassa, .icon-picassa-2, .icon-flickr-2, .icon-flickr-3, .icon-flickr-4, .icon-github-5, .icon-wordpress, .icon-wordpress-2, .icon-joomla, .icon-blogger, .icon-blogger-2, .icon-tumblr, .icon-tumblr-2, .icon-yahoo, .icon-tux, .icon-apple, .icon-android, .icon-windows, .icon-finder, .icon-windows8, .icon-soundcloud, .icon-soundcloud-2, .icon-skype, .icon-paypal, .icon-foursquare, .icon-foursquare-2, .icon-paypal-2, .icon-paypal-3, .icon-reddit, .icon-linkedin, .icon-lastfm, .icon-lastfm-2, .icon-delicious, .icon-stumbleupon, .icon-stumbleupon-2, .icon-stackoverflow, .icon-pinterest, .icon-pinterest-2, .icon-xing, .icon-xing-2, .icon-flattr, .icon-yelp, .icon-libreoffice, .icon-file-pdf, .icon-file-openoffice, .icon-file-word, .icon-file-excel, .icon-file-zip, .icon-file-powerpoint, .icon-file-xml, .icon-file-css, .icon-html5, .icon-html5-2, .icon-css3, .icon-chrome, .icon-firefox, .icon-IE, .icon-opera, .icon-safari, .icon-cloud-2, .icon-lightning-2, .icon-rainy, .icon-rainy-2, .icon-windy, .icon-cloud-3, .icon-lightning-3, .icon-lightning-4, .icon-rainy-3, .icon-rainy-4, .icon-lines, .icon-weather, .icon-weather-2, .icon-weather-3, .icon-cloud-4, .icon-weather-4, .icon-cloudy, .icon-cloud-5, .icon-lightning-5, .icon-sun, .icon-cloudy-2, .icon-sunrise, .icon-snowy, .icon-snowy-2, .icon-weather-5, .icon-Celsius, .icon-Fahrenheit, .icon-none, .icon-compass-2, .icon-thermometer, .icon-ui-settings, .icon-ui-circle-small, .icon-caret-left, .icon-thumbs-up-2, .icon-twitter-3, .icon-close-2, .icon-ui-minus, .icon-ui-plus, .icon-users-2, .icon-ui-search-2, .icon-ui-path, .icon-marker, .icon-grid, .icon-pencil-3, .icon-grid-2, .icon-grid-3, .icon-ui-chevron-right, .icon-ui-chevron-left, .icon-ui-chevron-up, .icon-ui-chevron-down, .icon-close-2-2, .icon-ui-toggle-2 {
32
+ .icon-ui-lamp, .icon-ui-stack-2, .icon-ui-calendar, .icon-ui-remove-2, .icon-ui-remove, .icon-ui-camera, .icon-ui-camera-2, .icon-ui-microphone, .icon-ui-location, .icon-ui-notify, .icon-ui-arrow-left-3, .icon-ui-arrow-right-3, .icon-ui-shopping-bag, .icon-ui-social-pinterest, .icon-ui-arrow-up-4, .icon-ui-arrow-down-4, .icon-ui-refresh, .icon-ui-grid, .icon-ui-list, .icon-ui-arrow-up-3, .icon-ui-arrow-down-3, .icon-ui-arrow-left-4, .icon-ui-arrow-right-4, .icon-ui-circle-3, .icon-ui-arrow-up-2, .icon-ui-arrow-left-2, .icon-ui-arrow-down-2, .icon-ui-arrow-right-2, .icon-ui-arrow-down, .icon-ui-arrow-up, .icon-ui-arrow-right, .icon-ui-arrow-left, .icon-ui-togglex16, .icon-ui-arrow-down-large, .icon-ui-arrow-up-large, .icon-caret-right, .icon-caret-down, .icon-caret-up, .icon-ui-checkmark, .icon-ui-search, .icon-ui-circle, .icon-ui-circle-2, .icon-ui-cart, .icon-ui-stack, .icon-ui-calendar-2, .icon-ui-database, .icon-tag, .icon-home, .icon-home-2, .icon-home-3, .icon-pencil, .icon-pencil-2, .icon-pen, .icon-blog, .icon-droplet, .icon-camera, .icon-music, .icon-headphones, .icon-play, .icon-camera-2, .icon-connection, .icon-feed, .icon-file, .icon-profile, .icon-file-2, .icon-file-3, .icon-file-4, .icon-copy, .icon-copy-2, .icon-copy-3, .icon-paste, .icon-paste-2, .icon-stack, .icon-folder, .icon-folder-open, .icon-tag-2, .icon-tags, .icon-ticket, .icon-cart, .icon-cart-2, .icon-cart-3, .icon-coin, .icon-credit, .icon-calculate, .icon-phone, .icon-address-book, .icon-notebook, .icon-envelop, .icon-pushpin, .icon-location, .icon-location-2, .icon-compass, .icon-map, .icon-map-2, .icon-history, .icon-clock, .icon-clock-2, .icon-calendar, .icon-calendar-2, .icon-print, .icon-keyboard, .icon-screen, .icon-laptop, .icon-mobile, .icon-mobile-2, .icon-tablet, .icon-tv, .icon-drawer, .icon-cabinet, .icon-bubbles, .icon-bubble, .icon-reply, .icon-forward, .icon-undo, .icon-flip, .icon-redo, .icon-undo-2, .icon-storage, .icon-disk, .icon-flip-2, .icon-redo-2, .icon-upload, .icon-download, .icon-box-remove, .icon-box-add, .icon-drawer-2, .icon-drawer-3, .icon-bubbles-2, .icon-bubble-2, .icon-bubbles-3, .icon-bubbles-4, .icon-user, .icon-user-2, .icon-users, .icon-user-3, .icon-user-4, .icon-quotes-left, .icon-spinner, .icon-spinner-2, .icon-spinner-3, .icon-spinner-4, .icon-spinner-5, .icon-spinner-6, .icon-search, .icon-zoom-in, .icon-zoom-out, .icon-expand, .icon-contract, .icon-expand-2, .icon-contract-2, .icon-key, .icon-lock, .icon-lock-2, .icon-unlocked, .icon-wrench, .icon-settings, .icon-equalizer, .icon-cog, .icon-cog-2, .icon-bug, .icon-pie, .icon-stats, .icon-bars, .icon-bars-2, .icon-gift, .icon-meter, .icon-meter2, .icon-mug, .icon-glass, .icon-dashboard, .icon-hammer, .icon-remove, .icon-remove-2, .icon-shield, .icon-lightning, .icon-switch, .icon-power-cord, .icon-signup, .icon-truck, .icon-airplane, .icon-briefcase, .icon-aid, .icon-food, .icon-accessibility, .icon-road, .icon-target, .icon-list, .icon-list-2, .icon-numbered-list, .icon-menu, .icon-menu-2, .icon-cloud, .icon-cloud-download, .icon-tree, .icon-cloud-upload, .icon-download-2, .icon-upload-2, .icon-download-3, .icon-upload-3, .icon-globe, .icon-earth, .icon-link, .icon-flag, .icon-attachment, .icon-happy, .icon-happy-2, .icon-thumbs-up, .icon-heart, .icon-heart-2, .icon-star, .icon-star-2, .icon-star-3, .icon-contrast, .icon-brightness-contrast, .icon-brightness-medium, .icon-bookmarks, .icon-eye, .icon-eye-blocked, .icon-eye-2, .icon-smiley, .icon-smiley-2, .icon-shocked, .icon-shocked-2, .icon-neutral, .icon-neutral-2, .icon-point-up, .icon-point-right, .icon-point-down, .icon-point-left, .icon-warning, .icon-notification, .icon-question, .icon-info, .icon-info-2, .icon-blocked, .icon-cancel-circle, .icon-checkmark-circle, .icon-spam, .icon-close, .icon-checkmark, .icon-checkmark-2, .icon-spell-check, .icon-minus, .icon-plus, .icon-enter, .icon-exit, .icon-play-2, .icon-pause, .icon-stop, .icon-backward, .icon-forward-2, .icon-play-3, .icon-pause-2, .icon-stop-2, .icon-backward-2, .icon-forward-3, .icon-first, .icon-last, .icon-previous, .icon-next, .icon-eject, .icon-volume-high, .icon-volume-medium, .icon-volume-low, .icon-volume-mute, .icon-volume-mute-2, .icon-volume-increase, .icon-volume-decrease, .icon-loop, .icon-loop-2, .icon-loop-3, .icon-shuffle, .icon-arrow-up-left, .icon-arrow-up, .icon-arrow-up-right, .icon-arrow-right, .icon-arrow-down-right, .icon-arrow-down, .icon-arrow-down-left, .icon-arrow-left, .icon-arrow-up-left-2, .icon-arrow-up-2, .icon-arrow-up-right-2, .icon-arrow-right-2, .icon-arrow-down-right-2, .icon-arrow-down-2, .icon-arrow-down-left-2, .icon-arrow-left-2, .icon-arrow-up-3, .icon-arrow-down-3, .icon-arrow-left-3, .icon-arrow-right-3, .icon-tab, .icon-checkbox-checked, .icon-checkbox-unchecked, .icon-checkbox-partial, .icon-radio-checked, .icon-radio-unchecked, .icon-crop, .icon-scissors, .icon-filter, .icon-filter-2, .icon-font, .icon-text-height, .icon-text-width, .icon-paragraph-center, .icon-paragraph-left, .icon-paragraph-justify, .icon-paragraph-right, .icon-paragraph-center-2, .icon-paragraph-left-2, .icon-right-to-left, .icon-left-to-right, .icon-insert-template, .icon-table, .icon-table-2, .icon-sigma, .icon-omega, .icon-strikethrough, .icon-italic, .icon-underline, .icon-bold, .icon-pilcrow, .icon-paragraph-right-2, .icon-paragraph-justify-2, .icon-indent-increase, .icon-indent-decrease, .icon-new-tab, .icon-embed, .icon-code, .icon-share, .icon-console, .icon-mail, .icon-mail-2, .icon-mail-3, .icon-mail-4, .icon-google, .icon-google-plus, .icon-google-plus-2, .icon-google-plus-3, .icon-google-plus-4, .icon-google-drive, .icon-facebook, .icon-facebook-2, .icon-facebook-3, .icon-instagram, .icon-twitter, .icon-twitter-2, .icon-feed-2, .icon-feed-3, .icon-feed-4, .icon-youtube, .icon-youtube-2, .icon-vimeo, .icon-vimeo2, .icon-vimeo-2, .icon-lanyrd, .icon-flickr, .icon-github, .icon-github-2, .icon-github-3, .icon-github-4, .icon-steam, .icon-deviantart, .icon-steam-2, .icon-deviantart-2, .icon-forrst, .icon-forrst-2, .icon-dribbble, .icon-dribbble-2, .icon-dribbble-3, .icon-picassa, .icon-picassa-2, .icon-flickr-2, .icon-flickr-3, .icon-flickr-4, .icon-github-5, .icon-wordpress, .icon-wordpress-2, .icon-joomla, .icon-blogger, .icon-blogger-2, .icon-tumblr, .icon-tumblr-2, .icon-yahoo, .icon-tux, .icon-apple, .icon-android, .icon-windows, .icon-finder, .icon-windows8, .icon-soundcloud, .icon-soundcloud-2, .icon-skype, .icon-paypal, .icon-foursquare, .icon-foursquare-2, .icon-paypal-2, .icon-paypal-3, .icon-reddit, .icon-linkedin, .icon-lastfm, .icon-lastfm-2, .icon-delicious, .icon-stumbleupon, .icon-stumbleupon-2, .icon-stackoverflow, .icon-pinterest, .icon-pinterest-2, .icon-xing, .icon-xing-2, .icon-flattr, .icon-yelp, .icon-libreoffice, .icon-file-pdf, .icon-file-openoffice, .icon-file-word, .icon-file-excel, .icon-file-zip, .icon-file-powerpoint, .icon-file-xml, .icon-file-css, .icon-html5, .icon-html5-2, .icon-css3, .icon-chrome, .icon-firefox, .icon-IE, .icon-opera, .icon-safari, .icon-cloud-2, .icon-lightning-2, .icon-rainy, .icon-rainy-2, .icon-windy, .icon-cloud-3, .icon-lightning-3, .icon-lightning-4, .icon-rainy-3, .icon-rainy-4, .icon-lines, .icon-weather, .icon-weather-2, .icon-weather-3, .icon-cloud-4, .icon-weather-4, .icon-cloudy, .icon-cloud-5, .icon-lightning-5, .icon-sun, .icon-cloudy-2, .icon-sunrise, .icon-snowy, .icon-snowy-2, .icon-weather-5, .icon-Celsius, .icon-Fahrenheit, .icon-none, .icon-compass-2, .icon-thermometer, .icon-ui-settings, .icon-ui-circle-small, .icon-caret-left, .icon-thumbs-up-2, .icon-twitter-3, .icon-close-2, .icon-ui-minus, .icon-ui-plus, .icon-users-2, .icon-ui-search-2, .icon-ui-path, .icon-marker, .icon-grid, .icon-pencil-3, .icon-grid-2, .icon-grid-3, .icon-ui-chevron-right, .icon-ui-chevron-left, .icon-ui-chevron-up, .icon-ui-chevron-down, .icon-close-2-2, .icon-ui-togglex24, .icon-ui-shopping-bag-2, .icon-ui-help, .icon-ui-credit-card, .icon-ui-payment, .icon-ui-mail, .icon-ui-account, .icon-home-4, .icon-calendar-alt-stroke, .icon-stop-3, .icon-cog-3, .icon-magnifying-glass, .icon-ui-search-5, .icon-checkmark-3, .icon-forward-4, .icon-thumbs-down, .icon-ui-pencil-3, .icon-comment-alt2-fill, .icon-new-window, .icon-folder-stroke, .icon-ui-downloadx22, .icon-ui-chatx22, .icon-ui-archivex22, .icon-ui-userx22, .icon-ui-photoshopx22, .icon-ui-illustratorx22, .icon-ui-heartx22, .icon-ui-usersx22, .icon-ui-drawerx22, .icon-ui-locationx22, .icon-ui-minimizex22, .icon-ui-mobilex22, .icon-ui-mailx22, .icon-ui-linkx22, .icon-ui-searchx22, .icon-ui-settingsx22, .icon-ui-deletex22, .icon-ui-pencilx22, .icon-ui-infox22, .icon-ui-filex22, .icon-ui-clockx22, .icon-ui-pencil-2x22, .icon-ui-images-2x22, .icon-ui-imagesx22, .icon-ui-drawer-2x22, .icon-ui-sharex22, .icon-ui-listx22, .icon-ui-unlockedx22, .icon-ui-lockedx22, .icon-ui-refreshx22, .icon-ui-newx22, .icon-ui-rssx22, .icon-ui-starx22, .icon-ui-helpx22, .icon-ui-bagx22, .icon-ui-videox22, .icon-ui-picturesx22, .icon-ui-supportx22, .icon-ui-screenx22, .icon-ui-globex22, .icon-ui-bookmarkx22, .icon-thumbs-up-3, .icon-trashcan, .icon-folder-2, .icon-locked, .icon-credit-card, .icon-shopping-bag-fill, .icon-ui-toggle-2x24, .icon-ui-togglex16-2, .icon-ui-togglex22, .icon-ui-toggle-3x16, .icon-twitter-sq, .icon-google-sq, .icon-facebook-sq,.icon-female, .icon-male {
33
33
  font-family: 'ellipsis';
34
34
  speak: none;
35
35
  font-style: normal;
@@ -135,7 +135,7 @@
135
135
  .icon-ui-arrow-left:before {
136
136
  content: "\e0fa";
137
137
  }
138
- .icon-ui-toggle:before {
138
+ .icon-ui-togglex16:before {
139
139
  content: "\e0f7";
140
140
  }
141
141
  .icon-ui-arrow-down-large:before {
@@ -1482,11 +1482,232 @@
1482
1482
  .icon-close-2-2:before {
1483
1483
  content: "\e1e6";
1484
1484
  }
1485
- .icon-ui-toggle-2:before {
1485
+ .icon-ui-togglex24:before {
1486
1486
  content: "\e137";
1487
1487
  }
1488
-
1489
-
1490
-
1491
-
1488
+ .icon-ui-shopping-bag-2:before {
1489
+ content: "\e19a";
1490
+ }
1491
+ .icon-ui-help:before {
1492
+ content: "\e19b";
1493
+ }
1494
+ .icon-ui-credit-card:before {
1495
+ content: "\e19d";
1496
+ }
1497
+ .icon-ui-payment:before {
1498
+ content: "\e1ab";
1499
+ }
1500
+ .icon-ui-mail:before {
1501
+ content: "\e1b1";
1502
+ }
1503
+ .icon-ui-account:before {
1504
+ content: "\e1c6";
1505
+ }
1506
+ .icon-home-4:before {
1507
+ content: "\e1e7";
1508
+ }
1509
+ .icon-calendar-alt-stroke:before {
1510
+ content: "\e1e8";
1511
+ }
1512
+ .icon-stop-3:before {
1513
+ content: "\e1e9";
1514
+ }
1515
+ .icon-cog-3:before {
1516
+ content: "\e1ea";
1517
+ }
1518
+ .icon-magnifying-glass:before {
1519
+ content: "\e1eb";
1520
+ }
1521
+ .icon-ui-search-5:before {
1522
+ content: "\e1ec";
1523
+ }
1524
+ .icon-checkmark-3:before {
1525
+ content: "\e1f2";
1526
+ }
1527
+ .icon-forward-4:before {
1528
+ content: "\e1f5";
1529
+ }
1530
+ .icon-thumbs-down:before {
1531
+ content: "\e1f7";
1532
+ }
1533
+ .icon-ui-pencil-3:before {
1534
+ content: "\e1f8";
1535
+ }
1536
+ .icon-comment-alt2-fill:before {
1537
+ content: "\e1f9";
1538
+ }
1539
+ .icon-new-window:before {
1540
+ content: "\e1fa";
1541
+ }
1542
+ .icon-folder-stroke:before {
1543
+ content: "\e1fb";
1544
+ }
1545
+ .icon-ui-downloadx22:before {
1546
+ content: "\e1fc";
1547
+ }
1548
+ .icon-ui-chatx22:before {
1549
+ content: "\e1fd";
1550
+ }
1551
+ .icon-ui-archivex22:before {
1552
+ content: "\e1fe";
1553
+ }
1554
+ .icon-ui-userx22:before {
1555
+ content: "\e1ff";
1556
+ }
1557
+ .icon-ui-photoshopx22:before {
1558
+ content: "\e200";
1559
+ }
1560
+ .icon-ui-illustratorx22:before {
1561
+ content: "\e201";
1562
+ }
1563
+ .icon-ui-heartx22:before {
1564
+ content: "\e202";
1565
+ }
1566
+ .icon-ui-usersx22:before {
1567
+ content: "\e203";
1568
+ }
1569
+ .icon-ui-drawerx22:before {
1570
+ content: "\e204";
1571
+ }
1572
+ .icon-ui-locationx22:before {
1573
+ content: "\e205";
1574
+ }
1575
+ .icon-ui-minimizex22:before {
1576
+ content: "\e206";
1577
+ }
1578
+ .icon-ui-mobilex22:before {
1579
+ content: "\e207";
1580
+ }
1581
+ .icon-ui-mailx22:before {
1582
+ content: "\e208";
1583
+ }
1584
+ .icon-ui-linkx22:before {
1585
+ content: "\e209";
1586
+ }
1587
+ .icon-ui-searchx22:before {
1588
+ content: "\e20a";
1589
+ }
1590
+ .icon-ui-settingsx22:before {
1591
+ content: "\e20b";
1592
+ }
1593
+ .icon-ui-deletex22:before {
1594
+ content: "\e20c";
1595
+ }
1596
+ .icon-ui-pencilx22:before {
1597
+ content: "\e20d";
1598
+ }
1599
+ .icon-ui-infox22:before {
1600
+ content: "\e20e";
1601
+ }
1602
+ .icon-ui-filex22:before {
1603
+ content: "\e20f";
1604
+ }
1605
+ .icon-ui-clockx22:before {
1606
+ content: "\e210";
1607
+ }
1608
+ .icon-ui-pencil-2x22:before {
1609
+ content: "\e211";
1610
+ }
1611
+ .icon-ui-images-2x22:before {
1612
+ content: "\e212";
1613
+ }
1614
+ .icon-ui-imagesx22:before {
1615
+ content: "\e213";
1616
+ }
1617
+ .icon-ui-drawer-2x22:before {
1618
+ content: "\e214";
1619
+ }
1620
+ .icon-ui-sharex22:before {
1621
+ content: "\e215";
1622
+ }
1623
+ .icon-ui-listx22:before {
1624
+ content: "\e216";
1625
+ }
1626
+ .icon-ui-unlockedx22:before {
1627
+ content: "\e217";
1628
+ }
1629
+ .icon-ui-lockedx22:before {
1630
+ content: "\e218";
1631
+ }
1632
+ .icon-ui-refreshx22:before {
1633
+ content: "\e219";
1634
+ }
1635
+ .icon-ui-newx22:before {
1636
+ content: "\e21a";
1637
+ }
1638
+ .icon-ui-rssx22:before {
1639
+ content: "\e21b";
1640
+ }
1641
+ .icon-ui-starx22:before {
1642
+ content: "\e21c";
1643
+ }
1644
+ .icon-ui-helpx22:before {
1645
+ content: "\e21d";
1646
+ }
1647
+ .icon-ui-bagx22:before {
1648
+ content: "\e21e";
1649
+ }
1650
+ .icon-ui-videox22:before {
1651
+ content: "\e21f";
1652
+ }
1653
+ .icon-ui-picturesx22:before {
1654
+ content: "\e220";
1655
+ }
1656
+ .icon-ui-supportx22:before {
1657
+ content: "\e221";
1658
+ }
1659
+ .icon-ui-screenx22:before {
1660
+ content: "\e222";
1661
+ }
1662
+ .icon-ui-globex22:before {
1663
+ content: "\e223";
1664
+ }
1665
+ .icon-ui-bookmarkx22:before {
1666
+ content: "\e224";
1667
+ }
1668
+ .icon-thumbs-up-3:before {
1669
+ content: "\e1f6";
1670
+ }
1671
+ .icon-trashcan:before {
1672
+ content: "\e1ed";
1673
+ }
1674
+ .icon-folder-2:before {
1675
+ content: "\e1ee";
1676
+ }
1677
+ .icon-locked:before {
1678
+ content: "\e1ef";
1679
+ }
1680
+ .icon-credit-card:before {
1681
+ content: "\e1f1";
1682
+ }
1683
+ .icon-shopping-bag-fill:before {
1684
+ content: "\e1f0";
1685
+ }
1686
+ .icon-ui-toggle-2x24:before {
1687
+ content: "\e1f3";
1688
+ }
1689
+ .icon-ui-togglex16-2:before {
1690
+ content: "\e1f4";
1691
+ }
1692
+ .icon-ui-togglex22:before {
1693
+ content: "\e225";
1694
+ }
1695
+ .icon-ui-toggle-3x16:before {
1696
+ content: "\e226";
1697
+ }
1698
+ .icon-twitter-sq:before {
1699
+ content: "\e228";
1700
+ }
1701
+ .icon-google-sq:before {
1702
+ content: "\e229";
1703
+ }
1704
+ .icon-facebook-sq:before {
1705
+ content: "\e227";
1706
+ }
1707
+ .icon-female:before {
1708
+ content: "\f182";
1709
+ }
1710
+ .icon-male:before {
1711
+ content: "\f183";
1712
+ }
1492
1713
  }