bulma-rails 0.1.2 → 0.2.3

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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/assets/stylesheets/bulma.sass +7 -5
  4. data/app/assets/stylesheets/sass/base/_all.sass +5 -0
  5. data/app/assets/stylesheets/sass/base/generic.sass +7 -2
  6. data/app/assets/stylesheets/sass/base/helpers.sass +4 -1
  7. data/app/assets/stylesheets/sass/base/minireset.sass +81 -0
  8. data/app/assets/stylesheets/sass/components/_all.sass +13 -0
  9. data/app/assets/stylesheets/sass/components/level.sass +1 -1
  10. data/app/assets/stylesheets/sass/components/media.sass +8 -5
  11. data/app/assets/stylesheets/sass/components/message.sass +1 -1
  12. data/app/assets/stylesheets/sass/components/modal.sass +10 -5
  13. data/app/assets/stylesheets/sass/components/nav.sass +9 -2
  14. data/app/assets/stylesheets/sass/components/pagination.sass +2 -0
  15. data/app/assets/stylesheets/sass/components/tabs.sass +4 -2
  16. data/app/assets/stylesheets/sass/elements/_all.sass +13 -0
  17. data/app/assets/stylesheets/sass/elements/box.sass +1 -1
  18. data/app/assets/stylesheets/sass/elements/button.sass +8 -8
  19. data/app/assets/stylesheets/sass/elements/content.sass +2 -1
  20. data/app/assets/stylesheets/sass/elements/form.sass +23 -19
  21. data/app/assets/stylesheets/sass/elements/notification.sass +3 -2
  22. data/app/assets/stylesheets/sass/elements/other.sass +22 -101
  23. data/app/assets/stylesheets/sass/elements/progress.sass +1 -1
  24. data/app/assets/stylesheets/sass/elements/table.sass +18 -12
  25. data/app/assets/stylesheets/sass/elements/title.sass +1 -1
  26. data/app/assets/stylesheets/sass/grid/_all.sass +4 -0
  27. data/app/assets/stylesheets/sass/grid/columns.sass +251 -0
  28. data/app/assets/stylesheets/sass/grid/tiles.sass +32 -0
  29. data/app/assets/stylesheets/sass/layout/_all.sass +5 -0
  30. data/app/assets/stylesheets/sass/layout/hero.sass +6 -4
  31. data/app/assets/stylesheets/sass/utilities/_all.sass +6 -0
  32. data/app/assets/stylesheets/sass/utilities/controls.sass +28 -5
  33. data/app/assets/stylesheets/sass/utilities/functions.sass +2 -8
  34. data/app/assets/stylesheets/sass/utilities/mixins.sass +118 -0
  35. data/app/assets/stylesheets/sass/utilities/variables.sass +40 -62
  36. data/bulma-rails.gemspec +1 -1
  37. metadata +11 -2
data/bulma-rails.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = 'bulma-rails'
5
- gem.version = '0.1.2'
5
+ gem.version = '0.2.3'
6
6
  gem.date = Date.today
7
7
  gem.authors = ["Joshua Jansen"]
8
8
  gem.email = ["joshuajansen88@gmail.com"]
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.1.2
4
+ version: 0.2.3
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-08-22 00:00:00.000000000 Z
11
+ date: 2016-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -34,10 +34,13 @@ files:
34
34
  - ".gitignore"
35
35
  - README.md
36
36
  - app/assets/stylesheets/bulma.sass
37
+ - app/assets/stylesheets/sass/base/_all.sass
37
38
  - app/assets/stylesheets/sass/base/base.sass
38
39
  - app/assets/stylesheets/sass/base/classes.sass
39
40
  - app/assets/stylesheets/sass/base/generic.sass
40
41
  - app/assets/stylesheets/sass/base/helpers.sass
42
+ - app/assets/stylesheets/sass/base/minireset.sass
43
+ - app/assets/stylesheets/sass/components/_all.sass
41
44
  - app/assets/stylesheets/sass/components/card.sass
42
45
  - app/assets/stylesheets/sass/components/components.sass
43
46
  - app/assets/stylesheets/sass/components/grid.sass
@@ -51,6 +54,7 @@ files:
51
54
  - app/assets/stylesheets/sass/components/pagination.sass
52
55
  - app/assets/stylesheets/sass/components/panel.sass
53
56
  - app/assets/stylesheets/sass/components/tabs.sass
57
+ - app/assets/stylesheets/sass/elements/_all.sass
54
58
  - app/assets/stylesheets/sass/elements/box.sass
55
59
  - app/assets/stylesheets/sass/elements/button.sass
56
60
  - app/assets/stylesheets/sass/elements/content.sass
@@ -62,10 +66,15 @@ files:
62
66
  - app/assets/stylesheets/sass/elements/progress.sass
63
67
  - app/assets/stylesheets/sass/elements/table.sass
64
68
  - app/assets/stylesheets/sass/elements/title.sass
69
+ - app/assets/stylesheets/sass/grid/_all.sass
70
+ - app/assets/stylesheets/sass/grid/columns.sass
71
+ - app/assets/stylesheets/sass/grid/tiles.sass
72
+ - app/assets/stylesheets/sass/layout/_all.sass
65
73
  - app/assets/stylesheets/sass/layout/footer.sass
66
74
  - app/assets/stylesheets/sass/layout/hero.sass
67
75
  - app/assets/stylesheets/sass/layout/layout.sass
68
76
  - app/assets/stylesheets/sass/layout/section.sass
77
+ - app/assets/stylesheets/sass/utilities/_all.sass
69
78
  - app/assets/stylesheets/sass/utilities/animations.sass
70
79
  - app/assets/stylesheets/sass/utilities/controls.sass
71
80
  - app/assets/stylesheets/sass/utilities/functions.sass