oulu-rails 0.5.30 → 0.5.31

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c6b3dcbd265d0bfe1ed252ded558fae49452b1fa
4
- data.tar.gz: 231533b09eaa8367cfd5650ed9e693b638830212
3
+ metadata.gz: cd0f4d8a1f1dd0b3530bc5cac6013948b1e3a856
4
+ data.tar.gz: 1624e144834ea97bb2572552792c756b6e09a0c9
5
5
  SHA512:
6
- metadata.gz: 6150f6b52754bdae15c9ed845b4065cc1e3d44adb3e32e3b4fda71f737afaf5e07e6b060c65f84954863a97f4cb8f1d938e54cd2710667fe7a2bab1b760a22f4
7
- data.tar.gz: 45b6f6134579ccbc1f3328d783298b3f4b40bd163dd3c215ca34caf49116e2318b246e7dae185abb40f7f7ba8520fe2ebdbbda33040a926ddc4e7591c00d7cd6
6
+ metadata.gz: af32f4d9be3fa6f02eb666f620e3ae95c077766ff1a4c1f914bf97f230a92c5bb4c97e0e9b67bb832d757698a703c7c5e68c8c977f489d911b3834e16ff79548
7
+ data.tar.gz: 91c5895facc04e1e177136bdf06913fb657944511e104b6046e4bf4f7108d0ec2ac74c40b8182f6a797299e8120c87d7a72a2729cee182383c5a4656436a8b9e
@@ -1,3 +1,3 @@
1
1
  module OuluRails
2
- VERSION = "0.5.30"
2
+ VERSION = "0.5.31"
3
3
  end
@@ -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
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.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: sass-rails
@@ -307,7 +307,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
307
307
  version: '0'
308
308
  requirements: []
309
309
  rubyforge_project:
310
- rubygems_version: 2.2.2
310
+ rubygems_version: 2.4.5
311
311
  signing_key:
312
312
  specification_version: 4
313
313
  summary: A mixin library for Sass.