bulma-rails 0.3.0 → 0.3.1
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 +1 -2
- data/app/assets/stylesheets/sass/base/_all.sass +0 -0
- data/app/assets/stylesheets/sass/base/generic.sass +0 -0
- data/app/assets/stylesheets/sass/base/helpers.sass +0 -0
- data/app/assets/stylesheets/sass/base/minireset.sass +0 -0
- data/app/assets/stylesheets/sass/components/_all.sass +0 -0
- data/app/assets/stylesheets/sass/components/card.sass +0 -0
- data/app/assets/stylesheets/sass/components/level.sass +0 -0
- data/app/assets/stylesheets/sass/components/media.sass +0 -0
- data/app/assets/stylesheets/sass/components/menu.sass +0 -0
- data/app/assets/stylesheets/sass/components/message.sass +0 -0
- data/app/assets/stylesheets/sass/components/modal.sass +0 -0
- data/app/assets/stylesheets/sass/components/nav.sass +0 -0
- data/app/assets/stylesheets/sass/components/pagination.sass +0 -0
- data/app/assets/stylesheets/sass/components/panel.sass +0 -0
- data/app/assets/stylesheets/sass/components/tabs.sass +0 -0
- data/app/assets/stylesheets/sass/elements/_all.sass +0 -0
- data/app/assets/stylesheets/sass/elements/box.sass +0 -0
- data/app/assets/stylesheets/sass/elements/button.sass +7 -2
- data/app/assets/stylesheets/sass/elements/content.sass +0 -0
- data/app/assets/stylesheets/sass/elements/form.sass +0 -0
- data/app/assets/stylesheets/sass/elements/icon.sass +0 -0
- data/app/assets/stylesheets/sass/elements/image.sass +0 -0
- data/app/assets/stylesheets/sass/elements/notification.sass +0 -0
- data/app/assets/stylesheets/sass/elements/other.sass +0 -0
- data/app/assets/stylesheets/sass/elements/progress.sass +0 -0
- data/app/assets/stylesheets/sass/elements/table.sass +0 -0
- data/app/assets/stylesheets/sass/elements/tag.sass +0 -0
- data/app/assets/stylesheets/sass/elements/title.sass +0 -0
- data/app/assets/stylesheets/sass/grid/_all.sass +0 -0
- data/app/assets/stylesheets/sass/grid/columns.sass +0 -0
- data/app/assets/stylesheets/sass/grid/tiles.sass +0 -0
- data/app/assets/stylesheets/sass/layout/_all.sass +0 -0
- data/app/assets/stylesheets/sass/layout/footer.sass +0 -0
- data/app/assets/stylesheets/sass/layout/hero.sass +0 -0
- data/app/assets/stylesheets/sass/layout/section.sass +0 -0
- data/app/assets/stylesheets/sass/utilities/_all.sass +0 -0
- data/app/assets/stylesheets/sass/utilities/controls.sass +1 -1
- data/app/assets/stylesheets/sass/utilities/functions.sass +0 -0
- data/app/assets/stylesheets/sass/utilities/mixins.sass +0 -0
- data/app/assets/stylesheets/sass/utilities/variables.sass +0 -0
- data/bulma-rails.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18134768c51508526e5455a5282c0ccc436fb9db
|
4
|
+
data.tar.gz: d4f285dd9e82c229cea2e1ab0cb83db2a6a5c07f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ff346b1da20ca2630c4f56d1fa884e8200caa025e8e408cfea57524e2e50f188a4e3eb0a1aaf8142bcacb0efefd1102982f25eb70e96b9c6377717e90eab24c
|
7
|
+
data.tar.gz: 4b33808f6579d2ba21127fb53170dd19658ef42d6bf8365ff3bb2ec9790adf9e61910ced4fd67a1469c6cc13626035ae440e45b342c004a0c19a0754fd870cf3
|
data/README.md
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -14,11 +14,13 @@ $button-active-border: $link-active-border !default
|
|
14
14
|
$button-shadow-inset: inset 0 1px 2px rgba($black, 0.2)
|
15
15
|
|
16
16
|
@function buttonIconSpacing($button-font-size, $icon-width)
|
17
|
+
// The button font-size value with no unit
|
18
|
+
$button-value: removeUnit($button-font-size)
|
17
19
|
// The rem height of the button
|
18
20
|
// based on a height of 2.5em
|
19
|
-
$button-height: 2.
|
21
|
+
$button-height: 2.5rem * $button-value // rem
|
20
22
|
// The rem total horizontal padding of the button
|
21
|
-
$button-horizontal-padding: 2 * 0.
|
23
|
+
$button-horizontal-padding: 2 * 0.75rem * $button-value // rem
|
22
24
|
// For the icon center to align with the button center
|
23
25
|
// the horizontal padding + the icon width must equal the button height
|
24
26
|
// $button-height = $button-horizontal-padding + $icon-width + $difference
|
@@ -162,6 +164,9 @@ $button-shadow-inset: inset 0 1px 2px rgba($black, 0.2)
|
|
162
164
|
background-color: $color
|
163
165
|
border-color: $color
|
164
166
|
color: $color-invert
|
167
|
+
&.is-loading
|
168
|
+
&:after
|
169
|
+
border-color: transparent transparent $color $color !important
|
165
170
|
&.is-inverted.is-outlined
|
166
171
|
background-color: transparent
|
167
172
|
border-color: $color-invert
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
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.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua Jansen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|