bulma-rails 1.0.4 → 1.0.4.1
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5ed7d9ad1ff23c1d6bff003f4cf03bf609399a85917465649772a8fe41b5bc7d
|
|
4
|
+
data.tar.gz: 596537a970bcdc8de2de72a4fcedf0588d5ec7006f265e14f1477d1c518fbd54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5751ea87e4a1582c794b0ee67e556b9109d8d98da3aaed291e901ad5302dc36294951353b7959613caf5ef3512c3ac403d43545e758c883819713c4a47acfd30
|
|
7
|
+
data.tar.gz: 4d720b46b4190c91aa283d8d1f85398c3f27dbcaf5e51b376c861032fbc387d54f579789dec2c3c4fa8c8d8ce919d758dbee21d9250fd2f76acc63a153783925
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
@each $size in dv.$sizes {
|
|
9
9
|
$i: list.index(dv.$sizes, $size);
|
|
10
10
|
|
|
11
|
-
.#{iv.$class-prefix}#{iv.$helpers-prefix}size-#{$i}#{if($target == ""
|
|
11
|
+
.#{iv.$class-prefix}#{iv.$helpers-prefix}size-#{$i}#{if(sass($target == ""): ""; else: "-" + $target)} {
|
|
12
12
|
font-size: $size !important;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -286,12 +286,12 @@
|
|
|
286
286
|
"9": 9,
|
|
287
287
|
);
|
|
288
288
|
|
|
289
|
-
@for $i from if($minus
|
|
289
|
+
@for $i from if(sass($minus): 2; else: 1) through string.length($value) {
|
|
290
290
|
$character: string.slice($value, $i, $i);
|
|
291
291
|
|
|
292
292
|
@if not(list.index(map.keys($numbers), $character) or $character == ".") {
|
|
293
293
|
@return to-length(
|
|
294
|
-
if($minus
|
|
294
|
+
if(sass($minus): -$result; else: $result)
|
|
295
295
|
string.slice($value, $i)
|
|
296
296
|
);
|
|
297
297
|
}
|
|
@@ -306,5 +306,5 @@
|
|
|
306
306
|
}
|
|
307
307
|
}
|
|
308
308
|
|
|
309
|
-
@return if($minus
|
|
309
|
+
@return if(sass($minus): -$result; else: $result);
|
|
310
310
|
}
|
|
@@ -409,8 +409,8 @@
|
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
@mixin ltr-property($property, $spacing, $right: true) {
|
|
412
|
-
$normal: if($right
|
|
413
|
-
$opposite: if($right
|
|
412
|
+
$normal: if(sass($right): "right"; else: "left");
|
|
413
|
+
$opposite: if(sass($right): "left"; else: "right");
|
|
414
414
|
|
|
415
415
|
@if iv.$rtl {
|
|
416
416
|
#{$property}-#{$opposite}: $spacing;
|
|
@@ -420,8 +420,8 @@
|
|
|
420
420
|
}
|
|
421
421
|
|
|
422
422
|
@mixin ltr-position($spacing, $right: true) {
|
|
423
|
-
$normal: if($right
|
|
424
|
-
$opposite: if($right
|
|
423
|
+
$normal: if(sass($right): "right"; else: "left");
|
|
424
|
+
$opposite: if(sass($right): "left"; else: "right");
|
|
425
425
|
|
|
426
426
|
@if iv.$rtl {
|
|
427
427
|
#{$opposite}: $spacing;
|
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: 1.0.4
|
|
4
|
+
version: 1.0.4.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: 2025-
|
|
11
|
+
date: 2025-12-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dartsass-rails
|