oulu-rails 0.7.3 → 0.7.4

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: e9d6129c23e834bc2c1a6ae517b2e0052d994fd3
4
- data.tar.gz: 342d5c139e0b61b7bbbb60e9f7fadaa52a77f4b6
3
+ metadata.gz: ebb174a90bdb7dc400e6a30fecaead97e059ae99
4
+ data.tar.gz: 31e1cd51305176df882f1b44d57eb9d9e29ba20a
5
5
  SHA512:
6
- metadata.gz: 0f689eb09188b967d2c7d7e8fb21cb3cc74f343844915511c95ce25c5385a1c31b64997a07387bd4971a66a233563cffcb2eafe6030f0243221602c96624379c
7
- data.tar.gz: 0ef77a4c54ff0e0399f138aa8f92199ea1fadbf583c087c122a1de58cb6b19c33c20f3c2e874232888c6a4d05acefaebc02466118b527b213c67281e81437ba2
6
+ metadata.gz: 27d77d5e2afa3c77181c98ff87659e751b862db75fe1c7805e102520e194ef94c938f754f6ad39a6a64aae57a6b41f7ec6009a079afa15af69698a859f44b237
7
+ data.tar.gz: 041c09414fbcd29d3b997f6fc6f20dfeb904daea9a91c6936e2f16339bcb8f830f1a95ec081302f98108f22210b3e35673648f2c2ab7a6f2d70e374afc239b1a
@@ -1,3 +1,3 @@
1
1
  module OuluRails
2
- VERSION = "0.7.3"
2
+ VERSION = "0.7.4"
3
3
  end
@@ -29,6 +29,7 @@
29
29
  @import settings/functions/background
30
30
  @import settings/functions/border
31
31
  @import settings/functions/animation
32
+ @import settings/functions/display
32
33
  //@import settings/functions/grid
33
34
 
34
35
  // mixins
@@ -9,20 +9,18 @@ body
9
9
  .is-serif
10
10
  +serif
11
11
 
12
- // letter-specing
13
- .is-no-letter-specing
14
- letter-spacing: 0
15
- .is-no-letter-specing-center
16
- letter-spacing: 0
17
- text-indent: 0
12
+ @for $i from 0 through 24
13
+ $value: $i/10
14
+ .is-letter-specing-#{$i}px
15
+ letter-spacing: $value
16
+ .is-letter-specing-center-#{$i}px
17
+ letter-spacing: $value
18
+ text-indent: $value
18
19
 
19
- // text-align
20
- .is-center-align
21
- text-align: center
22
- .is-right-align
23
- text-align: right
24
- .is-left-align
25
- text-align: left
26
-
27
- .is-nowrap
20
+ .is-white-space-nowrap
28
21
  white-space: nowrap
22
+
23
+ $positions: left center right
24
+ @each $position in $positions
25
+ .is-text-align-#{$position}
26
+ text-align: $position
@@ -1,7 +1,6 @@
1
1
  =button-base
2
2
  +inline-block(middle)
3
3
  cursor: pointer
4
- box-sizing: border-box
5
4
  text-align: center
6
5
  +user-select(none)
7
6
  touch-action: manipulation
@@ -26,7 +26,6 @@ $tabs-nav-current-font-color: red !default
26
26
  +rem('padding-bottom', $tabs-nav-border-width)
27
27
  +text-block($tabs-nav-font-size round($tabs-nav-font-size*2.6), center $tabs-nav-font-color)
28
28
  +padding(horizontal, $tabs-nav-font-size*1.6)
29
- box-sizing: border-box
30
29
  position: relative
31
30
  &:before
32
31
  display: block
@@ -105,9 +105,6 @@ input[type="file"]::-webkit-file-upload-button
105
105
  background: $selection-bg-color
106
106
  color: $selection-tx-color
107
107
 
108
- *
109
- box-sizing: border-box
110
-
111
108
  #{$all-text-inputs},
112
109
  textarea
113
110
  &::selection
@@ -14,7 +14,6 @@
14
14
  +fixed(left 50%, top 50%, $block-z-index)
15
15
  +rem('margin-top', $block-height / 2 * -1)
16
16
  +rem('margin-left', $block-width / 2 * -1)
17
- box-sizing: border-box
18
17
 
19
18
  =horizontal-center-block($values)
20
19
  $block-width: optional_nth($values, 1)
@@ -22,7 +21,6 @@
22
21
  +rem('width', $block-width)
23
22
  +fixed(left 50%, $block-z-index)
24
23
  +rem('margin-left', $block-width / 2 * -1)
25
- box-sizing: border-box
26
24
 
27
25
  =square-block($values)
28
26
  $square-block-size: optional_nth($values, 1)
@@ -77,10 +77,6 @@
77
77
  @media (min-width: $screen-lg-min)
78
78
  +make-grid(lg)
79
79
 
80
- .row,
81
- [class^="col-"]
82
- box-sizing: border-box
83
-
84
80
  =grid($gutter-size)
85
81
  &.row
86
82
  +margin(horizontal, $gutter-size/2 * -1)
@@ -8,7 +8,6 @@
8
8
  vertical-align: middle
9
9
  font-size: inherit
10
10
  color: inherit
11
- box-sizing: content-box
12
11
  &:active,
13
12
  &:focus
14
13
  outline: none
@@ -23,7 +23,6 @@
23
23
 
24
24
  // +table-cell(middle (12px 16px) no_wrap $white, (14px 1.8 1.4em, black bold center), (bottom, solid 1px black))
25
25
  =table-cell($value1: null, $value2: null, $value3: null)
26
- box-sizing: border-box
27
26
  @if $value1
28
27
  @for $i from 1 through length($value1)
29
28
  +table-cell-assign(nth($value1, $i))
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oulu-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.3
4
+ version: 0.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - machida
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-29 00:00:00.000000000 Z
11
+ date: 2015-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass-rails