middleman-oulu 0.5.30 → 0.5.31

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: fabe47017e160956a17a5c8dcbdb360f11ae1d7c
4
- data.tar.gz: 03fe1edd4e4bc6554192d97515bd16129b079f45
3
+ metadata.gz: 6e4a70ac63a5e8b74b626a9aa56c8f5f2c30af40
4
+ data.tar.gz: 1ceb2eef2873107e9f940faa4dfcfd0584d9c5db
5
5
  SHA512:
6
- metadata.gz: 8ba2f2ff88c89d6f56001a658cae0bf174e993ab62865548e7085936e2ea854684302b8c0484b381524212b5f0a7aa32dbb7db9b803a441fc271fbcfb77f0d8f
7
- data.tar.gz: 0ca5ec3807bc677e805e929b98e83a4f5b5c074affc0f11bc5d471900a47f2362e9575c35a0c3b8e65379c2afdb41d037a47359a0ebe7760649605a92a8c63ef
6
+ metadata.gz: 9e1f8a47df2f6bb711c83ba01ab1f05ef43ea2bd01079e5b3a30408b17c4feef01a7d2bf3012d8f0687543eb8cd929c8bd79392c911918f39e9700001918780f
7
+ data.tar.gz: 1b5eaee7d3488869ee5845c1803a4193a8ffc370dc83cd7b5d3c8a414fc8bf1a7f920a3570b6b5aca1816cc1e39f675ce1931269e65489d822ae755fd5127967
@@ -9,8 +9,8 @@ html
9
9
  // タップ時のハイライトカラー
10
10
  +experimental(tap-highlight-color, rgba(0, 0, 0, 0))
11
11
  // input以外はテキスト、画像の選択不可に
12
- *:not(input)
13
- +experimental(user-select, none)
12
+ // *:not(input)
13
+ // +experimental(user-select, none)
14
14
  // リンクの長時間タップでリンク内容をポップアップで表示させない場合
15
15
  +experimental(touch-callout, none)
16
16
 
@@ -23,6 +23,7 @@ textarea
23
23
  background-color: transparent
24
24
  outline: none
25
25
  +basic-font
26
+ -webkit-appearance: button
26
27
 
27
28
  img
28
29
  vertical-align: bottom
@@ -3,20 +3,19 @@
3
3
  =list($margins: null, $list-style: null, $icon-position: null)
4
4
  +rem('margin-left', optional_nth($margins, 1))
5
5
  +rem('margin-bottom', optional_nth($margins, 2))
6
- @if nth($list-style, 1) == "fa"
7
- @for $i from 1 through length($list-style)
8
- @if list_style_type(nth($list-style, $i))
9
- list-style-type: nth($list-style, $i)
10
- @else if list_style_position(nth($list-style, $i))
11
- list-style-position: nth($list-style, $i)
12
- @else if nth($list-style, $i) == "fa"
13
- list-style-type: none
14
- >li
15
- +relative
16
- display: block
17
- +rem('padding-left', optional_nth($icon-position, 1) + optional_nth($icon-position, 3))
18
- &:before
19
- +fa
20
- +text-block(optional_nth($icon-position, 1) optional_nth($icon-position, 1))
21
- content: '#{optional_nth($list-style, $i + 1)}'
22
- +absolute(left 0, top optional_nth($icon-position, 2))
6
+ @for $i from 1 through length($list-style)
7
+ @if nth($list-style, $i) == "fa"
8
+ list-style-type: none
9
+ >li
10
+ +relative
11
+ display: block
12
+ +rem('padding-left', optional_nth($icon-position, 1) + optional_nth($icon-position, 3))
13
+ &:before
14
+ +fa
15
+ +text-block(optional_nth($icon-position, 1) optional_nth($icon-position, 1))
16
+ content: '#{optional_nth($list-style, $i + 1)}'
17
+ +absolute(left 0, top optional_nth($icon-position, 2))
18
+ @else if list_style_type(nth($list-style, $i))
19
+ list-style-type: nth($list-style, $i)
20
+ @else if list_style_position(nth($list-style, $i))
21
+ list-style-position: nth($list-style, $i)
@@ -19,3 +19,25 @@
19
19
  =letter-spacing-center($space-width: null)
20
20
  +rem('letter-spacing', $space-width)
21
21
  +rem('text-indent', $space-width)
22
+
23
+ // brをアクティブにするサイズを設定
24
+ =br($active-sizes)
25
+ br
26
+ display: none
27
+ @if ($active-sizes)
28
+ @for $i from 1 through length($active-sizes)
29
+ @if nth($value1, $i) == xs
30
+ +screen-xs
31
+ display: block
32
+ @else if nth($value1, $i) == sm
33
+ +screen-sm
34
+ display: block
35
+ @else if nth($value1, $i) == md
36
+ +screen-md
37
+ display: block
38
+ @else if nth($value1, $i) == lg
39
+ +screen-md
40
+ display: block
41
+ @else if nth($value1, $i) == xl
42
+ +screen-md
43
+ display: block
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  module Oulu
3
- VERSION = "0.5.30"
3
+ VERSION = "0.5.31"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-oulu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.30
4
+ version: 0.5.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - machida
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-16 00:00:00.000000000 Z
11
+ date: 2015-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -244,7 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
244
244
  version: '0'
245
245
  requirements: []
246
246
  rubyforge_project:
247
- rubygems_version: 2.2.2
247
+ rubygems_version: 2.4.5
248
248
  signing_key:
249
249
  specification_version: 4
250
250
  summary: My assets gem for middleman.