bulma-rails 0.0.24 → 0.0.26
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -1
- data/README.md +2 -2
- data/app/assets/stylesheets/sass/base/classes.sass +2 -0
- data/app/assets/stylesheets/sass/base/generic.sass +4 -3
- data/app/assets/stylesheets/sass/base/helpers.sass +44 -3
- data/app/assets/stylesheets/sass/components/card.sass +3 -4
- data/app/assets/stylesheets/sass/components/components.sass +2 -1
- data/app/assets/stylesheets/sass/components/grid.sass +0 -13
- data/app/assets/stylesheets/sass/components/level.sass +57 -0
- data/app/assets/stylesheets/sass/components/message.sass +1 -1
- data/app/assets/stylesheets/sass/components/modal.sass +40 -1
- data/app/assets/stylesheets/sass/components/nav.sass +120 -0
- data/app/assets/stylesheets/sass/components/navbar.sass +10 -2
- data/app/assets/stylesheets/sass/components/panel.sass +4 -2
- data/app/assets/stylesheets/sass/components/tabs.sass +68 -43
- data/app/assets/stylesheets/sass/elements/box.sass +4 -4
- data/app/assets/stylesheets/sass/elements/button.sass +14 -19
- data/app/assets/stylesheets/sass/elements/content.sass +6 -0
- data/app/assets/stylesheets/sass/elements/elements.sass +1 -2
- data/app/assets/stylesheets/sass/elements/{controls.sass → form.sass} +2 -50
- data/app/assets/stylesheets/sass/elements/other.sass +22 -16
- data/app/assets/stylesheets/sass/elements/table.sass +4 -2
- data/app/assets/stylesheets/sass/layout/footer.sass +8 -6
- data/app/assets/stylesheets/sass/layout/header.sass +7 -10
- data/app/assets/stylesheets/sass/layout/hero.sass +57 -62
- data/app/assets/stylesheets/sass/layout/layout.sass +0 -1
- data/app/assets/stylesheets/sass/layout/section.sass +1 -3
- data/app/assets/stylesheets/sass/utilities/controls.sass +51 -0
- data/app/assets/stylesheets/sass/utilities/functions.sass +1 -1
- data/app/assets/stylesheets/sass/utilities/mixins.sass +8 -7
- data/app/assets/stylesheets/sass/utilities/utilities.sass +1 -0
- data/app/assets/stylesheets/sass/utilities/variables.sass +8 -4
- data/bulma-rails.gemspec +1 -1
- metadata +6 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bulma-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.26
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua Jansen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|
@@ -42,10 +42,12 @@ files:
|
|
42
42
|
- app/assets/stylesheets/sass/components/components.sass
|
43
43
|
- app/assets/stylesheets/sass/components/grid.sass
|
44
44
|
- app/assets/stylesheets/sass/components/highlight.sass
|
45
|
+
- app/assets/stylesheets/sass/components/level.sass
|
45
46
|
- app/assets/stylesheets/sass/components/media.sass
|
46
47
|
- app/assets/stylesheets/sass/components/menu.sass
|
47
48
|
- app/assets/stylesheets/sass/components/message.sass
|
48
49
|
- app/assets/stylesheets/sass/components/modal.sass
|
50
|
+
- app/assets/stylesheets/sass/components/nav.sass
|
49
51
|
- app/assets/stylesheets/sass/components/navbar.sass
|
50
52
|
- app/assets/stylesheets/sass/components/pagination.sass
|
51
53
|
- app/assets/stylesheets/sass/components/panel.sass
|
@@ -53,8 +55,8 @@ files:
|
|
53
55
|
- app/assets/stylesheets/sass/elements/box.sass
|
54
56
|
- app/assets/stylesheets/sass/elements/button.sass
|
55
57
|
- app/assets/stylesheets/sass/elements/content.sass
|
56
|
-
- app/assets/stylesheets/sass/elements/controls.sass
|
57
58
|
- app/assets/stylesheets/sass/elements/elements.sass
|
59
|
+
- app/assets/stylesheets/sass/elements/form.sass
|
58
60
|
- app/assets/stylesheets/sass/elements/image.sass
|
59
61
|
- app/assets/stylesheets/sass/elements/notification.sass
|
60
62
|
- app/assets/stylesheets/sass/elements/other.sass
|
@@ -67,6 +69,7 @@ files:
|
|
67
69
|
- app/assets/stylesheets/sass/layout/layout.sass
|
68
70
|
- app/assets/stylesheets/sass/layout/section.sass
|
69
71
|
- app/assets/stylesheets/sass/utilities/animations.sass
|
72
|
+
- app/assets/stylesheets/sass/utilities/controls.sass
|
70
73
|
- app/assets/stylesheets/sass/utilities/functions.sass
|
71
74
|
- app/assets/stylesheets/sass/utilities/mixins.sass
|
72
75
|
- app/assets/stylesheets/sass/utilities/reset.sass
|