ui_bibz 2.0.9 → 2.0.10

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 (41) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/app/assets/stylesheets/ui_bibz.sass +2 -4
  4. data/lib/ui_bibz/infos.rb +2 -2
  5. data/lib/ui_bibz/utils/glyph_changer.rb +3 -0
  6. data/vendor/assets/fonts/fa-brands-400.eot +0 -0
  7. data/vendor/assets/fonts/fa-brands-400.svg +6 -0
  8. data/vendor/assets/fonts/fa-brands-400.ttf +0 -0
  9. data/vendor/assets/fonts/fa-brands-400.woff +0 -0
  10. data/vendor/assets/fonts/fa-brands-400.woff2 +0 -0
  11. data/vendor/assets/fonts/fa-regular-400.eot +0 -0
  12. data/vendor/assets/fonts/fa-regular-400.svg +3 -3
  13. data/vendor/assets/fonts/fa-regular-400.ttf +0 -0
  14. data/vendor/assets/fonts/fa-regular-400.woff +0 -0
  15. data/vendor/assets/fonts/fa-regular-400.woff2 +0 -0
  16. data/vendor/assets/fonts/fa-solid-900.eot +0 -0
  17. data/vendor/assets/fonts/fa-solid-900.svg +147 -15
  18. data/vendor/assets/fonts/fa-solid-900.ttf +0 -0
  19. data/vendor/assets/fonts/fa-solid-900.woff +0 -0
  20. data/vendor/assets/fonts/fa-solid-900.woff2 +0 -0
  21. data/vendor/assets/javascripts/all.js +3683 -3
  22. data/vendor/assets/stylesheets/all.min.css +5 -0
  23. metadata +3 -20
  24. data/vendor/assets/stylesheets/fontawesome/_animated.scss +0 -20
  25. data/vendor/assets/stylesheets/fontawesome/_bordered-pulled.scss +0 -20
  26. data/vendor/assets/stylesheets/fontawesome/_core.scss +0 -16
  27. data/vendor/assets/stylesheets/fontawesome/_fixed-width.scss +0 -6
  28. data/vendor/assets/stylesheets/fontawesome/_icons.scss +0 -1114
  29. data/vendor/assets/stylesheets/fontawesome/_larger.scss +0 -23
  30. data/vendor/assets/stylesheets/fontawesome/_list.scss +0 -18
  31. data/vendor/assets/stylesheets/fontawesome/_mixins.scss +0 -57
  32. data/vendor/assets/stylesheets/fontawesome/_rotated-flipped.scss +0 -23
  33. data/vendor/assets/stylesheets/fontawesome/_screen-reader.scss +0 -5
  34. data/vendor/assets/stylesheets/fontawesome/_shims.scss +0 -2066
  35. data/vendor/assets/stylesheets/fontawesome/_stacked.scss +0 -31
  36. data/vendor/assets/stylesheets/fontawesome/_variables.scss +0 -1127
  37. data/vendor/assets/stylesheets/fontawesome/fa-brands.scss +0 -17
  38. data/vendor/assets/stylesheets/fontawesome/fa-regular.scss +0 -18
  39. data/vendor/assets/stylesheets/fontawesome/fa-solid.scss +0 -19
  40. data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +0 -16
  41. data/vendor/assets/stylesheets/fontawesome/v4-shims.scss +0 -6
@@ -1,23 +0,0 @@
1
- // Icon Sizes
2
- // -------------------------
3
-
4
- // makes the font 33% larger relative to the icon container
5
- .#{$fa-css-prefix}-lg {
6
- font-size: (4em / 3);
7
- line-height: (3em / 4);
8
- vertical-align: -.0667em;
9
- }
10
-
11
- .#{$fa-css-prefix}-xs {
12
- font-size: .75em;
13
- }
14
-
15
- .#{$fa-css-prefix}-sm {
16
- font-size: .875em;
17
- }
18
-
19
- @for $i from 1 through 10 {
20
- .#{$fa-css-prefix}-#{$i}x {
21
- font-size: $i * 1em;
22
- }
23
- }
@@ -1,18 +0,0 @@
1
- // List Icons
2
- // -------------------------
3
-
4
- .#{$fa-css-prefix}-ul {
5
- list-style-type: none;
6
- margin-left: $fa-li-width * 5/4;
7
- padding-left: 0;
8
-
9
- > li { position: relative; }
10
- }
11
-
12
- .#{$fa-css-prefix}-li {
13
- left: -$fa-li-width;
14
- position: absolute;
15
- text-align: center;
16
- width: $fa-li-width;
17
- line-height: inherit;
18
- }
@@ -1,57 +0,0 @@
1
- // Mixins
2
- // --------------------------
3
-
4
- @mixin fa-icon {
5
- -webkit-font-smoothing: antialiased;
6
- -moz-osx-font-smoothing: grayscale;
7
- display: inline-block;
8
- font-style: normal;
9
- font-variant: normal;
10
- font-weight: normal;
11
- line-height: 1;
12
- vertical-align: -.125em;
13
- }
14
-
15
- @mixin fa-icon-rotate($degrees, $rotation) {
16
- -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
17
- transform: rotate($degrees);
18
- }
19
-
20
- @mixin fa-icon-flip($horiz, $vert, $rotation) {
21
- -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
22
- transform: scale($horiz, $vert);
23
- }
24
-
25
-
26
- // Only display content to screen readers. A la Bootstrap 4.
27
- //
28
- // See: http://a11yproject.com/posts/how-to-hide-content/
29
-
30
- @mixin sr-only {
31
- border: 0;
32
- clip: rect(0, 0, 0, 0);
33
- height: 1px;
34
- margin: -1px;
35
- overflow: hidden;
36
- padding: 0;
37
- position: absolute;
38
- width: 1px;
39
- }
40
-
41
- // Use in conjunction with .sr-only to only display content when it's focused.
42
- //
43
- // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
44
- //
45
- // Credit: HTML5 Boilerplate
46
-
47
- @mixin sr-only-focusable {
48
- &:active,
49
- &:focus {
50
- clip: auto;
51
- height: auto;
52
- margin: 0;
53
- overflow: visible;
54
- position: static;
55
- width: auto;
56
- }
57
- }
@@ -1,23 +0,0 @@
1
- // Rotated & Flipped Icons
2
- // -------------------------
3
-
4
- .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5
- .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6
- .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7
-
8
- .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9
- .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10
- .#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(-1, -1, 2); }
11
-
12
- // Hook for IE8-9
13
- // -------------------------
14
-
15
- :root {
16
- .#{$fa-css-prefix}-rotate-90,
17
- .#{$fa-css-prefix}-rotate-180,
18
- .#{$fa-css-prefix}-rotate-270,
19
- .#{$fa-css-prefix}-flip-horizontal,
20
- .#{$fa-css-prefix}-flip-vertical {
21
- filter: none;
22
- }
23
- }
@@ -1,5 +0,0 @@
1
- // Screen Readers
2
- // -------------------------
3
-
4
- .sr-only { @include sr-only; }
5
- .sr-only-focusable { @include sr-only-focusable; }