ui_bibz 2.1.1 → 2.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +3 -3
  3. data/app/assets/stylesheets/fix_addon.sass +0 -16
  4. data/app/assets/stylesheets/forms.sass +8 -0
  5. data/app/assets/stylesheets/notifications.sass +1 -1
  6. data/app/assets/stylesheets/ui_bibz.sass +4 -2
  7. data/lib/ui_bibz/infos.rb +1 -1
  8. data/lib/ui_bibz/ui/core/component.rb +1 -1
  9. data/lib/ui_bibz/ui/core/layouts/col.rb +3 -3
  10. data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +13 -3
  11. data/test/simple_form_test.rb +1 -1
  12. data/test/ui/core/forms/textareas/markdown_editor_field_test.rb +1 -1
  13. data/test/ui/core/notifications/progress_bar_test.rb +6 -6
  14. data/vendor/assets/stylesheets/fontawesome/_animated.scss +20 -0
  15. data/vendor/assets/stylesheets/fontawesome/_bordered-pulled.scss +20 -0
  16. data/vendor/assets/stylesheets/fontawesome/_core.scss +20 -0
  17. data/vendor/assets/stylesheets/fontawesome/_fixed-width.scss +6 -0
  18. data/vendor/assets/stylesheets/fontawesome/_icons.scss +1194 -0
  19. data/vendor/assets/stylesheets/fontawesome/_larger.scss +23 -0
  20. data/vendor/assets/stylesheets/fontawesome/_list.scss +18 -0
  21. data/vendor/assets/stylesheets/fontawesome/_mixins.scss +57 -0
  22. data/vendor/assets/stylesheets/fontawesome/_rotated-flipped.scss +23 -0
  23. data/vendor/assets/stylesheets/fontawesome/_screen-reader.scss +5 -0
  24. data/vendor/assets/stylesheets/fontawesome/_shims.scss +2066 -0
  25. data/vendor/assets/stylesheets/fontawesome/_stacked.scss +31 -0
  26. data/vendor/assets/stylesheets/fontawesome/_variables.scss +1207 -0
  27. data/vendor/assets/stylesheets/fontawesome/brands.scss +21 -0
  28. data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +16 -0
  29. data/vendor/assets/stylesheets/fontawesome/regular.scss +22 -0
  30. data/vendor/assets/stylesheets/fontawesome/solid.scss +23 -0
  31. data/vendor/assets/stylesheets/fontawesome/v4-shims.scss +6 -0
  32. metadata +20 -3
  33. data/vendor/assets/stylesheets/all.min.css +0 -5
@@ -0,0 +1,31 @@
1
+ // Stacked Icons
2
+ // -------------------------
3
+
4
+ .#{$fa-css-prefix}-stack {
5
+ display: inline-block;
6
+ height: 2em;
7
+ line-height: 2em;
8
+ position: relative;
9
+ vertical-align: middle;
10
+ width: 2em;
11
+ }
12
+
13
+ .#{$fa-css-prefix}-stack-1x,
14
+ .#{$fa-css-prefix}-stack-2x {
15
+ left: 0;
16
+ position: absolute;
17
+ text-align: center;
18
+ width: 100%;
19
+ }
20
+
21
+ .#{$fa-css-prefix}-stack-1x {
22
+ line-height: inherit;
23
+ }
24
+
25
+ .#{$fa-css-prefix}-stack-2x {
26
+ font-size: 2em;
27
+ }
28
+
29
+ .#{$fa-css-prefix}-inverse {
30
+ color: $fa-inverse;
31
+ }