bulma-rails 0.2.3 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/assets/stylesheets/bulma.sass +2 -1
  4. data/app/assets/stylesheets/sass/base/_all.sass +0 -0
  5. data/app/assets/stylesheets/sass/base/generic.sass +13 -11
  6. data/app/assets/stylesheets/sass/base/helpers.sass +0 -0
  7. data/app/assets/stylesheets/sass/base/minireset.sass +0 -0
  8. data/app/assets/stylesheets/sass/components/_all.sass +0 -1
  9. data/app/assets/stylesheets/sass/components/card.sass +10 -15
  10. data/app/assets/stylesheets/sass/components/level.sass +16 -6
  11. data/app/assets/stylesheets/sass/components/media.sass +13 -30
  12. data/app/assets/stylesheets/sass/components/menu.sass +11 -11
  13. data/app/assets/stylesheets/sass/components/message.sass +47 -25
  14. data/app/assets/stylesheets/sass/components/modal.sass +1 -0
  15. data/app/assets/stylesheets/sass/components/nav.sass +33 -44
  16. data/app/assets/stylesheets/sass/components/pagination.sass +124 -28
  17. data/app/assets/stylesheets/sass/components/panel.sass +52 -35
  18. data/app/assets/stylesheets/sass/components/tabs.sass +10 -35
  19. data/app/assets/stylesheets/sass/elements/_all.sass +2 -0
  20. data/app/assets/stylesheets/sass/elements/box.sass +1 -1
  21. data/app/assets/stylesheets/sass/elements/button.sass +125 -42
  22. data/app/assets/stylesheets/sass/elements/content.sass +54 -25
  23. data/app/assets/stylesheets/sass/elements/form.sass +136 -92
  24. data/app/assets/stylesheets/sass/elements/icon.sass +12 -0
  25. data/app/assets/stylesheets/sass/elements/image.sass +0 -0
  26. data/app/assets/stylesheets/sass/elements/notification.sass +9 -5
  27. data/app/assets/stylesheets/sass/elements/other.sass +9 -61
  28. data/app/assets/stylesheets/sass/elements/progress.sass +4 -4
  29. data/app/assets/stylesheets/sass/elements/table.sass +16 -45
  30. data/app/assets/stylesheets/sass/elements/tag.sass +29 -0
  31. data/app/assets/stylesheets/sass/elements/title.sass +25 -44
  32. data/app/assets/stylesheets/sass/grid/_all.sass +0 -0
  33. data/app/assets/stylesheets/sass/grid/columns.sass +8 -8
  34. data/app/assets/stylesheets/sass/grid/tiles.sass +8 -8
  35. data/app/assets/stylesheets/sass/layout/_all.sass +0 -0
  36. data/app/assets/stylesheets/sass/layout/footer.sass +1 -11
  37. data/app/assets/stylesheets/sass/layout/hero.sass +13 -12
  38. data/app/assets/stylesheets/sass/layout/section.sass +3 -3
  39. data/app/assets/stylesheets/sass/utilities/_all.sass +0 -0
  40. data/app/assets/stylesheets/sass/utilities/controls.sass +14 -52
  41. data/app/assets/stylesheets/sass/utilities/functions.sass +10 -2
  42. data/app/assets/stylesheets/sass/utilities/mixins.sass +41 -36
  43. data/app/assets/stylesheets/sass/utilities/variables.sass +28 -24
  44. data/bulma-rails.gemspec +1 -1
  45. metadata +4 -12
  46. data/app/assets/stylesheets/sass/base/base.sass +0 -5
  47. data/app/assets/stylesheets/sass/base/classes.sass +0 -20
  48. data/app/assets/stylesheets/sass/components/components.sass +0 -14
  49. data/app/assets/stylesheets/sass/components/grid.sass +0 -282
  50. data/app/assets/stylesheets/sass/components/highlight.sass +0 -123
  51. data/app/assets/stylesheets/sass/elements/elements.sass +0 -13
  52. data/app/assets/stylesheets/sass/layout/layout.sass +0 -5
  53. data/app/assets/stylesheets/sass/utilities/animations.sass +0 -5
  54. data/app/assets/stylesheets/sass/utilities/reset.sass +0 -174
  55. data/app/assets/stylesheets/sass/utilities/utilities.sass +0 -8
