oulu 0.12.27 → 0.12.28
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 +4 -4
- data/app/assets/stylesheets/settings/functions/_flex.sass +10 -10
- data/app/assets/stylesheets/settings/functions/_length.sass +1 -1
- data/bower.json +1 -1
- data/lib/oulu/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a356e6ac717b19b27a6cb0c76a6301b25c69da5c
|
4
|
+
data.tar.gz: acbcdd4af7d09a6f788f2246dddc9551733ec245
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66af1ec528b756843fd6d28d345bb50c9f56e6c6c0e57341623a30b3f24b7a885cdf305cd75580b6854f83dd5cad778e39bf2000ac0a7c7cfcb2e72b7c50471c
|
7
|
+
data.tar.gz: d18f2bace99f63522f6f6e6e2bf5857eead50708d6fd97fc881392e0f14c809eb1a9057e3046579f9f9e824e09923a2b473a799830d70ff10435779372462a47
|
@@ -41,15 +41,15 @@
|
|
41
41
|
@return null
|
42
42
|
|
43
43
|
@function flex($values...)
|
44
|
-
@if length($
|
44
|
+
@if length($values) > 3
|
45
45
|
@return null
|
46
46
|
@else
|
47
|
-
@if flex-grow(nth($
|
48
|
-
@if length($
|
49
|
-
@if flex-shrink(nth($
|
47
|
+
@if flex-grow(nth($values, 1))
|
48
|
+
@if length($values) == 3
|
49
|
+
@if flex-shrink(nth($values, 2)) and flex-flex-basis(nth($values, 3))
|
50
50
|
@return true
|
51
|
-
@else if length($
|
52
|
-
@if flex-shrink(nth($
|
51
|
+
@else if length($values) == 2
|
52
|
+
@if flex-shrink(nth($values, 2))
|
53
53
|
@return true
|
54
54
|
@else
|
55
55
|
@return true
|
@@ -57,12 +57,12 @@
|
|
57
57
|
@return null
|
58
58
|
|
59
59
|
@function flex-flow($values...)
|
60
|
-
@if length($
|
60
|
+
@if length($values) > 2
|
61
61
|
@return null
|
62
62
|
@else
|
63
|
-
@if flex-direction(nth($
|
64
|
-
@if length($
|
65
|
-
@if flex-wrap(nth($
|
63
|
+
@if flex-direction(nth($values, 1))
|
64
|
+
@if length($values) == 2
|
65
|
+
@if flex-wrap(nth($values, 2))
|
66
66
|
@return true
|
67
67
|
@else
|
68
68
|
@return true
|
data/bower.json
CHANGED
data/lib/oulu/version.rb
CHANGED
data/package.json
CHANGED