bulma-rails 0.1.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/assets/stylesheets/bulma.sass +7 -5
- data/app/assets/stylesheets/sass/base/_all.sass +5 -0
- data/app/assets/stylesheets/sass/base/generic.sass +7 -2
- data/app/assets/stylesheets/sass/base/helpers.sass +4 -1
- data/app/assets/stylesheets/sass/base/minireset.sass +81 -0
- data/app/assets/stylesheets/sass/components/_all.sass +13 -0
- data/app/assets/stylesheets/sass/components/level.sass +1 -1
- data/app/assets/stylesheets/sass/components/media.sass +8 -5
- data/app/assets/stylesheets/sass/components/message.sass +1 -1
- data/app/assets/stylesheets/sass/components/modal.sass +10 -5
- data/app/assets/stylesheets/sass/components/nav.sass +9 -2
- data/app/assets/stylesheets/sass/components/pagination.sass +2 -0
- data/app/assets/stylesheets/sass/components/tabs.sass +4 -2
- data/app/assets/stylesheets/sass/elements/_all.sass +13 -0
- data/app/assets/stylesheets/sass/elements/box.sass +1 -1
- data/app/assets/stylesheets/sass/elements/button.sass +8 -8
- data/app/assets/stylesheets/sass/elements/content.sass +2 -1
- data/app/assets/stylesheets/sass/elements/form.sass +23 -19
- data/app/assets/stylesheets/sass/elements/notification.sass +3 -2
- data/app/assets/stylesheets/sass/elements/other.sass +22 -101
- data/app/assets/stylesheets/sass/elements/progress.sass +1 -1
- data/app/assets/stylesheets/sass/elements/table.sass +18 -12
- data/app/assets/stylesheets/sass/elements/title.sass +1 -1
- data/app/assets/stylesheets/sass/grid/_all.sass +4 -0
- data/app/assets/stylesheets/sass/grid/columns.sass +251 -0
- data/app/assets/stylesheets/sass/grid/tiles.sass +32 -0
- data/app/assets/stylesheets/sass/layout/_all.sass +5 -0
- data/app/assets/stylesheets/sass/layout/hero.sass +6 -4
- data/app/assets/stylesheets/sass/utilities/_all.sass +6 -0
- data/app/assets/stylesheets/sass/utilities/controls.sass +28 -5
- data/app/assets/stylesheets/sass/utilities/functions.sass +2 -8
- data/app/assets/stylesheets/sass/utilities/mixins.sass +118 -0
- data/app/assets/stylesheets/sass/utilities/variables.sass +40 -62
- data/bulma-rails.gemspec +1 -1
- metadata +11 -2
data/bulma-rails.gemspec
CHANGED
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.
|
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-
|
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
|