@@ -1,13 +0,0 @@
1
- @charset "utf-8"
2
-
3
- @import "box"
4
- @import "button"
5
- @import "content"
6
- @import "form"
7
- @import "image"
8
- @import "notification"
9
- @import "progress"
10
- @import "table"
11
- @import "title"
12
-
13
- @import "other"
@@ -1,5 +0,0 @@
1
- @charset "utf-8"
2
-
3
- @import "hero"
4
- @import "section"
5
- @import "footer"
@@ -1,5 +0,0 @@
1
- @keyframes spin-around
2
- from
3
- transform: rotate(0deg)
4
- to
5
- transform: rotate(359deg)
@@ -1,174 +0,0 @@
1
- //
2
- // HTML5 Reset :: style.css
3
- // ----------------------------------------------------------
4
- // We have learned much from/been inspired by/taken code where offered from:
5
- //
6
- // Eric Meyer :: http://meyerweb.com
7
- // HTML5 Doctor :: http://html5doctor.com
8
- // and the HTML5 Boilerplate :: http://html5boilerplate.com
9
- //
10
- //-------------------------------------------------------------------------------
11
-
12
- // Let's default this puppy out
13
-
14
- html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary
15
- margin: 0
16
- padding: 0
17
- border: 0
18
- font-size: 100%
19
- font-weight: normal
20
- vertical-align: baseline
21
- background: transparent
22
-
23
- article, aside, figure, footer, header, nav, section, details, summary
24
- display: block
25
-
26
- // Handle box-sizing while better addressing child elements:
27
- // http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
28
- html
29
- box-sizing: border-box
30
-
31
- *,
32
- *:before,
33
- *:after
34
- box-sizing: inherit
35
-
36
- // consider resetting the default cursor: https://gist.github.com/murtaugh/5247154
37
-
38
- // Responsive images and other embedded objects
39
- img,
40
- object,
41
- embed
42
- max-width: 100%
43
-
44
- //
45
- // Note: keeping IMG here will cause problems if you're using foreground images as sprites.
46
- // In fact, it *will* cause problems with Google Maps' controls at small size.
47
- // If this is the case for you, try uncommenting the following:
48
- //
49
- //#map img {
50
- // max-width: none;
51
- //}
52
-
53
- // force a vertical scrollbar to prevent a jumpy page
54
- html
55
- overflow-y: scroll
56
-
57
- // we use a lot of ULs that aren't bulleted.
58
- // don't forget to restore the bullets within content.
59
- ul
60
- list-style: none
61
-
62
- blockquote, q
63
- quotes: none
64
-
65
- blockquote:before,
66
- blockquote:after,
67
- q:before,
68
- q:after
69
- content: ''
70
- content: none
71
-
72
- a
73
- margin: 0
74
- padding: 0
75
- font-size: 100%
76
- vertical-align: baseline
77
- background: transparent
78
-
79
- del
80
- text-decoration: line-through
81
-
82
- abbr[title], dfn[title]
83
- border-bottom: 1px dotted #000
84
- cursor: help
85
-
86
- // tables still need cellspacing="0" in the markup
87
- table
88
- border-collapse: collapse
89
- border-spacing: 0
90
-
91
- th
92
- font-weight: bold
93
- vertical-align: bottom
94
-
95
- td
96
- font-weight: normal
97
- vertical-align: top
98
-
99
- hr
100
- display: block
101
- height: 1px
102
- border: 0
103
- border-top: 1px solid #ccc
104
- margin: 1em 0
105
- padding: 0
106
-
107
- input, select
108
- vertical-align: middle
109
-
110
- pre
111
- white-space: pre
112
- // CSS2
113
- white-space: pre-wrap
114
- // CSS 2.1
115
- white-space: pre-line
116
- // CSS 3 (and 2.1 as well, actually)
117
- word-wrap: break-word
118
- // IE
119
-
120
- input[type="radio"]
121
- vertical-align: text-bottom
122
-
123
- input[type="checkbox"]
124
- vertical-align: bottom
125
-
126
- select, input, textarea
127
- font: 99% sans-serif
128
-
129
- table
130
- font-size: inherit
131
- font: 100%
132
-
133
- small
134
- font-size: 85%
135
-
136
- strong
137
- font-weight: bold
138
-
139
- td, td img
140
- vertical-align: top
141
-
142
- // Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930
143
- sub, sup
144
- font-size: 75%
145
- line-height: 0
146
- position: relative
147
-
148
- sup
149
- top: -0.5em
150
-
151
- sub
152
- bottom: -0.25em
153
-
154
- // standardize any monospaced elements
155
- pre, code, kbd, samp
156
- font-family: monospace, sans-serif
157
-
158
- // hand cursor on clickable elements
159
- label,
160
- input[type=button],
161
- input[type=submit],
162
- input[type=file],
163
- button
164
- cursor: pointer
165
-
166
- // Webkit browsers add a 2px margin outside the chrome of form elements
167
- button, input, select, textarea
168
- margin: 0
169
-
170
- // make buttons play nice in IE
171
- button,
172
- input[type=button]
173
- width: auto
174
- overflow: visible
@@ -1,8 +0,0 @@
1
- @charset "utf-8"
2
-
3
- @import "reset"
4
- @import "functions"
5
- @import "mixins"
6
- @import "animations"
7
- @import "controls"
8
- @import "variables"