oulu 0.12.12 → 0.12.13
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/helpers/_typoglaphy.sass +21 -4
- data/app/assets/stylesheets/settings/variables/_sanitize.sass +1 -1
- data/bower.json +1 -1
- data/lib/oulu/version.rb +1 -1
- data/package.json +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a1d0b0004e120e5b4c39feb3571730cb29cc6cd
|
|
4
|
+
data.tar.gz: 2cd5dcb225b6274e835a6468b3b0d5318c6d9553
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 61be3ec2c20bde48b7ff956017129ce7c13509608955fb0f042ee3f234dd7f10d5d6734aacff746113c763cd7209992487e112cf37033b31a7251864997113dc
|
|
7
|
+
data.tar.gz: 076e55046f88826d418a35dcd5e4680050a940d98a09277921b12a5342378fef8668822ecaca35d86b5fb7c34b67a5a1409e3ac47cdec6cb4886385792419bae
|
|
@@ -20,7 +20,24 @@ body
|
|
|
20
20
|
.is-white-space-nowrap
|
|
21
21
|
white-space: nowrap
|
|
22
22
|
|
|
23
|
-
$
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
@for $i from 0 through 20
|
|
24
|
+
$breakpoints: xs, sm, md, lg, xl, false
|
|
25
|
+
$scopes: up, down, only
|
|
26
|
+
$positions: left center right
|
|
27
|
+
@each $breakpoint in $breakpoints
|
|
28
|
+
@each $scope in $scopes
|
|
29
|
+
@each $position in $positions
|
|
30
|
+
@if $breakpoint
|
|
31
|
+
.is-text-align-#{$position}-#{$breakpoint}-#{$scope}
|
|
32
|
+
@if $scope == up
|
|
33
|
+
+media-breakpoint-up($breakpoint)
|
|
34
|
+
text-align: $position
|
|
35
|
+
@else if $scope == down
|
|
36
|
+
+media-breakpoint-down($breakpoint)
|
|
37
|
+
text-align: $position
|
|
38
|
+
@else if $scope == only
|
|
39
|
+
+media-breakpoint-only($breakpoint)
|
|
40
|
+
text-align: $position
|
|
41
|
+
@else
|
|
42
|
+
.is-text-align-#{$position}
|
|
43
|
+
text-align: $position
|
|
@@ -15,7 +15,7 @@ $media-element-vertical-align: middle !default
|
|
|
15
15
|
$monospace-font-family: mono !default
|
|
16
16
|
$nav-list-style: none !default
|
|
17
17
|
$selection-background-color: #B3D4FC !default
|
|
18
|
-
$selection-color:
|
|
18
|
+
$selection-color: $default-text !default
|
|
19
19
|
$selection-text-shadow: none !default
|
|
20
20
|
$small-font-size: 75% !default
|
|
21
21
|
$table-border-collapse: collapse !default
|
data/bower.json
CHANGED
data/lib/oulu/version.rb
CHANGED
data/package.json
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oulu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.12.
|
|
4
|
+
version: 0.12.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- machida
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08-
|
|
11
|
+
date: 2016-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -193,4 +193,3 @@ signing_key:
|
|
|
193
193
|
specification_version: 4
|
|
194
194
|
summary: Sass mixins.
|
|
195
195
|
test_files: []
|
|
196
|
-
has_rdoc:
|