oulu 0.11.7 → 0.11.8

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
  SHA1:
3
- metadata.gz: ca483ec675f67b89574e887ee69f1f8cbbe2c397
4
- data.tar.gz: f5defcebe27f5b921e3bd150207da707161a9911
3
+ metadata.gz: 2d82627d3402926b6b438ed874bd8a1ce27a9ed3
4
+ data.tar.gz: a7dd579fc57c54cef9df074fbc9885aed2bbcca8
5
5
  SHA512:
6
- metadata.gz: 091676748987aa1cf2deb8f7f19593798ff3a62f79ad0827d0b884b8edfa1c2fb7a29afea493ec7b07e616fe00abd66cd4a41cd13207c6b3c84e31c442eb2293
7
- data.tar.gz: 4f05edc7be0f71333b06ddda689d24293bd2eb46426e4d9c4f5975617f2ab4194f59e7349c67bafa5551a483642c55e1550ff30dcbf9e29b1a98f4df9aa8231c
6
+ metadata.gz: 0c5b1030bd5a1d76819b681074b06fbd399f512a8b915ae73abd95a3531689b425c73a4aad3413fc9dd6395d10a2b721cf9d0069b5740cead5e88c0a611a6cce
7
+ data.tar.gz: 9a9a852b4a3331f8b01463fdc2a7081594fd1c8cae31dc54a273fa297c56ec87e3f2370f6048c242e1ef6dd7127b918ed9e6206eb48c25ede63bea126f23bde6
@@ -58,6 +58,7 @@
58
58
  @import settings/mixins/background
59
59
  @import settings/mixins/line
60
60
  @import settings/mixins/image
61
+ @import settings/mixins/word-wrap
61
62
 
62
63
  // initializers
63
64
  ///////////////////
@@ -25,3 +25,4 @@
25
25
  @import settings/mixins/background
26
26
  @import settings/mixins/line
27
27
  @import settings/mixins/image
28
+ @import settings/mixins/word-wrap
@@ -2,6 +2,6 @@
2
2
  // variables
3
3
  ///////////////////
4
4
 
5
- @import settings/variables/sanitize
6
5
  @import settings/variables/default
6
+ @import settings/variables/sanitize
7
7
  @import settings/variables/modules
@@ -2,7 +2,7 @@
2
2
  $block-width: optional_nth($values, 1)
3
3
  $block-height: optional_nth($values, 2)
4
4
  $block-z-index: optional_nth($values, 3)
5
- +block-size($block-width $block-height)
5
+ +size($block-width $block-height)
6
6
  +position(fixed, left 50%, top 50%, $block-z-index)
7
7
  margin-top: $block-height / 2 * -1
8
8
  margin-left: $block-width / 2 * -1
@@ -29,7 +29,7 @@
29
29
  //
30
30
  // Common styles for small and large grid columns
31
31
 
32
- .row>[class^=col-]
32
+ .row>[class*=col-]
33
33
  position: relative
34
34
  // Prevent columns from collapsing when empty
35
35
  min-height: 1px
@@ -158,7 +158,7 @@
158
158
  // helper
159
159
  .row
160
160
  @for $i from 0 through 16
161
- $gutter-size: $i * 4
161
+ $gutter-size: $i * 1rem
162
162
  &.is-gutter-width-#{$gutter-size}#{if($gutter-size == 0, null, rem)}
163
163
  +margin(horizontal, $gutter-size / 2 * -1)
164
164
  >*
@@ -0,0 +1,10 @@
1
+ @charset "UTF-8"
2
+
3
+ =word-wrap($wrap: break-word)
4
+ overflow-wrap: $wrap
5
+ word-wrap: $wrap
6
+
7
+ @if $wrap == break-word
8
+ word-break: break-all
9
+ @else
10
+ word-break: $wrap
@@ -1,8 +1,8 @@
1
1
  $root-background-color: #FFFFFF !default
2
2
  $root-box-sizing: border-box !default
3
- $root-color: $default-text !default
3
+ $root-color: #000000 !default
4
4
  $root-cursor: default !default
5
- $root-font-family: $basic-sans-serif !default
5
+ $root-font-family: sans-serif !default
6
6
  $root-font-size: 100% !default
7
7
  $root-line-height: 1.5 !default
8
8
  $root-text-rendering: optimizeLegibility !default
@@ -12,7 +12,7 @@ $background-repeat: no-repeat !default
12
12
  $form-element-background-color: transparent !default
13
13
  $form-element-min-height: if(unitless($root-line-height), #{$root-line-height}em, if(unit($root-line-height) != "%", $root-line-height, null)) !default
14
14
  $media-element-vertical-align: middle !default
15
- $monospace-font-family: $basic-mono !default
15
+ $monospace-font-family: mono !default
16
16
  $nav-list-style: none !default
17
17
  $selection-background-color: #B3D4FC !default
18
18
  $selection-color: #ffffff !default
data/bower.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oulu",
3
- "version": "0.11.7",
3
+ "version": "0.11.8",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
data/lib/oulu/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Oulu
2
- VERSION = "0.11.7"
2
+ VERSION = "0.11.8"
3
3
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oulu",
3
- "version": "0.11.7",
3
+ "version": "0.11.8",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
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.11.7
4
+ version: 0.11.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - machida
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-09 00:00:00.000000000 Z
11
+ date: 2016-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -148,6 +148,7 @@ files:
148
148
  - app/assets/stylesheets/settings/mixins/_responsive-utilities.sass
149
149
  - app/assets/stylesheets/settings/mixins/_table.sass
150
150
  - app/assets/stylesheets/settings/mixins/_text.sass
151
+ - app/assets/stylesheets/settings/mixins/_word-wrap.sass
151
152
  - app/assets/stylesheets/settings/mixins/grid/_grid-framework.sass
152
153
  - app/assets/stylesheets/settings/mixins/grid/_grid.sass
153
154
  - app/assets/stylesheets/settings/variables/_default.sass