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.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/app/assets/stylesheets/fix_addon.sass +0 -16
- data/app/assets/stylesheets/forms.sass +8 -0
- data/app/assets/stylesheets/notifications.sass +1 -1
- data/app/assets/stylesheets/ui_bibz.sass +4 -2
- data/lib/ui_bibz/infos.rb +1 -1
- data/lib/ui_bibz/ui/core/component.rb +1 -1
- data/lib/ui_bibz/ui/core/layouts/col.rb +3 -3
- data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +13 -3
- data/test/simple_form_test.rb +1 -1
- data/test/ui/core/forms/textareas/markdown_editor_field_test.rb +1 -1
- data/test/ui/core/notifications/progress_bar_test.rb +6 -6
- data/vendor/assets/stylesheets/fontawesome/_animated.scss +20 -0
- data/vendor/assets/stylesheets/fontawesome/_bordered-pulled.scss +20 -0
- data/vendor/assets/stylesheets/fontawesome/_core.scss +20 -0
- data/vendor/assets/stylesheets/fontawesome/_fixed-width.scss +6 -0
- data/vendor/assets/stylesheets/fontawesome/_icons.scss +1194 -0
- data/vendor/assets/stylesheets/fontawesome/_larger.scss +23 -0
- data/vendor/assets/stylesheets/fontawesome/_list.scss +18 -0
- data/vendor/assets/stylesheets/fontawesome/_mixins.scss +57 -0
- data/vendor/assets/stylesheets/fontawesome/_rotated-flipped.scss +23 -0
- data/vendor/assets/stylesheets/fontawesome/_screen-reader.scss +5 -0
- data/vendor/assets/stylesheets/fontawesome/_shims.scss +2066 -0
- data/vendor/assets/stylesheets/fontawesome/_stacked.scss +31 -0
- data/vendor/assets/stylesheets/fontawesome/_variables.scss +1207 -0
- data/vendor/assets/stylesheets/fontawesome/brands.scss +21 -0
- data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +16 -0
- data/vendor/assets/stylesheets/fontawesome/regular.scss +22 -0
- data/vendor/assets/stylesheets/fontawesome/solid.scss +23 -0
- data/vendor/assets/stylesheets/fontawesome/v4-shims.scss +6 -0
- metadata +20 -3
- 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
|
+
}
|